mirror of https://github.com/axmolengine/axmol.git
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
This commit is contained in:
parent
71c442b79c
commit
1ac3fdebca
|
@ -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)
|
|
|
@ -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)
|
|
|
@ -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>
|
|
@ -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>
|
|
@ -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:
|
|
|
@ -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:
|
|
|
@ -1 +0,0 @@
|
||||||
78435769b6dc52e742295817bc2ba43400432cfd
|
|
|
@ -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 ' '
|
|
||||||
|
|
||||||
|
|
|
@ -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:
|
|
|
@ -1 +0,0 @@
|
||||||
4330544731a84b2e6d0a8fe9da5f26919e09c19f
|
|
|
@ -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 ' '
|
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
ece2ba6a510b124dba424cd549570d05ad8482ed
|
|
|
@ -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
|
|
|
@ -1,8 +0,0 @@
|
||||||
################################################################################
|
|
||||||
# Automatically-generated file. Do not edit!
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
USER_OBJS :=
|
|
||||||
|
|
||||||
LIBS := -lcocos2d -lcocosdenshion
|
|
||||||
|
|
|
@ -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 \
|
|
||||||
|
|
|
@ -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:
|
|
|
@ -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:
|
|
|
@ -1 +0,0 @@
|
||||||
6860430294917685d44747b03858b35bda1066bf
|
|
|
@ -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 ' '
|
|
||||||
|
|
||||||
|
|
|
@ -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:
|
|
|
@ -1 +0,0 @@
|
||||||
78500e568b8ec72bfff2e753dd20a77408a2d9a8
|
|
|
@ -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 ' '
|
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
b2f6fa8c671555d49d1e36f4efb60f783e546b76
|
|
|
@ -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
|
|
|
@ -1,8 +0,0 @@
|
||||||
################################################################################
|
|
||||||
# Automatically-generated file. Do not edit!
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
USER_OBJS :=
|
|
||||||
|
|
||||||
LIBS := -lcocos2d -lcocosdenshion
|
|
||||||
|
|
|
@ -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 \
|
|
||||||
|
|
|
@ -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();
|
|
||||||
}
|
|
|
@ -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_
|
|
||||||
|
|
|
@ -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
|
|
||||||
}
|
|
|
@ -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__
|
|
|
@ -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();
|
|
||||||
}
|
|
|
@ -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__
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Trace]
|
|
||||||
GAME <0 or 1> Game Channel
|
|
||||||
|
|
||||||
[Assert]
|
|
||||||
GAME <0 or 1> Game Assert Channel
|
|
|
@ -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>
|
|
|
@ -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.
|
|
||||||
|
|
|
@ -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>
|
|
|
@ -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
|
|
||||||
|
|
|
@ -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
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -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
|
|
|
@ -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 *;
|
|
||||||
}
|
|
|
@ -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>
|
|
|
@ -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>
|
|
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<string name="app_name">helloworld</string>
|
|
||||||
</resources>
|
|
|
@ -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");
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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);
|
|
||||||
}
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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);
|
|
||||||
}
|
|
|
@ -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());
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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();
|
|
||||||
}
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -66,6 +66,8 @@ bool AppDelegate::initInstance() {
|
||||||
CC_BREAK_IF(! pMainWnd
|
CC_BREAK_IF(! pMainWnd
|
||||||
|| ! pMainWnd->Create("cocos2d: Hello World", 800, 480,480, 320));
|
|| ! pMainWnd->Create("cocos2d: Hello World", 800, 480,480, 320));
|
||||||
|
|
||||||
|
CCFileUtils::setResourcePath("Resource/");
|
||||||
|
|
||||||
#endif // CC_PLATFORM_LINUX
|
#endif // CC_PLATFORM_LINUX
|
||||||
bRet = true;
|
bRet = true;
|
||||||
} while (0);
|
} while (0);
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
[Trace]
|
|
||||||
GAME <0 or 1> Game Channel
|
|
||||||
|
|
||||||
[Assert]
|
|
||||||
GAME <0 or 1> Game Assert Channel
|
|
|
@ -1 +0,0 @@
|
||||||
31c0c51a38e572f396b522e3f84d8e81006ec3c3
|
|
|
@ -1 +0,0 @@
|
||||||
209e03305db36dfa8d0554c51d5ffd29412eefd2
|
|
|
@ -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.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">
|
<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/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/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/libpng.a}""/>
|
||||||
<listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libjpeg.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.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">
|
<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/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/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/libpng.a}""/>
|
||||||
<listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libjpeg.a}""/>
|
<listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/platform/third_party/linux/libraries/libjpeg.a}""/>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
335f313464b16139afb8574e68a0800445548869
|
0ffbc9f6a7b350e7027f65b7e4c6c64dd4e9d997
|
|
@ -1 +1 @@
|
||||||
34336e0eeb88a5c17356c137ea0a23afb1fa6da1
|
0f68c17cc75a926c7c3b1b2189f23894cf5b2e2d
|
|
@ -4,7 +4,7 @@
|
||||||
APP_NAME=$2
|
APP_NAME=$2
|
||||||
COCOS2DX_ROOT=$1
|
COCOS2DX_ROOT=$1
|
||||||
APP_DIR=`pwd`/$5
|
APP_DIR=`pwd`/$5
|
||||||
HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloCocos2dx
|
HELLOWORLD_ROOT=$COCOS2DX_ROOT/HelloWorld
|
||||||
NDK_ROOT=$3
|
NDK_ROOT=$3
|
||||||
PACKAGE_PATH=$4
|
PACKAGE_PATH=$4
|
||||||
|
|
||||||
|
|
|
@ -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>
|
|
@ -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>
|
|
@ -44,6 +44,11 @@
|
||||||
|
|
||||||
#define SLEEP_TICKS 16
|
#define SLEEP_TICKS 16
|
||||||
|
|
||||||
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX)
|
||||||
|
|
||||||
|
#define glOrthof glOrtho
|
||||||
|
#endif
|
||||||
|
|
||||||
//extern chipmunkDemo Test;
|
//extern chipmunkDemo Test;
|
||||||
extern chipmunkDemo LogoSmash;
|
extern chipmunkDemo LogoSmash;
|
||||||
extern chipmunkDemo Simple;
|
extern chipmunkDemo Simple;
|
||||||
|
|
|
@ -54,7 +54,7 @@ static TestScene* CreateTestScene(int nIdx)
|
||||||
pScene = new IntervalTestScene(); break;
|
pScene = new IntervalTestScene(); break;
|
||||||
case TEST_CHIPMUNK:
|
case TEST_CHIPMUNK:
|
||||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY)
|
#if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY)
|
||||||
// pScene = new ChipmunkTestScene(); break;
|
pScene = new ChipmunkTestScene(); break;
|
||||||
#else
|
#else
|
||||||
#ifdef AIRPLAYUSECHIPMUNK
|
#ifdef AIRPLAYUSECHIPMUNK
|
||||||
#if (AIRPLAYUSECHIPMUNK == 1)
|
#if (AIRPLAYUSECHIPMUNK == 1)
|
||||||
|
@ -98,7 +98,7 @@ static TestScene* CreateTestScene(int nIdx)
|
||||||
pScene = new ZwoptexTestScene(); break;
|
pScene = new ZwoptexTestScene(); break;
|
||||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY)
|
#if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY)
|
||||||
case TEST_CURL:
|
case TEST_CURL:
|
||||||
// pScene = new CurlTestScene(); break;
|
pScene = new CurlTestScene(); break;
|
||||||
case TEST_USERDEFAULT:
|
case TEST_USERDEFAULT:
|
||||||
pScene = new UserDefaultTestScene(); break;
|
pScene = new UserDefaultTestScene(); break;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
#include "PerformanceTest/PerformanceTest.h"
|
#include "PerformanceTest/PerformanceTest.h"
|
||||||
#include "ZwoptexTest/ZwoptexTest.h"
|
#include "ZwoptexTest/ZwoptexTest.h"
|
||||||
#include "CocosDenshionTest/CocosDenshionTest.h"
|
#include "CocosDenshionTest/CocosDenshionTest.h"
|
||||||
//#include "CurlTest/CurlTest.h"
|
#include "CurlTest/CurlTest.h"
|
||||||
#include "UserDefaultTest/UserDefaultTest.h"
|
#include "UserDefaultTest/UserDefaultTest.h"
|
||||||
#include "DirectorTest/DirectorTest.h"
|
#include "DirectorTest/DirectorTest.h"
|
||||||
#include "BugsTest/BugsTest.h"
|
#include "BugsTest/BugsTest.h"
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
#include "CurrentLanguageTest/CurrentLanguageTest.h"
|
#include "CurrentLanguageTest/CurrentLanguageTest.h"
|
||||||
|
|
||||||
#if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY)
|
#if (CC_TARGET_PLATFORM != CC_PLATFORM_AIRPLAY)
|
||||||
// #include "ChipmunkTest/cocos2dChipmunkDemo.h"
|
#include "ChipmunkTest/cocos2dChipmunkDemo.h"
|
||||||
#else
|
#else
|
||||||
#ifdef AIRPLAYUSECHIPMUNK
|
#ifdef AIRPLAYUSECHIPMUNK
|
||||||
#if (AIRPLAYUSECHIPMUNK == 1)
|
#if (AIRPLAYUSECHIPMUNK == 1)
|
||||||
|
|
Loading…
Reference in New Issue