mirror of https://github.com/axmolengine/axmol.git
Merge pull request #7676 from samuele3hu/v3_module
Split luabindings into serval modules and adjust project settings of test cases
This commit is contained in:
commit
7a833d66d1
|
@ -7,8 +7,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpp-tests", "..\tests\cpp-t
|
|||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libnetwork", "..\cocos\network\proj.win32\libNetwork.vcxproj", "{DF2638C0-8128-4847-867C-6EAFE3DEE7B5}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblua", "..\cocos\scripting\lua-bindings\proj.win32\liblua.vcxproj", "{DDC3E27F-004D-4DD4-9DD3-931A013D2159}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lua-tests", "..\tests\lua-tests\project\proj.win32\lua-tests.win32.vcxproj", "{4E6A7A0E-DDD8-4BAA-8B22-C964069364ED}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpp-empty-test", "..\tests\cpp-empty-test\proj.win32\cpp-empty-test.vcxproj", "{B8BF9E81-35FD-4582-BA1C-B85FA365BABB}"
|
||||
|
@ -31,6 +29,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcocosbuilder", "..\cocos
|
|||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libcocostudio", "..\cocos\editor-support\cocostudio\proj.win32\libcocostudio.vcxproj", "{B57CF53F-2E49-4031-9822-047CC0E6BDE2}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libluacocos2d", "..\cocos\scripting\lua-bindings\proj.win32\libluacocos2d.vcxproj", "{9F2D6CE6-C893-4400-B50C-6DB70CC2562F}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libluacocosdenshion", "..\cocos\scripting\lua-bindings\proj.win32\libluacocosdenshion.vcxproj", "{46A7D57A-7F25-4F52-823B-FFAC4FF3A624}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libluanetwork", "..\cocos\scripting\lua-bindings\proj.win32\libluanetwork.vcxproj", "{65E52F4B-703F-419E-AD67-926241A10042}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libluacocosbuilder", "..\cocos\scripting\lua-bindings\proj.win32\libluacocosbuilder.vcxproj", "{F8198014-F4F3-49F0-88AB-C1969A5829AF}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libluacocostudio", "..\cocos\scripting\lua-bindings\proj.win32\libluacocostudio.vcxproj", "{9640951E-C5D0-47B5-9C42-0BCADA261C50}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libluaui", "..\cocos\scripting\lua-bindings\proj.win32\libluaui.vcxproj", "{FE78EEBB-3DBB-4713-8CBF-63D742C5BD82}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libluaextension", "..\cocos\scripting\lua-bindings\proj.win32\libluaextension.vcxproj", "{7068296E-38A4-4BCA-85DB-3A09BD014847}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libluaspine", "..\cocos\scripting\lua-bindings\proj.win32\libluaspine.vcxproj", "{31EF6AB1-0D9A-4BC6-99B8-2C482EA373C4}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
|
@ -49,10 +63,6 @@ Global
|
|||
{DF2638C0-8128-4847-867C-6EAFE3DEE7B5}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DF2638C0-8128-4847-867C-6EAFE3DEE7B5}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DF2638C0-8128-4847-867C-6EAFE3DEE7B5}.Release|Win32.Build.0 = Release|Win32
|
||||
{DDC3E27F-004D-4DD4-9DD3-931A013D2159}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{DDC3E27F-004D-4DD4-9DD3-931A013D2159}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DDC3E27F-004D-4DD4-9DD3-931A013D2159}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DDC3E27F-004D-4DD4-9DD3-931A013D2159}.Release|Win32.Build.0 = Release|Win32
|
||||
{4E6A7A0E-DDD8-4BAA-8B22-C964069364ED}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{4E6A7A0E-DDD8-4BAA-8B22-C964069364ED}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{4E6A7A0E-DDD8-4BAA-8B22-C964069364ED}.Release|Win32.ActiveCfg = Release|Win32
|
||||
|
@ -97,6 +107,38 @@ Global
|
|||
{B57CF53F-2E49-4031-9822-047CC0E6BDE2}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B57CF53F-2E49-4031-9822-047CC0E6BDE2}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{B57CF53F-2E49-4031-9822-047CC0E6BDE2}.Release|Win32.Build.0 = Release|Win32
|
||||
{9F2D6CE6-C893-4400-B50C-6DB70CC2562F}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{9F2D6CE6-C893-4400-B50C-6DB70CC2562F}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{9F2D6CE6-C893-4400-B50C-6DB70CC2562F}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{9F2D6CE6-C893-4400-B50C-6DB70CC2562F}.Release|Win32.Build.0 = Release|Win32
|
||||
{46A7D57A-7F25-4F52-823B-FFAC4FF3A624}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{46A7D57A-7F25-4F52-823B-FFAC4FF3A624}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{46A7D57A-7F25-4F52-823B-FFAC4FF3A624}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{46A7D57A-7F25-4F52-823B-FFAC4FF3A624}.Release|Win32.Build.0 = Release|Win32
|
||||
{65E52F4B-703F-419E-AD67-926241A10042}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{65E52F4B-703F-419E-AD67-926241A10042}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{65E52F4B-703F-419E-AD67-926241A10042}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{65E52F4B-703F-419E-AD67-926241A10042}.Release|Win32.Build.0 = Release|Win32
|
||||
{F8198014-F4F3-49F0-88AB-C1969A5829AF}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F8198014-F4F3-49F0-88AB-C1969A5829AF}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F8198014-F4F3-49F0-88AB-C1969A5829AF}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F8198014-F4F3-49F0-88AB-C1969A5829AF}.Release|Win32.Build.0 = Release|Win32
|
||||
{9640951E-C5D0-47B5-9C42-0BCADA261C50}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{9640951E-C5D0-47B5-9C42-0BCADA261C50}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{9640951E-C5D0-47B5-9C42-0BCADA261C50}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{9640951E-C5D0-47B5-9C42-0BCADA261C50}.Release|Win32.Build.0 = Release|Win32
|
||||
{FE78EEBB-3DBB-4713-8CBF-63D742C5BD82}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{FE78EEBB-3DBB-4713-8CBF-63D742C5BD82}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{FE78EEBB-3DBB-4713-8CBF-63D742C5BD82}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{FE78EEBB-3DBB-4713-8CBF-63D742C5BD82}.Release|Win32.Build.0 = Release|Win32
|
||||
{7068296E-38A4-4BCA-85DB-3A09BD014847}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{7068296E-38A4-4BCA-85DB-3A09BD014847}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{7068296E-38A4-4BCA-85DB-3A09BD014847}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{7068296E-38A4-4BCA-85DB-3A09BD014847}.Release|Win32.Build.0 = Release|Win32
|
||||
{31EF6AB1-0D9A-4BC6-99B8-2C482EA373C4}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{31EF6AB1-0D9A-4BC6-99B8-2C482EA373C4}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{31EF6AB1-0D9A-4BC6-99B8-2C482EA373C4}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{31EF6AB1-0D9A-4BC6-99B8-2C482EA373C4}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,112 +0,0 @@
|
|||
LOCAL_PATH := $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := cocos_lua_static
|
||||
|
||||
LOCAL_MODULE_FILENAME := liblua
|
||||
|
||||
LOCAL_SRC_FILES := manual/CCLuaBridge.cpp \
|
||||
manual/CCLuaEngine.cpp \
|
||||
manual/CCLuaStack.cpp \
|
||||
manual/lua_debugger.c \
|
||||
manual/CCLuaValue.cpp \
|
||||
manual/Cocos2dxLuaLoader.cpp \
|
||||
manual/CCBProxy.cpp \
|
||||
manual/Lua_web_socket.cpp \
|
||||
manual/LuaOpengl.cpp \
|
||||
manual/LuaScriptHandlerMgr.cpp \
|
||||
manual/LuaBasicConversions.cpp \
|
||||
manual/LuaSkeletonAnimation.cpp \
|
||||
manual/lua_cocos2dx_manual.cpp \
|
||||
manual/lua_cocos2dx_extension_manual.cpp \
|
||||
manual/lua_cocos2dx_coco_studio_manual.cpp \
|
||||
manual/lua_cocos2dx_ui_manual.cpp \
|
||||
manual/lua_cocos2dx_spine_manual.cpp \
|
||||
manual/lua_cocos2dx_physics_manual.cpp \
|
||||
manual/lua_cocos2dx_experimental_manual.cpp \
|
||||
manual/lua_cocos2dx_experimental_video_manual.cpp \
|
||||
manual/lua_cocos2dx_deprecated.cpp \
|
||||
manual/lua_xml_http_request.cpp \
|
||||
manual/platform/android/CCLuaJavaBridge.cpp \
|
||||
manual/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxLuaJavaBridge.cpp \
|
||||
manual/tolua_fix.cpp \
|
||||
manual/lua_extensions.c \
|
||||
auto/lua_cocos2dx_auto.cpp \
|
||||
auto/lua_cocos2dx_extension_auto.cpp \
|
||||
auto/lua_cocos2dx_studio_auto.cpp \
|
||||
auto/lua_cocos2dx_ui_auto.cpp \
|
||||
auto/lua_cocos2dx_spine_auto.cpp \
|
||||
auto/lua_cocos2dx_physics_auto.cpp \
|
||||
auto/lua_cocos2dx_experimental_auto.cpp \
|
||||
auto/lua_cocos2dx_experimental_video_auto.cpp \
|
||||
../../../external/lua/tolua/tolua_event.c \
|
||||
../../../external/lua/tolua/tolua_is.c \
|
||||
../../../external/lua/tolua/tolua_map.c \
|
||||
../../../external/lua/tolua/tolua_push.c \
|
||||
../../../external/lua/tolua/tolua_to.c \
|
||||
../../../external/lua/luasocket/auxiliar.c \
|
||||
../../../external/lua/luasocket/buffer.c \
|
||||
../../../external/lua/luasocket/except.c \
|
||||
../../../external/lua/luasocket/inet.c \
|
||||
../../../external/lua/luasocket/io.c \
|
||||
../../../external/lua/luasocket/luasocket.c \
|
||||
../../../external/lua/luasocket/mime.c \
|
||||
../../../external/lua/luasocket/options.c \
|
||||
../../../external/lua/luasocket/select.c \
|
||||
../../../external/lua/luasocket/serial.c \
|
||||
../../../external/lua/luasocket/tcp.c \
|
||||
../../../external/lua/luasocket/timeout.c \
|
||||
../../../external/lua/luasocket/udp.c \
|
||||
../../../external/lua/luasocket/unix.c \
|
||||
../../../external/lua/luasocket/usocket.c \
|
||||
../../../external/xxtea/xxtea.cpp
|
||||
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../../external/lua/tolua \
|
||||
$(LOCAL_PATH)/../../../external/lua/luajit/include \
|
||||
$(LOCAL_PATH)/../../../external/lua \
|
||||
$(LOCAL_PATH)/../../../extensions \
|
||||
$(LOCAL_PATH)/../../editor-support/spine \
|
||||
$(LOCAL_PATH)/../../editor-support/cocosbuilder \
|
||||
$(LOCAL_PATH)/../../editor-support/cocostudio \
|
||||
$(LOCAL_PATH)/../../ui \
|
||||
$(LOCAL_PATH)/../../2d \
|
||||
$(LOCAL_PATH)/../../3d \
|
||||
$(LOCAL_PATH)/auto \
|
||||
$(LOCAL_PATH)/manual \
|
||||
$(LOCAL_PATH)/manual/platform/android \
|
||||
$(LOCAL_PATH)/manual/platform/android/jni \
|
||||
$(LOCAL_PATH)/../../../external/xxtea
|
||||
|
||||
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../../../external/lua/tolua \
|
||||
$(LOCAL_PATH)/../../../external/lua/luajit/include \
|
||||
$(LOCAL_PATH)/../external \
|
||||
$(LOCAL_PATH)/auto \
|
||||
$(LOCAL_PATH)/manual
|
||||
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := luajit_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocos_extension_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocos2dx_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += websockets_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocos_network_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocosbuilder_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocostudio_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += spine_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocosdenshion_static
|
||||
|
||||
LOCAL_CFLAGS += -Wno-psabi
|
||||
LOCAL_EXPORT_CFLAGS += -Wno-psabi
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
$(call import-module,lua/luajit/prebuilt/android)
|
||||
$(call import-module,extensions)
|
||||
$(call import-module,.)
|
||||
$(call import-module,websockets/prebuilt/android)
|
||||
$(call import-module,network)
|
||||
$(call import-module,editor-support/cocostudio)
|
||||
$(call import-module,editor-support/cocosbuilder)
|
||||
$(call import-module,editor-support/spine)
|
||||
$(call import-module,audio/android)
|
|
@ -1,9 +1,6 @@
|
|||
set(LUABINDING_SRC
|
||||
#luacocos2d
|
||||
set(LIBLUACOCOS2D_SRC
|
||||
auto/lua_cocos2dx_auto.cpp
|
||||
auto/lua_cocos2dx_extension_auto.cpp
|
||||
auto/lua_cocos2dx_studio_auto.cpp
|
||||
auto/lua_cocos2dx_ui_auto.cpp
|
||||
auto/lua_cocos2dx_spine_auto.cpp
|
||||
auto/lua_cocos2dx_physics_auto.cpp
|
||||
auto/lua_cocos2dx_experimental_auto.cpp
|
||||
manual/tolua_fix.cpp
|
||||
|
@ -12,51 +9,199 @@ set(LUABINDING_SRC
|
|||
manual/CCLuaStack.cpp
|
||||
manual/CCLuaValue.cpp
|
||||
manual/Cocos2dxLuaLoader.cpp
|
||||
manual/CCBProxy.cpp
|
||||
manual/LuaOpengl.cpp
|
||||
manual/LuaScriptHandlerMgr.cpp
|
||||
manual/LuaBasicConversions.cpp
|
||||
manual/lua_cocos2dx_manual.cpp
|
||||
manual/lua_cocos2dx_extension_manual.cpp
|
||||
manual/lua_cocos2dx_coco_studio_manual.cpp
|
||||
manual/lua_cocos2dx_ui_manual.cpp
|
||||
manual/lua_cocos2dx_spine_manual.cpp
|
||||
manual/lua_cocos2dx_physics_manual.cpp
|
||||
manual/lua_cocos2dx_deprecated.cpp
|
||||
manual/lua_xml_http_request.cpp
|
||||
manual/LuaSkeletonAnimation.cpp
|
||||
manual/lua_cocos2dx_experimental_manual.cpp
|
||||
manual/cocos2d/lua_cocos2dx_deprecated.cpp
|
||||
manual/cocos2d/lua_cocos2dx_experimental_manual.cpp
|
||||
manual/cocos2d/lua_cocos2dx_manual.cpp
|
||||
manual/cocos2d/lua_cocos2dx_physics_manual.cpp
|
||||
manual/cocos2d/LuaOpengl.cpp
|
||||
manual/cocos2d/LuaScriptHandlerMgr.cpp
|
||||
)
|
||||
|
||||
include_directories(
|
||||
auto
|
||||
manual
|
||||
../../editor-support/cocosbuilder
|
||||
../../editor-support/cocostudio
|
||||
../../editor-support/spine
|
||||
../../ui
|
||||
manual/cocos2d
|
||||
manual/extension
|
||||
manual/cocostudio
|
||||
manual/ui
|
||||
../../2d
|
||||
../../3d
|
||||
../../../extensions
|
||||
../../../external/lua/lua
|
||||
../../../external/lua/tolua
|
||||
../../../external/xxtea
|
||||
)
|
||||
|
||||
|
||||
add_library(luabinding STATIC
|
||||
${LUABINDING_SRC}
|
||||
add_library(luacocos2d STATIC
|
||||
${LIBLUACOCOS2D_SRC}
|
||||
)
|
||||
|
||||
target_link_libraries(luabinding
|
||||
target_link_libraries(luacocos2d
|
||||
tolua
|
||||
lua
|
||||
spine
|
||||
xxtea
|
||||
)
|
||||
|
||||
set_target_properties(luabinding
|
||||
set_target_properties(luacocos2d
|
||||
PROPERTIES
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
)
|
||||
|
||||
|
||||
#luacocosdenshion
|
||||
set(LIBLUACOCOSDENSHION_SRC
|
||||
auto/lua_cocos2dx_cocosdenshion_auto.cpp
|
||||
manual/cocosdenshion/lua_cocos2dx_cocosdenshion_manual.cpp
|
||||
)
|
||||
|
||||
include_directories(
|
||||
auto
|
||||
manual/cocosdenshion
|
||||
../../audio/include
|
||||
)
|
||||
|
||||
add_library(luacocosdenshion STATIC
|
||||
${LIBLUACOCOSDENSHION_SRC}
|
||||
)
|
||||
|
||||
set_target_properties(luacocosdenshion
|
||||
PROPERTIES
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
)
|
||||
|
||||
#luanetwork
|
||||
set(LIBLUANETWORK_SRC
|
||||
manual/network/lua_cocos2dx_network_manual.cpp
|
||||
manual/network/lua_xml_http_request.cpp
|
||||
)
|
||||
|
||||
include_directories(
|
||||
manual/network
|
||||
../../network
|
||||
)
|
||||
|
||||
add_library(luanetwork STATIC
|
||||
${LIBLUANETWORK_SRC}
|
||||
)
|
||||
|
||||
set_target_properties(luanetwork
|
||||
PROPERTIES
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
)
|
||||
|
||||
#luacocosbuilder
|
||||
set(LIBLUACOCOSBUILDER_SRC
|
||||
auto/lua_cocos2dx_cocosbuilder_auto.cpp
|
||||
manual/cocosbuilder/lua_cocos2dx_cocosbuilder_manual.cpp
|
||||
manual/cocosbuilder/CCBProxy.cpp
|
||||
)
|
||||
|
||||
include_directories(
|
||||
auto
|
||||
manual/cocosbuilder
|
||||
../../editor-support/cocosbuilder
|
||||
)
|
||||
|
||||
add_library(luacocosbuilder STATIC
|
||||
${LIBLUACOCOSBUILDER_SRC}
|
||||
)
|
||||
|
||||
set_target_properties(luacocosbuilder
|
||||
PROPERTIES
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
)
|
||||
|
||||
#luacocostudio
|
||||
set(LIBLUACOCOSTUDIO_SRC
|
||||
auto/lua_cocos2dx_studio_auto.cpp
|
||||
manual/cocostudio/lua_cocos2dx_coco_studio_manual.cpp
|
||||
)
|
||||
|
||||
include_directories(
|
||||
auto
|
||||
manual/cocostudio
|
||||
../../editor-support/cocostudio
|
||||
)
|
||||
|
||||
add_library(luacocostudio STATIC
|
||||
${LIBLUACOCOSTUDIO_SRC}
|
||||
)
|
||||
|
||||
set_target_properties(luacocostudio
|
||||
PROPERTIES
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
)
|
||||
|
||||
#luaspine
|
||||
set(LIBLUASPINE_SRC
|
||||
auto/lua_cocos2dx_spine_auto.cpp
|
||||
manual/spine/LuaSkeletonAnimation.cpp
|
||||
manual/spine/lua_cocos2dx_spine_manual.cpp
|
||||
)
|
||||
|
||||
include_directories(
|
||||
auto
|
||||
manual/spine
|
||||
../../editor-support/spine
|
||||
)
|
||||
|
||||
add_library(luaspine STATIC
|
||||
${LIBLUASPINE_SRC}
|
||||
)
|
||||
|
||||
set_target_properties(luaspine
|
||||
PROPERTIES
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
)
|
||||
|
||||
#luaextension
|
||||
set(LIBLUAEXTENSION_SRC
|
||||
auto/lua_cocos2dx_extension_auto.cpp
|
||||
manual/extension/lua_cocos2dx_extension_manual.cpp
|
||||
)
|
||||
|
||||
include_directories(
|
||||
auto
|
||||
manual/extension
|
||||
../../../extensions
|
||||
)
|
||||
|
||||
add_library(luaextension STATIC
|
||||
${LIBLUAEXTENSION_SRC}
|
||||
)
|
||||
|
||||
set_target_properties(luaextension
|
||||
PROPERTIES
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
)
|
||||
|
||||
#luaui
|
||||
set(LIBLUAUI_SRC
|
||||
auto/lua_cocos2dx_ui_auto.cpp
|
||||
manual/ui/lua_cocos2dx_ui_manual.cpp
|
||||
)
|
||||
|
||||
include_directories(
|
||||
auto
|
||||
manual/ui
|
||||
../../ui
|
||||
)
|
||||
|
||||
add_library(luaui STATIC
|
||||
${LIBLUAUI_SRC}
|
||||
)
|
||||
|
||||
set_target_properties(luaui
|
||||
PROPERTIES
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
)
|
||||
|
|
|
@ -76,14 +76,4 @@
|
|||
-- @field [parent=#cc] AssetsManager#AssetsManager AssetsManager preloaded module
|
||||
|
||||
|
||||
--------------------------------------------------------
|
||||
-- the cc CCBAnimationManager
|
||||
-- @field [parent=#cc] CCBAnimationManager#CCBAnimationManager CCBAnimationManager preloaded module
|
||||
|
||||
|
||||
--------------------------------------------------------
|
||||
-- the cc CCBReader
|
||||
-- @field [parent=#cc] CCBReader#CCBReader CCBReader preloaded module
|
||||
|
||||
|
||||
return nil
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -57,9 +57,9 @@ bool LuaEngine::init(void)
|
|||
{
|
||||
_stack = LuaStack::create();
|
||||
_stack->retain();
|
||||
executeScriptFile("DeprecatedEnum.lua");
|
||||
executeScriptFile("DeprecatedClass.lua");
|
||||
executeScriptFile("Deprecated.lua");
|
||||
executeScriptFile("DeprecatedCocos2dClass");
|
||||
executeScriptFile("DeprecatedCocos2dEnum");
|
||||
executeScriptFile("DeprecatedCocos2dFunc");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ extern "C" {
|
|||
#include "base/CCScriptSupport.h"
|
||||
#include "CCLuaStack.h"
|
||||
#include "CCLuaValue.h"
|
||||
#include "LuaScriptHandlerMgr.h"
|
||||
#include "cocos2d/LuaScriptHandlerMgr.h"
|
||||
|
||||
NS_CC_BEGIN
|
||||
|
||||
|
|
|
@ -31,9 +31,6 @@ extern "C" {
|
|||
#include "tolua++.h"
|
||||
#include "lualib.h"
|
||||
#include "lauxlib.h"
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_WIN32 || CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
||||
#include "lua_extensions.h"
|
||||
#endif
|
||||
}
|
||||
|
||||
#include "Cocos2dxLuaLoader.h"
|
||||
|
@ -46,37 +43,17 @@ extern "C" {
|
|||
#include "platform/android/CCLuaJavaBridge.h"
|
||||
#endif
|
||||
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
||||
#include "platform/android/CCLuaJavaBridge.h"
|
||||
#endif
|
||||
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
||||
#include "Lua_web_socket.h"
|
||||
#endif
|
||||
|
||||
#include "LuaOpengl.h"
|
||||
#include "LuaScriptHandlerMgr.h"
|
||||
#include "lua_cocos2dx_auto.hpp"
|
||||
#include "lua_cocos2dx_extension_auto.hpp"
|
||||
#include "lua_cocos2dx_manual.hpp"
|
||||
#include "LuaBasicConversions.h"
|
||||
#include "lua_cocos2dx_extension_manual.h"
|
||||
#include "lua_cocos2dx_deprecated.h"
|
||||
#include "lua_xml_http_request.h"
|
||||
#include "lua_cocos2dx_studio_auto.hpp"
|
||||
#include "lua_cocos2dx_coco_studio_manual.hpp"
|
||||
#include "lua_cocos2dx_spine_auto.hpp"
|
||||
#include "lua_cocos2dx_spine_manual.hpp"
|
||||
#include "lua_cocos2dx_physics_auto.hpp"
|
||||
#include "lua_cocos2dx_physics_manual.hpp"
|
||||
#include "lua_cocos2dx_ui_auto.hpp"
|
||||
#include "lua_cocos2dx_ui_manual.hpp"
|
||||
#include "lua_cocos2dx_experimental_auto.hpp"
|
||||
#include "lua_cocos2dx_experimental_manual.hpp"
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
||||
#include "lua_cocos2dx_experimental_video_auto.hpp"
|
||||
#include "lua_cocos2dx_experimental_video_manual.hpp"
|
||||
#endif
|
||||
|
||||
|
||||
namespace {
|
||||
int lua_print(lua_State * luastate)
|
||||
|
@ -160,23 +137,15 @@ bool LuaStack::init(void)
|
|||
{NULL, NULL}
|
||||
};
|
||||
luaL_register(_state, "_G", global_functions);
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_WIN32 || CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
||||
luaopen_lua_extensions(_state);
|
||||
#endif
|
||||
|
||||
g_luaType.clear();
|
||||
register_all_cocos2dx(_state);
|
||||
register_all_cocos2dx_extension(_state);
|
||||
register_cocos2dx_extension_CCBProxy(_state);
|
||||
tolua_opengl_open(_state);
|
||||
register_all_cocos2dx_ui(_state);
|
||||
register_all_cocos2dx_studio(_state);
|
||||
register_all_cocos2dx_manual(_state);
|
||||
register_all_cocos2dx_module_manual(_state);
|
||||
register_all_cocos2dx_extension_manual(_state);
|
||||
register_all_cocos2dx_coco_studio_manual(_state);
|
||||
register_all_cocos2dx_ui_manual(_state);
|
||||
register_all_cocos2dx_spine(_state);
|
||||
register_all_cocos2dx_spine_manual(_state);
|
||||
register_all_cocos2dx_experimental(_state);
|
||||
register_all_cocos2dx_experimental_manual(_state);
|
||||
|
||||
register_glnode_manual(_state);
|
||||
#if CC_USE_PHYSICS
|
||||
register_all_cocos2dx_physics(_state);
|
||||
|
@ -186,24 +155,10 @@ bool LuaStack::init(void)
|
|||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
||||
LuaObjcBridge::luaopen_luaoc(_state);
|
||||
#endif
|
||||
register_all_cocos2dx_experimental(_state);
|
||||
register_all_cocos2dx_experimental_manual(_state);
|
||||
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
||||
register_all_cocos2dx_experimental_video(_state);
|
||||
register_all_cocos2dx_experimental_video_manual(_state);
|
||||
#endif
|
||||
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
||||
LuaJavaBridge::luaopen_luaj(_state);
|
||||
#endif
|
||||
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
||||
tolua_web_socket_open(_state);
|
||||
register_web_socket_manual(_state);
|
||||
#endif
|
||||
|
||||
register_xml_http_request(_state);
|
||||
register_all_cocos2dx_deprecated(_state);
|
||||
register_all_cocos2dx_manual_deprecated(_state);
|
||||
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
#include "CCLuaStack.h"
|
||||
#include "CCLuaValue.h"
|
||||
#include "CCLuaEngine.h"
|
||||
#include "Lua_web_socket.h"
|
||||
#include "LuaOpengl.h"
|
||||
|
||||
using namespace cocos2d;
|
|
@ -1,5 +1,4 @@
|
|||
#include "lua_cocos2dx_experimental_manual.hpp"
|
||||
#include "UIVideoPlayer.h"
|
||||
#include "tolua_fix.h"
|
||||
#include "LuaBasicConversions.h"
|
||||
#include "CCLuaValue.h"
|
|
@ -0,0 +1,471 @@
|
|||
/****************************************************************************
|
||||
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
||||
|
||||
http://www.cocos2d-x.org
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#include "lua_cocos2dx_cocosbuilder_manual.h"
|
||||
#include "lua_cocos2dx_cocosbuilder_auto.hpp"
|
||||
#include "cocos2d.h"
|
||||
#include "tolua_fix.h"
|
||||
#include "LuaBasicConversions.h"
|
||||
#include "CCLuaEngine.h"
|
||||
#include "CCLuaValue.h"
|
||||
#include "CCBProxy.h"
|
||||
|
||||
USING_NS_CC;
|
||||
USING_NS_CC_EXT;
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_create(lua_State* tolua_S)
|
||||
{
|
||||
if (NULL == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertable(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (0 == argc)
|
||||
{
|
||||
CCBProxy* tolua_ret = (CCBProxy*)CCBProxy::create();
|
||||
int nID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int *pLuaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, nID, pLuaID, (void*)tolua_ret,"cc.CCBProxy");
|
||||
return 1;
|
||||
}
|
||||
|
||||
CCLOG("%s function of CCBProxy has wrong number of arguments: %d, was expecting %d\n", "cc.CCBProxy:create", argc, 0);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_create'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_createCCBReader(lua_State* tolua_S)
|
||||
{
|
||||
if (NULL == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBProxy* self = nullptr;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBProxy*>(tolua_tousertype(tolua_S,1,0));
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBProxy_createCCBReader'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (0 == argc)
|
||||
{
|
||||
CCBReader* tolua_ret = (CCBReader*) self->createCCBReader();
|
||||
int nID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int* pLuaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, nID, pLuaID, (void*)tolua_ret,"cc.CCBReader");
|
||||
return 1;
|
||||
}
|
||||
|
||||
CCLOG("%s function of CCBProxy has wrong number of arguments: %d, was expecting %d\n", "cc.CCBProxy:createCCBReader", argc, 0);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_createCCBReader'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_readCCBFromFile(lua_State* tolua_S)
|
||||
{
|
||||
if (NULL == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBProxy* self = nullptr;
|
||||
const char* ccbFilePath = nullptr;
|
||||
CCBReader* ccbReader = nullptr;
|
||||
bool setOwner = false;
|
||||
Node* tolua_ret = nullptr;
|
||||
int ID = 0;
|
||||
int* luaID = nullptr;
|
||||
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBProxy*>(tolua_tousertype(tolua_S,1,0));
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBProxy_readCCBFromFile'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (2 == argc || 3 == argc)
|
||||
{
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isstring(tolua_S, 2, 0, &tolua_err)||
|
||||
!tolua_isusertype(tolua_S,3,"cc.CCBReader",0,&tolua_err)||
|
||||
!tolua_isboolean(tolua_S,4,1,&tolua_err )
|
||||
)
|
||||
goto tolua_lerror;
|
||||
#endif
|
||||
ccbFilePath = ((const char*) tolua_tostring(tolua_S,2,0));
|
||||
ccbReader = ((CCBReader*) tolua_tousertype(tolua_S,3,0));
|
||||
setOwner = (bool) tolua_toboolean(tolua_S,4,-1);
|
||||
tolua_ret = (Node*) self->readCCBFromFile(ccbFilePath, ccbReader, setOwner);
|
||||
ID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
luaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, ID, luaID, (void*)tolua_ret,"cc.Node");
|
||||
return 1;
|
||||
}
|
||||
|
||||
CCLOG("%s function of CCBProxy has wrong number of arguments: %d, was expecting %d\n", "cc.CCBReader:readCCBFromFile", argc, 2);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_readCCBFromFile'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_getNodeTypeName(lua_State* tolua_S)
|
||||
{
|
||||
if (nullptr == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBProxy* self = nullptr;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBProxy*>(tolua_tousertype(tolua_S,1,0));
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBProxy_getNodeTypeName'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (1 == argc)
|
||||
{
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.Node",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
Node* node = static_cast<Node*>(tolua_tousertype(tolua_S,2,0));
|
||||
const char* tolua_ret = (const char*)self->getNodeTypeName(node);
|
||||
tolua_pushstring(tolua_S,(const char*)tolua_ret);
|
||||
return 1;
|
||||
}
|
||||
|
||||
CCLOG(" %s has wrong number of arguments: %d, was expecting %d\n", "cc.CCBProxy:getNodeTypeName", argc, 1);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_getNodeTypeName'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_setCallback(lua_State* tolua_S)
|
||||
{
|
||||
if (nullptr == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBProxy* self = nullptr;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBProxy*>(tolua_tousertype(tolua_S,1,0));
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBProxy_setCallback'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if ( argc >= 2 && argc <= 3 )
|
||||
{
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isusertype(tolua_S,2,"cc.Node",0,&tolua_err) ||
|
||||
!toluafix_isfunction(tolua_S, 3, "LUA_FUNCTION", 0, &tolua_err) ||
|
||||
!tolua_isnumber(tolua_S, 4, 1, &tolua_err)
|
||||
)
|
||||
goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
Node* node = ((Node*)tolua_tousertype(tolua_S,2,0));
|
||||
LUA_FUNCTION funID = ( toluafix_ref_function(tolua_S,3,0));
|
||||
int controlEvents = (int)tolua_tonumber(tolua_S, 4, 1);
|
||||
self->setCallback(node, funID, controlEvents);
|
||||
return 0;
|
||||
}
|
||||
|
||||
CCLOG(" %s has wrong number of arguments: %d, was expecting %d\n", "cc.CCBProxy:setCallback", argc, 2);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_setCallback'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
int register_cocos2dx_extension_CCBProxy(lua_State* tolua_S)
|
||||
{
|
||||
tolua_module(tolua_S,"cc",0);
|
||||
tolua_beginmodule(tolua_S,"cc");
|
||||
tolua_usertype(tolua_S,"cc.CCBProxy");
|
||||
tolua_cclass(tolua_S,"CCBProxy","cc.CCBProxy","cc.Layer",NULL);
|
||||
tolua_beginmodule(tolua_S,"CCBProxy");
|
||||
tolua_function(tolua_S, "create", tolua_cocos2d_CCBProxy_create);
|
||||
tolua_function(tolua_S, "createCCBReader", tolua_cocos2d_CCBProxy_createCCBReader);
|
||||
tolua_function(tolua_S, "readCCBFromFile", tolua_cocos2d_CCBProxy_readCCBFromFile);
|
||||
tolua_function(tolua_S, "getNodeTypeName", tolua_cocos2d_CCBProxy_getNodeTypeName);
|
||||
tolua_function(tolua_S, "setCallback", tolua_cocos2d_CCBProxy_setCallback);
|
||||
tolua_endmodule(tolua_S);
|
||||
tolua_endmodule(tolua_S);
|
||||
|
||||
std::string typeName = typeid(CCBProxy).name();
|
||||
g_luaType[typeName] = "cc.CCBProxy";
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int tolua_cocos2d_CCBReader_load(lua_State* tolua_S)
|
||||
{
|
||||
if (nullptr == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBReader* self = nullptr;
|
||||
bool ok = true;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBReader",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBReader*>(tolua_tousertype(tolua_S,1,0));
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBReader_load'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (argc >= 1 && argc <= 3)
|
||||
{
|
||||
const char* fileName = nullptr;
|
||||
std::string fileName_tmp = "";
|
||||
ok &= luaval_to_std_string(tolua_S, 2, &fileName_tmp, "cc.CCBReader:load");
|
||||
fileName = fileName_tmp.c_str();
|
||||
if (!ok)
|
||||
return 0;
|
||||
|
||||
if (1 == argc)
|
||||
{
|
||||
Node* tolua_ret = (Node*) self->readNodeGraphFromFile(fileName);
|
||||
int ID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int* luaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, ID, luaID, (void*)tolua_ret,"cc.Node");
|
||||
return 1;
|
||||
}
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isusertype(tolua_S, 3, "cc.Ref", 0, &tolua_err))
|
||||
goto tolua_lerror;
|
||||
#endif
|
||||
Ref* owner = static_cast<Ref*>(tolua_tousertype(tolua_S, 3, 0));
|
||||
//In lua owner always define in lua script by table, so owner is always nullptr
|
||||
if (2 == argc)
|
||||
{
|
||||
Node* tolua_ret = (Node*) self->readNodeGraphFromFile(fileName,owner);
|
||||
int ID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int* luaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, ID, luaID, (void*)tolua_ret,"cc.Node");
|
||||
return 1;
|
||||
}
|
||||
|
||||
Size size;
|
||||
ok &= luaval_to_size(tolua_S, 4, &size, "cc.CCBReader:load");
|
||||
if (!ok)
|
||||
return 0;
|
||||
|
||||
Node* tolua_ret = (Node*) self->readNodeGraphFromFile(fileName,owner,size);
|
||||
int ID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int* luaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, ID, luaID, (void*)tolua_ret,"cc.Node");
|
||||
return 1;
|
||||
|
||||
}
|
||||
|
||||
CCLOG("%s has wrong number of arguments: %d, was expecting %d\n", "cc.CCBReader:load",argc, 1);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBReader_load'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static void extendCCBReader(lua_State* tolua_S)
|
||||
{
|
||||
lua_pushstring(tolua_S, "cc.CCBReader");
|
||||
lua_rawget(tolua_S, LUA_REGISTRYINDEX);
|
||||
if (lua_istable(tolua_S,-1))
|
||||
{
|
||||
lua_pushstring(tolua_S,"load");
|
||||
lua_pushcfunction(tolua_S,tolua_cocos2d_CCBReader_load );
|
||||
lua_rawset(tolua_S,-3);
|
||||
}
|
||||
lua_pop(tolua_S, 1);
|
||||
}
|
||||
|
||||
|
||||
static int tolua_cocos2d_CCBAnimationManager_setCallFuncForLuaCallbackNamed(lua_State* tolua_S)
|
||||
{
|
||||
if (nullptr == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBAnimationManager* self = nullptr;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBAnimationManager",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBAnimationManager*>(tolua_tousertype(tolua_S,1,0));
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBAnimationManager_setCallFuncForLuaCallbackNamed'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (2 == argc)
|
||||
{
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isusertype(tolua_S,2, "cc.CallFunc", 0, &tolua_err) ||
|
||||
!tolua_isstring(tolua_S, 3, 0, &tolua_err) )
|
||||
goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
CallFunc* pCallFunc = static_cast<CallFunc*>(tolua_tousertype(tolua_S,2,0));
|
||||
const char* keyframeCallback = ((const char*) tolua_tostring(tolua_S,3,0));
|
||||
std::string strKey = "";
|
||||
if (NULL != keyframeCallback) {
|
||||
strKey = keyframeCallback;
|
||||
}
|
||||
self->setCallFunc(pCallFunc, strKey);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
CCLOG("%s has wrong number of arguments: %d, was expecting %d\n", "cc.CCBAnimationManager:setCallFuncForLuaCallbackNamed",argc, 1);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBAnimationManager_setCallFuncForLuaCallbackNamed'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static void extendCCBAnimationManager(lua_State* tolua_S)
|
||||
{
|
||||
lua_pushstring(tolua_S, "cc.CCBAnimationManager");
|
||||
lua_rawget(tolua_S, LUA_REGISTRYINDEX);
|
||||
if (lua_istable(tolua_S,-1))
|
||||
{
|
||||
lua_pushstring(tolua_S,"setCallFuncForLuaCallbackNamed");
|
||||
lua_pushcfunction(tolua_S,tolua_cocos2d_CCBAnimationManager_setCallFuncForLuaCallbackNamed );
|
||||
lua_rawset(tolua_S,-3);
|
||||
}
|
||||
lua_pop(tolua_S, 1);
|
||||
}
|
||||
|
||||
int register_all_cocos2dx_cocosbuilder_manual(lua_State* tolua_S)
|
||||
{
|
||||
register_cocos2dx_extension_CCBProxy(tolua_S);
|
||||
extendCCBReader(tolua_S);
|
||||
extendCCBAnimationManager(tolua_S);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int register_cocosbuilder_module(lua_State* tolua_S)
|
||||
{
|
||||
lua_getglobal(tolua_S, "_G");
|
||||
if (lua_istable(tolua_S,-1))//stack:...,_G,
|
||||
{
|
||||
register_all_cocos2dx_cocosbuilder(tolua_S);
|
||||
register_all_cocos2dx_cocosbuilder_manual(tolua_S);
|
||||
}
|
||||
lua_pop(tolua_S, 1);
|
||||
|
||||
LuaEngine::getInstance()->executeScriptFile("DeprecatedCocosBuilderClass");
|
||||
return 1;
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
/****************************************************************************
|
||||
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
||||
|
||||
http://www.cocos2d-x.org
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#ifndef COCOS_SCRIPTING_LUA_BINDINGS_MANUAL_LUA_COCOS2DX_COCOSBUILDER_H
|
||||
#define COCOS_SCRIPTING_LUA_BINDINGS_MANUAL_LUA_COCOS2DX_COCOSBUILDER_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#include "tolua++.h"
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
TOLUA_API int register_all_cocos2dx_cocosbuilder_manual(lua_State* tolua_S);
|
||||
TOLUA_API int register_cocosbuilder_module(lua_State* tolua_S);
|
||||
|
||||
#endif // #ifndef COCOS_SCRIPTING_LUA_BINDINGS_MANUAL_LUA_COCOS2DX_COCOSBUILDER_H
|
|
@ -0,0 +1,40 @@
|
|||
/****************************************************************************
|
||||
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
||||
|
||||
http://www.cocos2d-x.org
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#include "lua_cocos2dx_cocosdenshion_manual.h"
|
||||
#include "lua_cocos2dx_cocosdenshion_auto.hpp"
|
||||
#include "CCLuaEngine.h"
|
||||
|
||||
int register_cocosdenshion_module(lua_State* L)
|
||||
{
|
||||
lua_getglobal(L, "_G");
|
||||
if (lua_istable(L,-1))//stack:...,_G,
|
||||
{
|
||||
register_all_cocos2dx_cocosdenshion(L);
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
|
||||
cocos2d::LuaEngine::getInstance()->executeScriptFile("DeprecatedCocosDenshionClass");
|
||||
cocos2d::LuaEngine::getInstance()->executeScriptFile("DeprecatedCocosDenshionFunc");
|
||||
return 1;
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
/****************************************************************************
|
||||
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
||||
|
||||
http://www.cocos2d-x.org
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#ifndef COCOS_SCRIPTING_LUA_BINDINGS_MANUAL_COCOSDENSHION_LUA_COCOS2DX_COCOSDENSHION_MANUAL_H__
|
||||
#define COCOS_SCRIPTING_LUA_BINDINGS_MANUAL_COCOSDENSHION_LUA_COCOS2DX_COCOSDENSHION_MANUAL_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#include "tolua++.h"
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
TOLUA_API int register_cocosdenshion_module(lua_State* L);
|
||||
|
||||
|
||||
#endif // #ifndef COCOS_SCRIPTING_LUA_BINDINGS_MANUAL_COCOSDENSHION_LUA_COCOS2DX_COCOSDENSHION_MANUAL_H__
|
|
@ -22,6 +22,7 @@
|
|||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#include "lua_cocos2dx_coco_studio_manual.hpp"
|
||||
#include "lua_cocos2dx_studio_auto.hpp"
|
||||
#include "cocos2d.h"
|
||||
#include "tolua_fix.h"
|
||||
#include "LuaBasicConversions.h"
|
||||
|
@ -567,3 +568,18 @@ int register_all_cocos2dx_coco_studio_manual(lua_State* L)
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int register_cocostudio_module(lua_State* L)
|
||||
{
|
||||
lua_getglobal(L, "_G");
|
||||
if (lua_istable(L,-1))//stack:...,_G,
|
||||
{
|
||||
register_all_cocos2dx_studio(L);
|
||||
register_all_cocos2dx_coco_studio_manual(L);
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
|
||||
LuaEngine::getInstance()->executeScriptFile("DeprecatedCocoStudioClass");
|
||||
LuaEngine::getInstance()->executeScriptFile("DeprecatedCocoStudioFunc");
|
||||
return 1;
|
||||
}
|
|
@ -35,7 +35,8 @@ extern "C" {
|
|||
#include "base/CCRef.h"
|
||||
#include <string>
|
||||
|
||||
TOLUA_API int register_all_cocos2dx_coco_studio_manual(lua_State* L);
|
||||
TOLUA_API int register_all_cocos2dx_coco_studio_manual(lua_State* L);
|
||||
TOLUA_API int register_cocostudio_module(lua_State* L);
|
||||
|
||||
struct LuaArmatureWrapperEventData
|
||||
{
|
|
@ -28,7 +28,7 @@
|
|||
#include "cocos2d.h"
|
||||
#include "tolua_fix.h"
|
||||
#include "LuaBasicConversions.h"
|
||||
#include "LuaScriptHandlerMgr.h"
|
||||
#include "cocos2d/LuaScriptHandlerMgr.h"
|
||||
#include "CCLuaValue.h"
|
||||
#include "CCLuaEngine.h"
|
||||
#include "CCGameController.h"
|
|
@ -22,17 +22,17 @@
|
|||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#include "lua_cocos2dx_extension_manual.h"
|
||||
#include "lua_cocos2dx_extension_auto.hpp"
|
||||
#include "cocos2d.h"
|
||||
#include "tolua_fix.h"
|
||||
#include "LuaBasicConversions.h"
|
||||
#include "CCLuaValue.h"
|
||||
#include "cocos-ext.h"
|
||||
#include "CCBProxy.h"
|
||||
#include "cocostudio/CocoStudio.h"
|
||||
#include "CCLuaEngine.h"
|
||||
#include "LuaScriptHandlerMgr.h"
|
||||
|
||||
USING_NS_CC;
|
||||
USING_NS_CC_EXT;
|
||||
using namespace cocostudio;
|
||||
|
||||
class LuaScrollViewDelegate:public Ref, public ScrollViewDelegate
|
||||
{
|
||||
|
@ -461,420 +461,6 @@ static void extendEditBox(lua_State* tolua_S)
|
|||
lua_pop(tolua_S, 1);
|
||||
}
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_create(lua_State* tolua_S)
|
||||
{
|
||||
if (NULL == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertable(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (0 == argc)
|
||||
{
|
||||
CCBProxy* tolua_ret = (CCBProxy*)CCBProxy::create();
|
||||
int nID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int *pLuaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, nID, pLuaID, (void*)tolua_ret,"cc.CCBProxy");
|
||||
return 1;
|
||||
}
|
||||
|
||||
CCLOG("%s function of CCBProxy has wrong number of arguments: %d, was expecting %d\n", "cc.CCBProxy:create", argc, 0);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_create'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_createCCBReader(lua_State* tolua_S)
|
||||
{
|
||||
if (NULL == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBProxy* self = nullptr;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBProxy*>(tolua_tousertype(tolua_S,1,0));
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBProxy_createCCBReader'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (0 == argc)
|
||||
{
|
||||
CCBReader* tolua_ret = (CCBReader*) self->createCCBReader();
|
||||
int nID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int* pLuaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, nID, pLuaID, (void*)tolua_ret,"cc.CCBReader");
|
||||
return 1;
|
||||
}
|
||||
|
||||
CCLOG("%s function of CCBProxy has wrong number of arguments: %d, was expecting %d\n", "cc.CCBProxy:createCCBReader", argc, 0);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_createCCBReader'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_readCCBFromFile(lua_State* tolua_S)
|
||||
{
|
||||
if (NULL == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBProxy* self = nullptr;
|
||||
const char* ccbFilePath = nullptr;
|
||||
CCBReader* ccbReader = nullptr;
|
||||
bool setOwner = false;
|
||||
Node* tolua_ret = nullptr;
|
||||
int ID = 0;
|
||||
int* luaID = nullptr;
|
||||
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBProxy*>(tolua_tousertype(tolua_S,1,0));
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBProxy_readCCBFromFile'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (2 == argc || 3 == argc)
|
||||
{
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isstring(tolua_S, 2, 0, &tolua_err)||
|
||||
!tolua_isusertype(tolua_S,3,"cc.CCBReader",0,&tolua_err)||
|
||||
!tolua_isboolean(tolua_S,4,1,&tolua_err )
|
||||
)
|
||||
goto tolua_lerror;
|
||||
#endif
|
||||
ccbFilePath = ((const char*) tolua_tostring(tolua_S,2,0));
|
||||
ccbReader = ((CCBReader*) tolua_tousertype(tolua_S,3,0));
|
||||
setOwner = (bool) tolua_toboolean(tolua_S,4,-1);
|
||||
tolua_ret = (Node*) self->readCCBFromFile(ccbFilePath, ccbReader, setOwner);
|
||||
ID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
luaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, ID, luaID, (void*)tolua_ret,"cc.Node");
|
||||
return 1;
|
||||
}
|
||||
|
||||
CCLOG("%s function of CCBProxy has wrong number of arguments: %d, was expecting %d\n", "cc.CCBReader:readCCBFromFile", argc, 2);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_readCCBFromFile'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_getNodeTypeName(lua_State* tolua_S)
|
||||
{
|
||||
if (nullptr == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBProxy* self = nullptr;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBProxy*>(tolua_tousertype(tolua_S,1,0));
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBProxy_getNodeTypeName'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (1 == argc)
|
||||
{
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.Node",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
Node* node = static_cast<Node*>(tolua_tousertype(tolua_S,2,0));
|
||||
const char* tolua_ret = (const char*)self->getNodeTypeName(node);
|
||||
tolua_pushstring(tolua_S,(const char*)tolua_ret);
|
||||
return 1;
|
||||
}
|
||||
|
||||
CCLOG(" %s has wrong number of arguments: %d, was expecting %d\n", "cc.CCBProxy:getNodeTypeName", argc, 1);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_getNodeTypeName'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static int tolua_cocos2d_CCBProxy_setCallback(lua_State* tolua_S)
|
||||
{
|
||||
if (nullptr == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBProxy* self = nullptr;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBProxy",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBProxy*>(tolua_tousertype(tolua_S,1,0));
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBProxy_setCallback'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if ( argc >= 2 && argc <= 3 )
|
||||
{
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isusertype(tolua_S,2,"cc.Node",0,&tolua_err) ||
|
||||
!toluafix_isfunction(tolua_S, 3, "LUA_FUNCTION", 0, &tolua_err) ||
|
||||
!tolua_isnumber(tolua_S, 4, 1, &tolua_err)
|
||||
)
|
||||
goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
Node* node = ((Node*)tolua_tousertype(tolua_S,2,0));
|
||||
LUA_FUNCTION funID = ( toluafix_ref_function(tolua_S,3,0));
|
||||
int controlEvents = (int)tolua_tonumber(tolua_S, 4, 1);
|
||||
self->setCallback(node, funID, controlEvents);
|
||||
return 0;
|
||||
}
|
||||
|
||||
CCLOG(" %s has wrong number of arguments: %d, was expecting %d\n", "cc.CCBProxy:setCallback", argc, 2);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBProxy_setCallback'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
int register_cocos2dx_extension_CCBProxy(lua_State* tolua_S)
|
||||
{
|
||||
tolua_module(tolua_S,"cc",0);
|
||||
tolua_beginmodule(tolua_S,"cc");
|
||||
tolua_usertype(tolua_S,"cc.CCBProxy");
|
||||
tolua_cclass(tolua_S,"CCBProxy","cc.CCBProxy","cc.Layer",NULL);
|
||||
tolua_beginmodule(tolua_S,"CCBProxy");
|
||||
tolua_function(tolua_S, "create", tolua_cocos2d_CCBProxy_create);
|
||||
tolua_function(tolua_S, "createCCBReader", tolua_cocos2d_CCBProxy_createCCBReader);
|
||||
tolua_function(tolua_S, "readCCBFromFile", tolua_cocos2d_CCBProxy_readCCBFromFile);
|
||||
tolua_function(tolua_S, "getNodeTypeName", tolua_cocos2d_CCBProxy_getNodeTypeName);
|
||||
tolua_function(tolua_S, "setCallback", tolua_cocos2d_CCBProxy_setCallback);
|
||||
tolua_endmodule(tolua_S);
|
||||
tolua_endmodule(tolua_S);
|
||||
|
||||
std::string typeName = typeid(CCBProxy).name();
|
||||
g_luaType[typeName] = "cc.CCBProxy";
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int tolua_cocos2d_CCBReader_load(lua_State* tolua_S)
|
||||
{
|
||||
if (nullptr == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBReader* self = nullptr;
|
||||
bool ok = true;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBReader",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBReader*>(tolua_tousertype(tolua_S,1,0));
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBReader_load'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (argc >= 1 && argc <= 3)
|
||||
{
|
||||
const char* fileName = nullptr;
|
||||
std::string fileName_tmp = "";
|
||||
ok &= luaval_to_std_string(tolua_S, 2, &fileName_tmp, "cc.CCBReader:load");
|
||||
fileName = fileName_tmp.c_str();
|
||||
if (!ok)
|
||||
return 0;
|
||||
|
||||
if (1 == argc)
|
||||
{
|
||||
Node* tolua_ret = (Node*) self->readNodeGraphFromFile(fileName);
|
||||
int ID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int* luaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, ID, luaID, (void*)tolua_ret,"cc.Node");
|
||||
return 1;
|
||||
}
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isusertype(tolua_S, 3, "cc.Ref", 0, &tolua_err))
|
||||
goto tolua_lerror;
|
||||
#endif
|
||||
Ref* owner = static_cast<Ref*>(tolua_tousertype(tolua_S, 3, 0));
|
||||
//In lua owner always define in lua script by table, so owner is always nullptr
|
||||
if (2 == argc)
|
||||
{
|
||||
Node* tolua_ret = (Node*) self->readNodeGraphFromFile(fileName,owner);
|
||||
int ID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int* luaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, ID, luaID, (void*)tolua_ret,"cc.Node");
|
||||
return 1;
|
||||
}
|
||||
|
||||
Size size;
|
||||
ok &= luaval_to_size(tolua_S, 4, &size, "cc.CCBReader:load");
|
||||
if (!ok)
|
||||
return 0;
|
||||
|
||||
Node* tolua_ret = (Node*) self->readNodeGraphFromFile(fileName,owner,size);
|
||||
int ID = (tolua_ret) ? (int)tolua_ret->_ID : -1;
|
||||
int* luaID = (tolua_ret) ? &tolua_ret->_luaID : NULL;
|
||||
toluafix_pushusertype_ccobject(tolua_S, ID, luaID, (void*)tolua_ret,"cc.Node");
|
||||
return 1;
|
||||
|
||||
}
|
||||
|
||||
CCLOG("%s has wrong number of arguments: %d, was expecting %d\n", "cc.CCBReader:load",argc, 1);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBReader_load'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static void extendCCBReader(lua_State* tolua_S)
|
||||
{
|
||||
lua_pushstring(tolua_S, "cc.CCBReader");
|
||||
lua_rawget(tolua_S, LUA_REGISTRYINDEX);
|
||||
if (lua_istable(tolua_S,-1))
|
||||
{
|
||||
lua_pushstring(tolua_S,"load");
|
||||
lua_pushcfunction(tolua_S,tolua_cocos2d_CCBReader_load );
|
||||
lua_rawset(tolua_S,-3);
|
||||
}
|
||||
lua_pop(tolua_S, 1);
|
||||
}
|
||||
|
||||
|
||||
static int tolua_cocos2d_CCBAnimationManager_setCallFuncForLuaCallbackNamed(lua_State* tolua_S)
|
||||
{
|
||||
if (nullptr == tolua_S)
|
||||
return 0;
|
||||
|
||||
int argc = 0;
|
||||
CCBAnimationManager* self = nullptr;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(tolua_S,1,"cc.CCBAnimationManager",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<CCBAnimationManager*>(tolua_tousertype(tolua_S,1,0));
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(tolua_S,"invalid 'self' in function 'tolua_cocos2d_CCBAnimationManager_setCallFuncForLuaCallbackNamed'\n", NULL);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(tolua_S) - 1;
|
||||
|
||||
if (2 == argc)
|
||||
{
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!tolua_isusertype(tolua_S,2, "cc.CallFunc", 0, &tolua_err) ||
|
||||
!tolua_isstring(tolua_S, 3, 0, &tolua_err) )
|
||||
goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
CallFunc* pCallFunc = static_cast<CallFunc*>(tolua_tousertype(tolua_S,2,0));
|
||||
const char* keyframeCallback = ((const char*) tolua_tostring(tolua_S,3,0));
|
||||
std::string strKey = "";
|
||||
if (NULL != keyframeCallback) {
|
||||
strKey = keyframeCallback;
|
||||
}
|
||||
self->setCallFunc(pCallFunc, strKey);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
CCLOG("%s has wrong number of arguments: %d, was expecting %d\n", "cc.CCBAnimationManager:setCallFuncForLuaCallbackNamed",argc, 1);
|
||||
return 0;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(tolua_S,"#ferror in function 'tolua_cocos2d_CCBAnimationManager_setCallFuncForLuaCallbackNamed'.",&tolua_err);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static void extendCCBAnimationManager(lua_State* tolua_S)
|
||||
{
|
||||
lua_pushstring(tolua_S, "cc.CCBAnimationManager");
|
||||
lua_rawget(tolua_S, LUA_REGISTRYINDEX);
|
||||
if (lua_istable(tolua_S,-1))
|
||||
{
|
||||
lua_pushstring(tolua_S,"setCallFuncForLuaCallbackNamed");
|
||||
lua_pushcfunction(tolua_S,tolua_cocos2d_CCBAnimationManager_setCallFuncForLuaCallbackNamed );
|
||||
lua_rawset(tolua_S,-3);
|
||||
}
|
||||
lua_pop(tolua_S, 1);
|
||||
}
|
||||
|
||||
class LuaAssetsManagerDelegateProtocol:public Ref, public AssetsManagerDelegateProtocol
|
||||
{
|
||||
public:
|
||||
|
@ -1460,10 +1046,24 @@ int register_all_cocos2dx_extension_manual(lua_State* tolua_S)
|
|||
{
|
||||
extendControl(tolua_S);
|
||||
extendEditBox(tolua_S);
|
||||
extendCCBReader(tolua_S);
|
||||
extendCCBAnimationManager(tolua_S);
|
||||
extendAssetsManager(tolua_S);
|
||||
extendScrollView(tolua_S);
|
||||
extendTableView(tolua_S);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int register_extension_module(lua_State* tolua_S)
|
||||
{
|
||||
lua_getglobal(tolua_S, "_G");
|
||||
if (lua_istable(tolua_S,-1))//stack:...,_G,
|
||||
{
|
||||
register_all_cocos2dx_extension(tolua_S);
|
||||
register_all_cocos2dx_extension_manual(tolua_S);
|
||||
}
|
||||
lua_pop(tolua_S, 1);
|
||||
|
||||
LuaEngine::getInstance()->executeScriptFile("DeprecatedExtensionClass");
|
||||
LuaEngine::getInstance()->executeScriptFile("DeprecatedExtensionEnum");
|
||||
LuaEngine::getInstance()->executeScriptFile("DeprecatedExtensionFunc");
|
||||
return 1;
|
||||
}
|
|
@ -32,10 +32,8 @@ extern "C" {
|
|||
}
|
||||
#endif
|
||||
|
||||
#include "LuaScriptHandlerMgr.h"
|
||||
|
||||
TOLUA_API int register_all_cocos2dx_extension_manual(lua_State* tolua_S);
|
||||
TOLUA_API int register_cocos2dx_extension_CCBProxy(lua_State* tolua_S);
|
||||
TOLUA_API int register_all_cocos2dx_extension_manual(lua_State* tolua_S);
|
||||
TOLUA_API int register_extension_module(lua_State* tolua_S);
|
||||
|
||||
struct LuaAssetsManagerEventData
|
||||
{
|
||||
|
@ -57,5 +55,4 @@ struct LuaTableViewEventData
|
|||
}
|
||||
};
|
||||
|
||||
|
||||
#endif // #ifndef COCOS2DX_SCRIPT_LUA_COCOS2DX_SUPPORT_LUA_COCOS2DX_EXTENSION_MANUAL_H
|
|
@ -35,7 +35,6 @@
|
|||
|
||||
using namespace cocos2d;
|
||||
|
||||
|
||||
static int SendBinaryMessageToLua(int nHandler,const unsigned char* pTable,int nLength)
|
||||
{
|
||||
if (NULL == pTable || nHandler <= 0) {
|
||||
|
@ -464,5 +463,4 @@ TOLUA_API int register_web_socket_manual(lua_State* tolua_S)
|
|||
|
||||
return 1;
|
||||
}
|
||||
|
||||
#endif//(CC_TARGET_PLATFORM == CC_PLATFORM_IOS ...
|
|
@ -0,0 +1,61 @@
|
|||
/****************************************************************************
|
||||
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
||||
|
||||
http://www.cocos2d-x.org
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#include "lua_cocos2dx_network_manual.h"
|
||||
extern "C" {
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_WIN32 || CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
||||
#include "lua_extensions.h"
|
||||
#endif
|
||||
}
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
||||
#include "Lua_web_socket.h"
|
||||
#endif
|
||||
|
||||
#include "lua_xml_http_request.h"
|
||||
#include "CCLuaEngine.h"
|
||||
|
||||
|
||||
int register_network_module(lua_State* L)
|
||||
{
|
||||
lua_getglobal(L, "_G");
|
||||
if (lua_istable(L,-1))//stack:...,_G,
|
||||
{
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_WIN32 || CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
|
||||
luaopen_lua_extensions(L);
|
||||
#endif
|
||||
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
||||
tolua_web_socket_open(L);
|
||||
register_web_socket_manual(L);
|
||||
#endif
|
||||
|
||||
register_xml_http_request(L);
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
|
||||
cocos2d::LuaEngine::getInstance()->executeScriptFile("DeprecatedNetworkClass");
|
||||
cocos2d::LuaEngine::getInstance()->executeScriptFile("DeprecatedNetworkEnum");
|
||||
cocos2d::LuaEngine::getInstance()->executeScriptFile("DeprecatedNetworkFunc");
|
||||
|
||||
return 1;
|
||||
}
|
|
@ -0,0 +1,37 @@
|
|||
/****************************************************************************
|
||||
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
||||
|
||||
http://www.cocos2d-x.org
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#ifndef __COCOS_SCRIPTING_LUA_BINDINGS_MANUAL_NETWORK_LUA_COCOS2DX_NETWORK_MANUAL_H__
|
||||
#define __COCOS_SCRIPTING_LUA_BINDINGS_MANUAL_NETWORK_LUA_COCOS2DX_NETWORK_MANUAL_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#include "tolua++.h"
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
TOLUA_API int register_network_module(lua_State* L);
|
||||
|
||||
#endif //#ifndef __COCOS_SCRIPTING_LUA_BINDINGS_MANUAL_NETWORK_LUA_COCOS2DX_NETWORK_MANUAL_H__
|
|
@ -22,6 +22,7 @@
|
|||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#include "lua_cocos2dx_spine_manual.hpp"
|
||||
#include "lua_cocos2dx_spine_auto.hpp"
|
||||
#include "cocos2d.h"
|
||||
#include "tolua_fix.h"
|
||||
#include "LuaBasicConversions.h"
|
||||
|
@ -30,6 +31,7 @@
|
|||
#include "spine.h"
|
||||
#include "spine-cocos2dx.h"
|
||||
#include "LuaSkeletonAnimation.h"
|
||||
#include "CCLuaEngine.h"
|
||||
|
||||
using namespace spine;
|
||||
|
||||
|
@ -465,3 +467,16 @@ int register_all_cocos2dx_spine_manual(lua_State* L)
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int register_spine_module(lua_State* L)
|
||||
{
|
||||
lua_getglobal(L, "_G");
|
||||
if (lua_istable(L,-1))//stack:...,_G,
|
||||
{
|
||||
register_all_cocos2dx_spine(L);
|
||||
register_all_cocos2dx_spine_manual(L);
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
|
||||
return 1;
|
||||
}
|
|
@ -32,9 +32,7 @@ extern "C" {
|
|||
}
|
||||
#endif
|
||||
|
||||
#include "base/CCRef.h"
|
||||
|
||||
TOLUA_API int register_all_cocos2dx_spine_manual(lua_State* L);
|
||||
|
||||
TOLUA_API int register_spine_module(lua_State* L);
|
||||
|
||||
#endif // #ifndef COCOS_SCRIPTING_LUA_BINDINGS_LUA_COCOS2DX_SPINE_MANUAL_H
|
|
@ -22,6 +22,11 @@
|
|||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#include "lua_cocos2dx_ui_manual.hpp"
|
||||
#include "lua_cocos2dx_ui_auto.hpp"
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
||||
#include "lua_cocos2dx_experimental_video_auto.hpp"
|
||||
#include "lua_cocos2dx_experimental_video_manual.hpp"
|
||||
#endif
|
||||
#include "cocos2d.h"
|
||||
#include "tolua_fix.h"
|
||||
#include "LuaBasicConversions.h"
|
||||
|
@ -681,3 +686,22 @@ int register_all_cocos2dx_ui_manual(lua_State* L)
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int register_ui_moudle(lua_State* L)
|
||||
{
|
||||
lua_getglobal(L, "_G");
|
||||
if (lua_istable(L,-1))//stack:...,_G,
|
||||
{
|
||||
register_all_cocos2dx_ui(L);
|
||||
register_all_cocos2dx_ui_manual(L);
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
||||
register_all_cocos2dx_experimental_video(L);
|
||||
register_all_cocos2dx_experimental_video_manual(L);
|
||||
#endif
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
|
||||
LuaEngine::getInstance()->executeScriptFile("DeprecatedUIEnum");
|
||||
LuaEngine::getInstance()->executeScriptFile("DeprecatedUIFunc");
|
||||
return 1;
|
||||
}
|
|
@ -32,7 +32,7 @@ extern "C" {
|
|||
}
|
||||
#endif
|
||||
|
||||
#include "base/CCRef.h"
|
||||
|
||||
TOLUA_API int register_all_cocos2dx_ui_manual(lua_State* L);
|
||||
TOLUA_API int register_ui_moudle(lua_State* L);
|
||||
|
||||
#endif // #ifndef COCOS_SCRIPTING_LUA_BINDINGS_LUA_COCOS2DX_GUI_MANUAL_H
|
|
@ -0,0 +1,87 @@
|
|||
#include "lua_cocos2dx_experimental_video_manual.hpp"
|
||||
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
||||
|
||||
#include "UIVideoPlayer.h"
|
||||
#include "tolua_fix.h"
|
||||
#include "LuaBasicConversions.h"
|
||||
#include "CCLuaValue.h"
|
||||
#include "CCLuaEngine.h"
|
||||
|
||||
|
||||
|
||||
static int lua_cocos2dx_experimental_video_VideoPlayer_addEventListener(lua_State* L)
|
||||
{
|
||||
|
||||
int argc = 0;
|
||||
cocos2d::experimental::ui::VideoPlayer* self = nullptr;
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_Error tolua_err;
|
||||
if (!tolua_isusertype(L,1,"ccexp.VideoPlayer",0,&tolua_err)) goto tolua_lerror;
|
||||
#endif
|
||||
|
||||
self = static_cast<cocos2d::experimental::ui::VideoPlayer*>(tolua_tousertype(L,1,0));
|
||||
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (nullptr == self) {
|
||||
tolua_error(L,"invalid 'self' in function 'lua_cocos2dx_Widget_addTouchEventListener'\n", nullptr);
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
argc = lua_gettop(L) - 1;
|
||||
|
||||
if (argc == 1)
|
||||
{
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
if (!toluafix_isfunction(L,2,"LUA_FUNCTION",0,&tolua_err))
|
||||
{
|
||||
goto tolua_lerror;
|
||||
}
|
||||
#endif
|
||||
|
||||
LUA_FUNCTION handler = ( toluafix_ref_function(L,2,0));
|
||||
|
||||
self->addEventListener([=](cocos2d::Ref* ref, cocos2d::experimental::ui::VideoPlayer::EventType eventType){
|
||||
LuaStack* stack = LuaEngine::getInstance()->getLuaStack();
|
||||
|
||||
stack->pushObject(ref, "cc.Ref");
|
||||
stack->pushInt((int)eventType);
|
||||
|
||||
stack->executeFunctionByHandler(handler, 2);
|
||||
});
|
||||
|
||||
return 0;
|
||||
}
|
||||
CCLOG("%s has wrong number of arguments: %d, was expecting %d\n ", "ccexp.VideoPlayer:addEventListener",argc, 0);
|
||||
return 0;
|
||||
#if COCOS2D_DEBUG >= 1
|
||||
tolua_lerror:
|
||||
tolua_error(L, "#ferror in function 'lua_cocos2dx_experimental_VideoPlayer_addEventListener'.", &tolua_err);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void extendVideoPlayer(lua_State* L)
|
||||
{
|
||||
lua_pushstring(L, "ccexp.VideoPlayer");
|
||||
lua_rawget(L, LUA_REGISTRYINDEX);
|
||||
if (lua_istable(L,-1))
|
||||
{
|
||||
tolua_function(L, "addEventListener", lua_cocos2dx_experimental_video_VideoPlayer_addEventListener);
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
}
|
||||
|
||||
int register_all_cocos2dx_experimental_video_manual(lua_State* L)
|
||||
{
|
||||
if (nullptr == L)
|
||||
return 0;
|
||||
|
||||
extendVideoPlayer(L);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
|
@ -0,0 +1,41 @@
|
|||
/****************************************************************************
|
||||
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
||||
|
||||
http://www.cocos2d-x.org
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
****************************************************************************/
|
||||
#include "base/ccConfig.h"
|
||||
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
||||
|
||||
#ifndef COCOS_SCRIPTING_LUA_BINDINGS_LUA_COCOS2DX_EXPERIMENTAL_VIDEO_MANUAL_H
|
||||
#define COCOS_SCRIPTING_LUA_BINDINGS_LUA_COCOS2DX_EXPERIMENTAL_VIDEO_MANUAL_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#include "tolua++.h"
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
TOLUA_API int register_all_cocos2dx_experimental_video_manual(lua_State* L);
|
||||
|
||||
#endif //#ifndef COCOS_SCRIPTING_LUA_BINDINGS_LUA_COCOS2DX_EXPERIMENTAL_VIDEO_MANUAL_H
|
||||
#endif //#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
|
@ -0,0 +1,243 @@
|
|||
LOCAL_PATH := $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := cocos2d_lua_static
|
||||
|
||||
LOCAL_MODULE_FILENAME := libluacocos2d
|
||||
|
||||
LOCAL_SRC_FILES := ../manual/CCLuaBridge.cpp \
|
||||
../manual/CCLuaEngine.cpp \
|
||||
../manual/CCLuaStack.cpp \
|
||||
../manual/lua_debugger.c \
|
||||
../manual/CCLuaValue.cpp \
|
||||
../manual/Cocos2dxLuaLoader.cpp \
|
||||
../manual/LuaBasicConversions.cpp \
|
||||
../auto/lua_cocos2dx_auto.cpp \
|
||||
../auto/lua_cocos2dx_physics_auto.cpp \
|
||||
../auto/lua_cocos2dx_experimental_auto.cpp \
|
||||
../manual/cocos2d/lua_cocos2dx_deprecated.cpp \
|
||||
../manual/cocos2d/lua_cocos2dx_experimental_manual.cpp \
|
||||
../manual/cocos2d/lua_cocos2dx_manual.cpp \
|
||||
../manual/cocos2d/lua_cocos2dx_physics_manual.cpp \
|
||||
../manual/cocos2d/LuaOpengl.cpp \
|
||||
../manual/cocos2d/LuaScriptHandlerMgr.cpp \
|
||||
../manual/platform/android/CCLuaJavaBridge.cpp \
|
||||
../manual/platform/android/jni/Java_org_cocos2dx_lib_Cocos2dxLuaJavaBridge.cpp \
|
||||
../manual/tolua_fix.cpp \
|
||||
../../../../external/lua/tolua/tolua_event.c \
|
||||
../../../../external/lua/tolua/tolua_is.c \
|
||||
../../../../external/lua/tolua/tolua_map.c \
|
||||
../../../../external/lua/tolua/tolua_push.c \
|
||||
../../../../external/lua/tolua/tolua_to.c \
|
||||
../../../../external/xxtea/xxtea.cpp
|
||||
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../../../external/lua/tolua \
|
||||
$(LOCAL_PATH)/../../../../external/lua/luajit/include \
|
||||
$(LOCAL_PATH)/../../../2d \
|
||||
$(LOCAL_PATH)/../../../3d \
|
||||
$(LOCAL_PATH)/../auto \
|
||||
$(LOCAL_PATH)/../manual \
|
||||
$(LOCAL_PATH)/../manual/extension \
|
||||
$(LOCAL_PATH)/../manual/cocostudio \
|
||||
$(LOCAL_PATH)/../manual/ui \
|
||||
$(LOCAL_PATH)/../manual/cocos2d \
|
||||
$(LOCAL_PATH)/../manual/platform/android \
|
||||
$(LOCAL_PATH)/../manual/platform/android/jni \
|
||||
$(LOCAL_PATH)/../../../../external/xxtea \
|
||||
$(LOCAL_PATH)/../../../.. \
|
||||
$(LOCAL_PATH)/../../../../extensions
|
||||
|
||||
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../../../../external/lua/tolua \
|
||||
$(LOCAL_PATH)/../../../../external/lua/luajit/include \
|
||||
$(LOCAL_PATH)/../auto \
|
||||
$(LOCAL_PATH)/../manual \
|
||||
$(LOCAL_PATH)/../manual/cocos2d
|
||||
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := luajit_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocos2dx_static
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := cocosdenshion_lua_static
|
||||
|
||||
LOCAL_MODULE_FILENAME := libluacocosdenshion
|
||||
|
||||
LOCAL_SRC_FILES := ../manual/cocosdenshion/lua_cocos2dx_cocosdenshion_manual.cpp \
|
||||
../auto/lua_cocos2dx_cocosdenshion_auto.cpp
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../auto \
|
||||
$(LOCAL_PATH)/../manual/cocosdenshion \
|
||||
$(LOCAL_PATH)/../../../audio/include \
|
||||
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../manual/cocosdenshion
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := cocosdenshion_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocos2d_lua_static
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := network_lua_static
|
||||
|
||||
LOCAL_MODULE_FILENAME := libluanetwork
|
||||
|
||||
LOCAL_SRC_FILES := ../manual/network/lua_cocos2dx_network_manual.cpp \
|
||||
../manual/network/lua_extensions.c \
|
||||
../manual/network/Lua_web_socket.cpp \
|
||||
../manual/network/lua_xml_http_request.cpp \
|
||||
../../../../external/lua/luasocket/auxiliar.c \
|
||||
../../../../external/lua/luasocket/buffer.c \
|
||||
../../../../external/lua/luasocket/except.c \
|
||||
../../../../external/lua/luasocket/inet.c \
|
||||
../../../../external/lua/luasocket/io.c \
|
||||
../../../../external/lua/luasocket/luasocket.c \
|
||||
../../../../external/lua/luasocket/mime.c \
|
||||
../../../../external/lua/luasocket/options.c \
|
||||
../../../../external/lua/luasocket/select.c \
|
||||
../../../../external/lua/luasocket/serial.c \
|
||||
../../../../external/lua/luasocket/tcp.c \
|
||||
../../../../external/lua/luasocket/timeout.c \
|
||||
../../../../external/lua/luasocket/udp.c \
|
||||
../../../../external/lua/luasocket/unix.c \
|
||||
../../../../external/lua/luasocket/usocket.c \
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../manual/network \
|
||||
$(LOCAL_PATH)/../../../../external/lua \
|
||||
$(LOCAL_PATH)/../../../network
|
||||
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../manual/network
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2d_lua_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocos_network_static
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := cocosbuilder_lua_static
|
||||
|
||||
LOCAL_MODULE_FILENAME := libluacocosbuilder
|
||||
|
||||
LOCAL_SRC_FILES := ../manual/cocosbuilder/lua_cocos2dx_cocosbuilder_manual.cpp \
|
||||
../manual/cocosbuilder/CCBProxy.cpp \
|
||||
../auto/lua_cocos2dx_cocosbuilder_auto.cpp \
|
||||
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../manual/cocosbuilder \
|
||||
$(LOCAL_PATH)/../auto \
|
||||
$(LOCAL_PATH)/../../../editor-support/cocosbuilder
|
||||
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../manual/cocosbuilder
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2d_lua_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocosbuilder_static
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
|
||||
#
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := cocostudio_lua_static
|
||||
|
||||
LOCAL_MODULE_FILENAME := libluacocostudio
|
||||
|
||||
LOCAL_SRC_FILES := ../manual/cocostudio/lua_cocos2dx_coco_studio_manual.cpp \
|
||||
../auto/lua_cocos2dx_studio_auto.cpp \
|
||||
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../manual/cocostudio \
|
||||
$(LOCAL_PATH)/../auto \
|
||||
$(LOCAL_PATH)/../../../editor-support/cocostudio
|
||||
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../manual/cocostudio
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2d_lua_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocostudio_static
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := spine_lua_static
|
||||
|
||||
LOCAL_MODULE_FILENAME := libluaspine
|
||||
|
||||
LOCAL_SRC_FILES := ../manual/spine/lua_cocos2dx_spine_manual.cpp \
|
||||
../manual/spine/LuaSkeletonAnimation.cpp \
|
||||
../auto/lua_cocos2dx_spine_auto.cpp \
|
||||
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../manual/spine \
|
||||
$(LOCAL_PATH)/../auto \
|
||||
$(LOCAL_PATH)/../../../editor-support/spine
|
||||
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../manual/spine
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2d_lua_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += spine_static
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := extension_lua_static
|
||||
|
||||
LOCAL_MODULE_FILENAME := libluaextension
|
||||
|
||||
LOCAL_SRC_FILES := ../manual/extension/lua_cocos2dx_extension_manual.cpp \
|
||||
../auto/lua_cocos2dx_extension_auto.cpp \
|
||||
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../manual/extension \
|
||||
$(LOCAL_PATH)/../auto \
|
||||
$(LOCAL_PATH)/../../../../extensions
|
||||
|
||||
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../manual/extension
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2d_lua_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocos_extension_static
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := ui_lua_static
|
||||
|
||||
LOCAL_MODULE_FILENAME := libluaui
|
||||
|
||||
LOCAL_SRC_FILES := ../manual/ui/lua_cocos2dx_experimental_video_manual.cpp \
|
||||
../manual/ui/lua_cocos2dx_ui_manual.cpp \
|
||||
../auto/lua_cocos2dx_experimental_video_auto.cpp \
|
||||
../auto/lua_cocos2dx_ui_auto.cpp
|
||||
|
||||
LOCAL_C_INCLUDES := $(LOCAL_PATH)/../manual/ui \
|
||||
$(LOCAL_PATH)/../auto \
|
||||
$(LOCAL_PATH)/../../../ui
|
||||
|
||||
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/../manual/ui
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2d_lua_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocos_ui_static
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
$(call import-module,lua/luajit/prebuilt/android)
|
||||
$(call import-module,.)
|
||||
$(call import-module,audio/android)
|
||||
$(call import-module,network)
|
||||
$(call import-module,editor-support/cocosbuilder)
|
||||
$(call import-module,editor-support/cocostudio)
|
||||
$(call import-module,editor-support/spine)
|
||||
$(call import-module,ui)
|
||||
$(call import-module,extensions)
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -1,77 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "0600"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1A6FB50417854BC200CDF010"
|
||||
BuildableName = "libluabindings Mac.a"
|
||||
BlueprintName = "luabindings Mac"
|
||||
ReferencedContainer = "container:cocos2d_lua_bindings.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
buildConfiguration = "Debug">
|
||||
<Testables>
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "NO"
|
||||
buildConfiguration = "Debug"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
allowLocationSimulation = "YES">
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1A6FB50417854BC200CDF010"
|
||||
BuildableName = "libluabindings Mac.a"
|
||||
BlueprintName = "luabindings Mac"
|
||||
ReferencedContainer = "container:cocos2d_lua_bindings.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<AdditionalOptions>
|
||||
</AdditionalOptions>
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
buildConfiguration = "Release"
|
||||
debugDocumentVersioning = "YES">
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1A6FB50417854BC200CDF010"
|
||||
BuildableName = "libluabindings Mac.a"
|
||||
BlueprintName = "luabindings Mac"
|
||||
ReferencedContainer = "container:cocos2d_lua_bindings.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
|
@ -1,77 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "0600"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1A119716178526AA00D62A44"
|
||||
BuildableName = "libluabindings iOS.a"
|
||||
BlueprintName = "luabindings iOS"
|
||||
ReferencedContainer = "container:cocos2d_lua_bindings.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
buildConfiguration = "Debug">
|
||||
<Testables>
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "NO"
|
||||
buildConfiguration = "Debug"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
allowLocationSimulation = "YES">
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1A119716178526AA00D62A44"
|
||||
BuildableName = "libluabindings iOS.a"
|
||||
BlueprintName = "luabindings iOS"
|
||||
ReferencedContainer = "container:cocos2d_lua_bindings.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<AdditionalOptions>
|
||||
</AdditionalOptions>
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
buildConfiguration = "Release"
|
||||
debugDocumentVersioning = "YES">
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "1A119716178526AA00D62A44"
|
||||
BuildableName = "libluabindings iOS.a"
|
||||
BlueprintName = "luabindings iOS"
|
||||
ReferencedContainer = "container:cocos2d_lua_bindings.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
|
@ -1,386 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="auto">
|
||||
<UniqueIdentifier>{8d269c90-26ad-4ce8-b355-d8df01d59914}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual">
|
||||
<UniqueIdentifier>{25c7b94b-a9a1-4b93-b285-93c9b620e2ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="script">
|
||||
<UniqueIdentifier>{af4b7d5f-f563-4069-ade8-c1a954e6fe5e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="luasocket">
|
||||
<UniqueIdentifier>{c36f2204-a252-47c0-b36c-b84cda218746}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="tolua">
|
||||
<UniqueIdentifier>{24fae6d6-ebb5-4da1-b0da-3f3845a9e9a9}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="luajit">
|
||||
<UniqueIdentifier>{cc863463-a948-487a-aacd-dc233c3e5200}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="xxtea">
|
||||
<UniqueIdentifier>{1fa7ff75-c142-4928-8aef-e6a2eb2b465f}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_extension_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_ui_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_physics_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_spine_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_studio_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\CCBProxy.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\CCLuaBridge.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\CCLuaEngine.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\CCLuaStack.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\CCLuaValue.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\Cocos2dxLuaLoader.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_coco_studio_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_deprecated.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_extension_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_ui_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_physics_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_spine_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_extensions.c">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\Lua_web_socket.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_xml_http_request.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\LuaBasicConversions.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\LuaOpengl.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\LuaScriptHandlerMgr.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\LuaSkeletonAnimation.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\tolua_fix.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_debugger.c">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\auxiliar.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\except.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\inet.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\luasocket.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\mime.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\options.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\select.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\tcp.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\timeout.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\udp.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\wsocket.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\buffer.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\io.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_event.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_is.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_map.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_push.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_to.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\xxtea\xxtea.cpp">
|
||||
<Filter>xxtea</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_experimental_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_experimental_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_extension_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_ui_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_physics_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_spine_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_studio_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\CCBProxy.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\CCLuaBridge.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\CCLuaEngine.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\CCLuaStack.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\CCLuaValue.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\Cocos2dxLuaLoader.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_coco_studio_manual.hpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_deprecated.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_extension_manual.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_ui_manual.hpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_manual.hpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_physics_manual.hpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_spine_manual.hpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_extensions.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\Lua_web_socket.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_xml_http_request.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\LuaBasicConversions.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\LuaOpengl.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\LuaScriptHandlerMgr.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\LuaSkeletonAnimation.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\tolua_fix.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_debugger.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\auxiliar.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\except.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\inet.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\luasocket.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\mime.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\options.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\select.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\socket.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\tcp.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\timeout.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\udp.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\wsocket.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\buffer.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\io.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\tolua\tolua++.h">
|
||||
<Filter>tolua</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\tolua\tolua_event.h">
|
||||
<Filter>tolua</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\lauxlib.h">
|
||||
<Filter>luajit</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\lua.h">
|
||||
<Filter>luajit</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\luaconf.h">
|
||||
<Filter>luajit</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\lualib.h">
|
||||
<Filter>luajit</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\xxtea\xxtea.h">
|
||||
<Filter>xxtea</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_experimental_manual.hpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_experimental_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\Cocos2dConstants.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\CocoStudio.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\Deprecated.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedClass.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedEnum.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedOpenglEnum.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DrawPrimitives.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\extern.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\GuiConstants.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\json.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\luaj.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\luaoc.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\Opengl.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\OpenglConstants.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\StudioConstants.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\AudioEngine.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\CCBReaderLoad.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\Cocos2d.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -1,3 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
</Project>
|
|
@ -11,19 +11,6 @@
|
|||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\auxiliar.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\buffer.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\except.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\inet.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\io.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\luasocket.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\mime.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\options.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\select.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\tcp.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\timeout.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\udp.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\wsocket.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_event.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_is.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_map.c" />
|
||||
|
@ -32,33 +19,20 @@
|
|||
<ClCompile Include="..\..\..\..\external\xxtea\xxtea.cpp" />
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_auto.cpp" />
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_experimental_auto.cpp" />
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_extension_auto.cpp" />
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_physics_auto.cpp" />
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_spine_auto.cpp" />
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_studio_auto.cpp" />
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_ui_auto.cpp" />
|
||||
<ClCompile Include="..\manual\CCBProxy.cpp" />
|
||||
<ClCompile Include="..\manual\CCLuaBridge.cpp" />
|
||||
<ClCompile Include="..\manual\CCLuaEngine.cpp" />
|
||||
<ClCompile Include="..\manual\CCLuaStack.cpp" />
|
||||
<ClCompile Include="..\manual\CCLuaValue.cpp" />
|
||||
<ClCompile Include="..\manual\Cocos2dxLuaLoader.cpp" />
|
||||
<ClCompile Include="..\manual\cocos2d\LuaOpengl.cpp" />
|
||||
<ClCompile Include="..\manual\cocos2d\LuaScriptHandlerMgr.cpp" />
|
||||
<ClCompile Include="..\manual\cocos2d\lua_cocos2dx_deprecated.cpp" />
|
||||
<ClCompile Include="..\manual\cocos2d\lua_cocos2dx_experimental_manual.cpp" />
|
||||
<ClCompile Include="..\manual\cocos2d\lua_cocos2dx_manual.cpp" />
|
||||
<ClCompile Include="..\manual\cocos2d\lua_cocos2dx_physics_manual.cpp" />
|
||||
<ClCompile Include="..\manual\LuaBasicConversions.cpp" />
|
||||
<ClCompile Include="..\manual\LuaOpengl.cpp" />
|
||||
<ClCompile Include="..\manual\LuaScriptHandlerMgr.cpp" />
|
||||
<ClCompile Include="..\manual\LuaSkeletonAnimation.cpp" />
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_coco_studio_manual.cpp" />
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_deprecated.cpp" />
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_experimental_manual.cpp" />
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_extension_manual.cpp" />
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_manual.cpp" />
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_physics_manual.cpp" />
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_spine_manual.cpp" />
|
||||
<ClCompile Include="..\manual\lua_cocos2dx_ui_manual.cpp" />
|
||||
<ClCompile Include="..\manual\lua_debugger.c" />
|
||||
<ClCompile Include="..\manual\lua_extensions.c" />
|
||||
<ClCompile Include="..\manual\Lua_web_socket.cpp" />
|
||||
<ClCompile Include="..\manual\lua_xml_http_request.cpp" />
|
||||
<ClCompile Include="..\manual\tolua_fix.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
@ -66,73 +40,41 @@
|
|||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\lua.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\luaconf.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\lualib.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\auxiliar.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\buffer.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\except.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\inet.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\io.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\luasocket.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\mime.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\options.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\select.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\socket.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\tcp.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\timeout.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\udp.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\wsocket.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\tolua\tolua++.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\tolua\tolua_event.h" />
|
||||
<ClInclude Include="..\..\..\..\external\xxtea\xxtea.h" />
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_auto.hpp" />
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_experimental_auto.hpp" />
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_extension_auto.hpp" />
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_physics_auto.hpp" />
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_spine_auto.hpp" />
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_studio_auto.hpp" />
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_ui_auto.hpp" />
|
||||
<ClInclude Include="..\manual\CCBProxy.h" />
|
||||
<ClInclude Include="..\manual\CCLuaBridge.h" />
|
||||
<ClInclude Include="..\manual\CCLuaEngine.h" />
|
||||
<ClInclude Include="..\manual\CCLuaStack.h" />
|
||||
<ClInclude Include="..\manual\CCLuaValue.h" />
|
||||
<ClInclude Include="..\manual\Cocos2dxLuaLoader.h" />
|
||||
<ClInclude Include="..\manual\cocos2d\LuaOpengl.h" />
|
||||
<ClInclude Include="..\manual\cocos2d\LuaScriptHandlerMgr.h" />
|
||||
<ClInclude Include="..\manual\cocos2d\lua_cocos2dx_deprecated.h" />
|
||||
<ClInclude Include="..\manual\cocos2d\lua_cocos2dx_experimental_manual.hpp" />
|
||||
<ClInclude Include="..\manual\cocos2d\lua_cocos2dx_manual.hpp" />
|
||||
<ClInclude Include="..\manual\cocos2d\lua_cocos2dx_physics_manual.hpp" />
|
||||
<ClInclude Include="..\manual\LuaBasicConversions.h" />
|
||||
<ClInclude Include="..\manual\LuaOpengl.h" />
|
||||
<ClInclude Include="..\manual\LuaScriptHandlerMgr.h" />
|
||||
<ClInclude Include="..\manual\LuaSkeletonAnimation.h" />
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_coco_studio_manual.hpp" />
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_deprecated.h" />
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_experimental_manual.hpp" />
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_extension_manual.h" />
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_manual.hpp" />
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_physics_manual.hpp" />
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_spine_manual.hpp" />
|
||||
<ClInclude Include="..\manual\lua_cocos2dx_ui_manual.hpp" />
|
||||
<ClInclude Include="..\manual\lua_debugger.h" />
|
||||
<ClInclude Include="..\manual\lua_extensions.h" />
|
||||
<ClInclude Include="..\manual\Lua_web_socket.h" />
|
||||
<ClInclude Include="..\manual\lua_xml_http_request.h" />
|
||||
<ClInclude Include="..\manual\tolua_fix.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\AudioEngine.lua" />
|
||||
<None Include="..\script\CCBReaderLoad.lua" />
|
||||
<None Include="..\script\Cocos2d.lua" />
|
||||
<None Include="..\script\Cocos2dConstants.lua" />
|
||||
<None Include="..\script\CocoStudio.lua" />
|
||||
<None Include="..\script\Deprecated.lua" />
|
||||
<None Include="..\script\DeprecatedClass.lua" />
|
||||
<None Include="..\script\DeprecatedEnum.lua" />
|
||||
<None Include="..\script\DeprecatedCocos2dClass.lua" />
|
||||
<None Include="..\script\DeprecatedCocos2dEnum.lua" />
|
||||
<None Include="..\script\DeprecatedCocos2dFunc.lua" />
|
||||
<None Include="..\script\DeprecatedOpenglEnum.lua" />
|
||||
<None Include="..\script\DrawPrimitives.lua" />
|
||||
<None Include="..\script\extern.lua" />
|
||||
<None Include="..\script\GuiConstants.lua" />
|
||||
<None Include="..\script\json.lua" />
|
||||
<None Include="..\script\luaj.lua" />
|
||||
<None Include="..\script\luaoc.lua" />
|
||||
<None Include="..\script\Opengl.lua" />
|
||||
<None Include="..\script\OpenglConstants.lua" />
|
||||
<None Include="..\script\StudioConstants.lua" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\2d\libcocos2d.vcxproj">
|
||||
|
@ -140,8 +82,8 @@
|
|||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{DDC3E27F-004D-4DD4-9DD3-931A013D2159}</ProjectGuid>
|
||||
<RootNamespace>liblua</RootNamespace>
|
||||
<ProjectGuid>{9F2D6CE6-C893-4400-B50C-6DB70CC2562F}</ProjectGuid>
|
||||
<RootNamespace>libluacocos2d</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
|
@ -197,7 +139,7 @@
|
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)cocos;$(EngineRoot)cocos\ui;$(EngineRoot)cocos\editor-support;$(EngineRoot)cocos\editor-support\cocostudio;$(EngineRoot)cocos\editor-support\cocosbuilder;$(EngineRoot)cocos\editor-support\spine;$(EngineRoot)cocos\audio\include;$(EngineRoot)extensions;$(EngineRoot)extensions\network;$(EngineRoot)external;$(EngineRoot)external\libwebsockets\win32\include;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)external\lua;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\2d;$(EngineRoot)cocos\3d;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)cocos;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)external\lua;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\2d;$(EngineRoot)cocos\3d;$(EngineRoot)cocos\scripting\lua-bindings\manual\extension;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocostudio;$(EngineRoot)cocos\scripting\lua-bindings\manual\ui;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)extensions;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
|
@ -229,7 +171,7 @@ xcopy /Y /Q "$(ProjectDir)..\..\..\..\external\lua\luajit\prebuilt\win32\*.*" "$
|
|||
<ClCompile>
|
||||
<Optimization>MinSpace</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)cocos;$(EngineRoot)cocos\ui;$(EngineRoot)cocos\editor-support;$(EngineRoot)cocos\editor-support\cocostudio;$(EngineRoot)cocos\editor-support\cocosbuilder;$(EngineRoot)cocos\editor-support\spine;$(EngineRoot)cocos\audio\include;$(EngineRoot)extensions;$(EngineRoot)extensions\network;$(EngineRoot)external;$(EngineRoot)external\libwebsockets\win32\include;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)external\lua;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\2d;$(EngineRoot)cocos\3d;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)cocos;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)external\lua;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\2d;$(EngineRoot)cocos\3d;$(EngineRoot)cocos\scripting\lua-bindings\manual\extension;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocostudio;$(EngineRoot)cocos\scripting\lua-bindings\manual\ui;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)extensions;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBLUA_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
@ -0,0 +1,212 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="auto">
|
||||
<UniqueIdentifier>{8d269c90-26ad-4ce8-b355-d8df01d59914}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual">
|
||||
<UniqueIdentifier>{25c7b94b-a9a1-4b93-b285-93c9b620e2ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="script">
|
||||
<UniqueIdentifier>{af4b7d5f-f563-4069-ade8-c1a954e6fe5e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="tolua">
|
||||
<UniqueIdentifier>{24fae6d6-ebb5-4da1-b0da-3f3845a9e9a9}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="luajit">
|
||||
<UniqueIdentifier>{cc863463-a948-487a-aacd-dc233c3e5200}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="xxtea">
|
||||
<UniqueIdentifier>{1fa7ff75-c142-4928-8aef-e6a2eb2b465f}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual\cocos2d">
|
||||
<UniqueIdentifier>{d326dcc4-b1e3-4326-95c2-c14144076fd9}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_event.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_is.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_map.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_push.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\tolua\tolua_to.c">
|
||||
<Filter>tolua</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\xxtea\xxtea.cpp">
|
||||
<Filter>xxtea</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_experimental_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\CCLuaBridge.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\CCLuaEngine.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\CCLuaStack.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\CCLuaValue.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\Cocos2dxLuaLoader.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\lua_debugger.c">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\LuaBasicConversions.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\tolua_fix.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\cocos2d\lua_cocos2dx_deprecated.cpp">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\cocos2d\lua_cocos2dx_experimental_manual.cpp">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\cocos2d\lua_cocos2dx_manual.cpp">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\cocos2d\lua_cocos2dx_physics_manual.cpp">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\cocos2d\LuaOpengl.cpp">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\cocos2d\LuaScriptHandlerMgr.cpp">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_physics_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\tolua\tolua++.h">
|
||||
<Filter>tolua</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\tolua\tolua_event.h">
|
||||
<Filter>tolua</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\lauxlib.h">
|
||||
<Filter>luajit</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\lua.h">
|
||||
<Filter>luajit</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\luaconf.h">
|
||||
<Filter>luajit</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luajit\include\lualib.h">
|
||||
<Filter>luajit</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\xxtea\xxtea.h">
|
||||
<Filter>xxtea</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_experimental_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\CCLuaBridge.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\CCLuaEngine.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\CCLuaStack.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\CCLuaValue.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\Cocos2dxLuaLoader.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\lua_debugger.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\LuaBasicConversions.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\tolua_fix.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\cocos2d\lua_cocos2dx_deprecated.h">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\cocos2d\lua_cocos2dx_experimental_manual.hpp">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\cocos2d\lua_cocos2dx_manual.hpp">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\cocos2d\lua_cocos2dx_physics_manual.hpp">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\cocos2d\LuaOpengl.h">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\cocos2d\LuaScriptHandlerMgr.h">
|
||||
<Filter>manual\cocos2d</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_physics_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\Cocos2dConstants.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedOpenglEnum.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DrawPrimitives.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\extern.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\json.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\luaj.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\luaoc.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\Opengl.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\OpenglConstants.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\Cocos2d.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedCocos2dClass.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedCocos2dEnum.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedCocos2dFunc.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,153 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_cocosbuilder_auto.cpp" />
|
||||
<ClCompile Include="..\manual\cocosbuilder\CCBProxy.cpp" />
|
||||
<ClCompile Include="..\manual\cocosbuilder\lua_cocos2dx_cocosbuilder_manual.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_cocosbuilder_auto.hpp" />
|
||||
<ClInclude Include="..\manual\cocosbuilder\CCBProxy.h" />
|
||||
<ClInclude Include="..\manual\cocosbuilder\lua_cocos2dx_cocosbuilder_manual.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\CCBReaderLoad.lua" />
|
||||
<None Include="..\script\DeprecatedCocosBuilderClass.lua" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\editor-support\cocosbuilder\proj.win32\libcocosbuilder.vcxproj">
|
||||
<Project>{811c0dab-7b96-4bd3-a154-b7572b58e4ab}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{F8198014-F4F3-49F0-88AB-C1969A5829AF}</ProjectGuid>
|
||||
<RootNamespace>libluacocosbuilder</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration).win32\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration).win32\</IntDir>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)cocos\editor-support;$(EngineRoot)cocos\editor-support\cocosbuilder;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>OldStyle</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MinSpace</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)cocos\editor-support;$(EngineRoot)cocos\editor-support\cocosbuilder;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBLUA_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>libcocos2d.lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="auto">
|
||||
<UniqueIdentifier>{8d269c90-26ad-4ce8-b355-d8df01d59914}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual">
|
||||
<UniqueIdentifier>{25c7b94b-a9a1-4b93-b285-93c9b620e2ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="script">
|
||||
<UniqueIdentifier>{af4b7d5f-f563-4069-ade8-c1a954e6fe5e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual\cocosbuilder">
|
||||
<UniqueIdentifier>{a70474d7-7a4d-41e4-93de-0a1e24b7ec5c}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_cocosbuilder_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\cocosbuilder\CCBProxy.cpp">
|
||||
<Filter>manual\cocosbuilder</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\cocosbuilder\lua_cocos2dx_cocosbuilder_manual.cpp">
|
||||
<Filter>manual\cocosbuilder</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_cocosbuilder_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\cocosbuilder\CCBProxy.h">
|
||||
<Filter>manual\cocosbuilder</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\cocosbuilder\lua_cocos2dx_cocosbuilder_manual.h">
|
||||
<Filter>manual\cocosbuilder</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\CCBReaderLoad.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedCocosBuilderClass.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,152 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\AudioEngine.lua" />
|
||||
<None Include="..\script\DeprecatedCocosDenshionClass.lua" />
|
||||
<None Include="..\script\DeprecatedCocosDenshionFunc.lua" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\audio\proj.win32\libcocosdenshion.vcxproj">
|
||||
<Project>{f8edd7fa-9a51-4e80-baeb-860825d2eac6}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_cocosdenshion_auto.cpp" />
|
||||
<ClCompile Include="..\manual\cocosdenshion\lua_cocos2dx_cocosdenshion_manual.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_cocosdenshion_auto.hpp" />
|
||||
<ClInclude Include="..\manual\cocosdenshion\lua_cocos2dx_cocosdenshion_manual.h" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{46A7D57A-7F25-4F52-823B-FFAC4FF3A624}</ProjectGuid>
|
||||
<RootNamespace>libluacocosdenshion</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration).win32\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration).win32\</IntDir>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot)cocos\audio\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocosdenshion;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\manual;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>OldStyle</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MinSpace</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot)cocos\audio\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocosdenshion;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\manual;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBLUA_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>libcocos2d.lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="auto">
|
||||
<UniqueIdentifier>{8d269c90-26ad-4ce8-b355-d8df01d59914}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual">
|
||||
<UniqueIdentifier>{25c7b94b-a9a1-4b93-b285-93c9b620e2ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="script">
|
||||
<UniqueIdentifier>{af4b7d5f-f563-4069-ade8-c1a954e6fe5e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual\cocosdenshion">
|
||||
<UniqueIdentifier>{e6ef7820-87ef-4975-a15d-969267d181ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\AudioEngine.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedCocosDenshionClass.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedCocosDenshionFunc.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\manual\cocosdenshion\lua_cocos2dx_cocosdenshion_manual.cpp">
|
||||
<Filter>manual\cocosdenshion</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_cocosdenshion_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\manual\cocosdenshion\lua_cocos2dx_cocosdenshion_manual.h">
|
||||
<Filter>manual\cocosdenshion</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_cocosdenshion_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,152 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_studio_auto.cpp" />
|
||||
<ClCompile Include="..\manual\cocostudio\lua_cocos2dx_coco_studio_manual.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_studio_auto.hpp" />
|
||||
<ClInclude Include="..\manual\cocostudio\lua_cocos2dx_coco_studio_manual.hpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\DeprecatedCocoStudioClass.lua" />
|
||||
<None Include="..\script\DeprecatedCocoStudioFunc.lua" />
|
||||
<None Include="..\script\StudioConstants.lua" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\editor-support\cocostudio\proj.win32\libcocostudio.vcxproj">
|
||||
<Project>{b57cf53f-2e49-4031-9822-047cc0e6bde2}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{9640951E-C5D0-47B5-9C42-0BCADA261C50}</ProjectGuid>
|
||||
<RootNamespace>libluacocostudio</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration).win32\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration).win32\</IntDir>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)cocos\editor-support;$(EngineRoot)cocos\editor-support\cocostudio;$(EngineRoot)external;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocostudio;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>OldStyle</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MinSpace</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)cocos\editor-support;$(EngineRoot)cocos\editor-support\cocostudio;$(EngineRoot)external;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocostudio;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBLUA_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>libcocos2d.lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="auto">
|
||||
<UniqueIdentifier>{8d269c90-26ad-4ce8-b355-d8df01d59914}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual">
|
||||
<UniqueIdentifier>{25c7b94b-a9a1-4b93-b285-93c9b620e2ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="script">
|
||||
<UniqueIdentifier>{af4b7d5f-f563-4069-ade8-c1a954e6fe5e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual\cocostudio">
|
||||
<UniqueIdentifier>{900827d1-f640-4a49-b4bd-34c6d4a4b8b5}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_studio_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\cocostudio\lua_cocos2dx_coco_studio_manual.cpp">
|
||||
<Filter>manual\cocostudio</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_studio_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\cocostudio\lua_cocos2dx_coco_studio_manual.hpp">
|
||||
<Filter>manual\cocostudio</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\DeprecatedCocoStudioClass.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedCocoStudioFunc.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\StudioConstants.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,153 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_extension_auto.cpp" />
|
||||
<ClCompile Include="..\manual\extension\lua_cocos2dx_extension_manual.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_extension_auto.hpp" />
|
||||
<ClInclude Include="..\manual\extension\lua_cocos2dx_extension_manual.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\DeprecatedExtensionClass.lua" />
|
||||
<None Include="..\script\DeprecatedExtensionEnum.lua" />
|
||||
<None Include="..\script\DeprecatedExtensionFunc.lua" />
|
||||
<None Include="..\script\ExtensionConstants.lua" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\..\extensions\proj.win32\libextension.vcxproj">
|
||||
<Project>{21b2c324-891f-48ea-ad1a-5ae13de12e28}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{7068296E-38A4-4BCA-85DB-3A09BD014847}</ProjectGuid>
|
||||
<RootNamespace>libluaextension</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration).win32\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration).win32\</IntDir>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)extensions;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)cocos\scripting\lua-bindings\manual\extension;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>OldStyle</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MinSpace</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)extensions;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)cocos\scripting\lua-bindings\manual\extension;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBLUA_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>libcocos2d.lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="auto">
|
||||
<UniqueIdentifier>{8d269c90-26ad-4ce8-b355-d8df01d59914}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual">
|
||||
<UniqueIdentifier>{25c7b94b-a9a1-4b93-b285-93c9b620e2ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="script">
|
||||
<UniqueIdentifier>{af4b7d5f-f563-4069-ade8-c1a954e6fe5e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual\extension">
|
||||
<UniqueIdentifier>{af407ec6-3b69-4f0f-a053-6f68467c82e9}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_extension_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\extension\lua_cocos2dx_extension_manual.cpp">
|
||||
<Filter>manual\extension</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_extension_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\extension\lua_cocos2dx_extension_manual.h">
|
||||
<Filter>manual\extension</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\DeprecatedExtensionClass.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedExtensionEnum.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedExtensionFunc.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\ExtensionConstants.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,178 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\auxiliar.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\buffer.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\except.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\inet.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\io.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\luasocket.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\mime.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\options.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\select.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\tcp.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\timeout.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\udp.c" />
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\wsocket.c" />
|
||||
<ClCompile Include="..\manual\network\lua_cocos2dx_network_manual.cpp" />
|
||||
<ClCompile Include="..\manual\network\lua_extensions.c" />
|
||||
<ClCompile Include="..\manual\network\Lua_web_socket.cpp" />
|
||||
<ClCompile Include="..\manual\network\lua_xml_http_request.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\auxiliar.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\buffer.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\except.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\inet.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\io.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\luasocket.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\mime.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\options.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\select.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\socket.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\tcp.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\timeout.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\udp.h" />
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\wsocket.h" />
|
||||
<ClInclude Include="..\manual\network\lua_cocos2dx_network_manual.h" />
|
||||
<ClInclude Include="..\manual\network\lua_extensions.h" />
|
||||
<ClInclude Include="..\manual\network\Lua_web_socket.h" />
|
||||
<ClInclude Include="..\manual\network\lua_xml_http_request.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\network\proj.win32\libNetwork.vcxproj">
|
||||
<Project>{df2638c0-8128-4847-867c-6eafe3dee7b5}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{65E52F4B-703F-419E-AD67-926241A10042}</ProjectGuid>
|
||||
<RootNamespace>libluacocosdenshion</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration).win32\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration).win32\</IntDir>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)extensions\network;$(EngineRoot)external\libwebsockets\win32\include;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)external\lua;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>OldStyle</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MinSpace</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot);$(EngineRoot)extensions\network;$(EngineRoot)external\libwebsockets\win32\include;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)external\lua;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBLUA_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>libcocos2d.lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -0,0 +1,126 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="manual">
|
||||
<UniqueIdentifier>{25c7b94b-a9a1-4b93-b285-93c9b620e2ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="script">
|
||||
<UniqueIdentifier>{af4b7d5f-f563-4069-ade8-c1a954e6fe5e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual\network">
|
||||
<UniqueIdentifier>{633582d6-6f80-4dd1-b719-951e1c1dc6ff}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="luasocket">
|
||||
<UniqueIdentifier>{0c791425-97c1-4eaa-869d-2454d9670a72}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\manual\network\lua_cocos2dx_network_manual.cpp">
|
||||
<Filter>manual\network</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\network\lua_extensions.c">
|
||||
<Filter>manual\network</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\network\Lua_web_socket.cpp">
|
||||
<Filter>manual\network</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\network\lua_xml_http_request.cpp">
|
||||
<Filter>manual\network</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\auxiliar.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\buffer.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\except.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\inet.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\io.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\luasocket.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\mime.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\options.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\select.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\tcp.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\timeout.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\udp.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\..\external\lua\luasocket\wsocket.c">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\manual\network\lua_cocos2dx_network_manual.h">
|
||||
<Filter>manual\network</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\network\lua_extensions.h">
|
||||
<Filter>manual\network</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\network\Lua_web_socket.h">
|
||||
<Filter>manual\network</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\network\lua_xml_http_request.h">
|
||||
<Filter>manual\network</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\auxiliar.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\buffer.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\except.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\inet.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\io.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\luasocket.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\mime.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\options.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\select.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\socket.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\tcp.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\timeout.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\udp.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\..\external\lua\luasocket\wsocket.h">
|
||||
<Filter>luasocket</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,149 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_spine_auto.cpp" />
|
||||
<ClCompile Include="..\manual\spine\LuaSkeletonAnimation.cpp" />
|
||||
<ClCompile Include="..\manual\spine\lua_cocos2dx_spine_manual.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_spine_auto.hpp" />
|
||||
<ClInclude Include="..\manual\spine\LuaSkeletonAnimation.h" />
|
||||
<ClInclude Include="..\manual\spine\lua_cocos2dx_spine_manual.hpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\editor-support\spine\proj.win32\libspine.vcxproj">
|
||||
<Project>{b7c2a162-dec9-4418-972e-240ab3cbfcae}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{31EF6AB1-0D9A-4BC6-99B8-2C482EA373C4}</ProjectGuid>
|
||||
<RootNamespace>libluaextension</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration).win32\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration).win32\</IntDir>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot)cocos\editor-support;$(EngineRoot)cocos\editor-support\spine;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\spine;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>OldStyle</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MinSpace</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot)cocos\editor-support;$(EngineRoot)cocos\editor-support\spine;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\spine;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBLUA_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>libcocos2d.lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="auto">
|
||||
<UniqueIdentifier>{8d269c90-26ad-4ce8-b355-d8df01d59914}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual">
|
||||
<UniqueIdentifier>{25c7b94b-a9a1-4b93-b285-93c9b620e2ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_spine_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\spine\lua_cocos2dx_spine_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\spine\LuaSkeletonAnimation.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_spine_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\spine\lua_cocos2dx_spine_manual.hpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\spine\LuaSkeletonAnimation.h">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,156 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_experimental_video_auto.cpp" />
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_ui_auto.cpp" />
|
||||
<ClCompile Include="..\manual\ui\lua_cocos2dx_experimental_video_manual.cpp" />
|
||||
<ClCompile Include="..\manual\ui\lua_cocos2dx_ui_manual.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_experimental_video_auto.hpp" />
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_ui_auto.hpp" />
|
||||
<ClInclude Include="..\manual\ui\lua_cocos2dx_experimental_video_manual.hpp" />
|
||||
<ClInclude Include="..\manual\ui\lua_cocos2dx_ui_manual.hpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\DeprecatedUIEnum.lua" />
|
||||
<None Include="..\script\DeprecatedUIFunc.lua" />
|
||||
<None Include="..\script\GuiConstants.lua" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\ui\proj.win32\libui.vcxproj">
|
||||
<Project>{7e06e92c-537a-442b-9e4a-4761c84f8a1a}</Project>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{FE78EEBB-3DBB-4713-8CBF-63D742C5BD82}</ProjectGuid>
|
||||
<RootNamespace>libluaui</RootNamespace>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '10.0'">v100</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0'">v110</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '11.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v110_xp</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0'">v120</PlatformToolset>
|
||||
<PlatformToolset Condition="'$(VisualStudioVersion)' == '12.0' and exists('$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A')">v120_xp</PlatformToolset>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
<Import Project="..\..\..\2d\cocos2d_headers.props" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup>
|
||||
<_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration).win32\</IntDir>
|
||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration).win32\</OutDir>
|
||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration).win32\</IntDir>
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
|
||||
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
|
||||
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LibraryPath>$(MSBuildProgramFiles32)\Microsoft SDKs\Windows\v7.1A\lib;$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot)cocos\ui;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)cocos\scripting\lua-bindings\ui;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;_WINDOWS;_DEBUG;COCOS2D_DEBUG=1;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>OldStyle</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>MinSpace</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<AdditionalIncludeDirectories>$(EngineRoot)cocos\ui;$(EngineRoot)external\lua\tolua;$(EngineRoot)external\lua\luajit\include;$(EngineRoot)cocos\scripting\lua-bindings\auto;$(EngineRoot)cocos\scripting\lua-bindings\manual;$(EngineRoot)cocos\scripting\lua-bindings\manual\cocos2d;$(EngineRoot)cocos\scripting\lua-bindings\ui;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBLUA_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PrecompiledHeaderFile>
|
||||
</PrecompiledHeaderFile>
|
||||
<PrecompiledHeaderOutputFile>
|
||||
</PrecompiledHeaderOutputFile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<DebugInformationFormat>None</DebugInformationFormat>
|
||||
<DisableSpecificWarnings>4800;4267;4251;4244;%(DisableSpecificWarnings)</DisableSpecificWarnings>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<WholeProgramOptimization>false</WholeProgramOptimization>
|
||||
</ClCompile>
|
||||
<Lib>
|
||||
<AdditionalLibraryDirectories>libcocos2d.lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
</Lib>
|
||||
<PreLinkEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreLinkEvent>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="auto">
|
||||
<UniqueIdentifier>{8d269c90-26ad-4ce8-b355-d8df01d59914}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="manual">
|
||||
<UniqueIdentifier>{25c7b94b-a9a1-4b93-b285-93c9b620e2ad}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="script">
|
||||
<UniqueIdentifier>{af4b7d5f-f563-4069-ade8-c1a954e6fe5e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_experimental_video_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\auto\lua_cocos2dx_ui_auto.cpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\ui\lua_cocos2dx_experimental_video_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\manual\ui\lua_cocos2dx_ui_manual.cpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_experimental_video_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\auto\lua_cocos2dx_ui_auto.hpp">
|
||||
<Filter>auto</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\ui\lua_cocos2dx_experimental_video_manual.hpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\manual\ui\lua_cocos2dx_ui_manual.hpp">
|
||||
<Filter>manual</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\script\DeprecatedUIEnum.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\DeprecatedUIFunc.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
<None Include="..\script\GuiConstants.lua">
|
||||
<Filter>script</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -371,3 +371,9 @@ end
|
|||
function ccs.TriggerMng:isEmpty()
|
||||
return (not (nil == self._eventTriggers)) or table.getn(self._eventTriggers) <= 0
|
||||
end
|
||||
|
||||
function __onParseConfig(configType,jasonStr)
|
||||
if configType == cc.ConfigType.COCOSTUDIO then
|
||||
ccs.TriggerMng.getInstance():parse(jasonStr)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,10 +1,5 @@
|
|||
require "CocoStudio"
|
||||
|
||||
cc = cc or {}
|
||||
|
||||
cc.DIRECTOR_PROJECTION_2D = 0
|
||||
cc.DIRECTOR_PROJECTION_3D = 1
|
||||
|
||||
function cc.clampf(value, min_inclusive, max_inclusive)
|
||||
-- body
|
||||
local temp = 0
|
||||
|
@ -367,15 +362,3 @@ end
|
|||
function cc.PhysicsMaterial(_density, _restitution, _friction)
|
||||
return { density = _density, restitution = _restitution, friction = _friction }
|
||||
end
|
||||
|
||||
local ConfigType =
|
||||
{
|
||||
NONE = 0,
|
||||
COCOSTUDIO = 1,
|
||||
}
|
||||
|
||||
function __onParseConfig(configType,jasonStr)
|
||||
if configType == ConfigType.COCOSTUDIO then
|
||||
ccs.TriggerMng.getInstance():parse(jasonStr)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -186,59 +186,6 @@ cc.PLATFORM_OS_NACL = 7
|
|||
cc.PLATFORM_OS_EMSCRIPTEN = 8
|
||||
cc.PLATFORM_OS_TIZEN = 9
|
||||
|
||||
cc.SCROLLVIEW_SCRIPT_SCROLL = 0
|
||||
cc.SCROLLVIEW_SCRIPT_ZOOM = 1
|
||||
cc.TABLECELL_TOUCHED = 2
|
||||
cc.TABLECELL_HIGH_LIGHT = 3
|
||||
cc.TABLECELL_UNHIGH_LIGHT = 4
|
||||
cc.TABLECELL_WILL_RECYCLE = 5
|
||||
cc.TABLECELL_SIZE_FOR_INDEX = 6
|
||||
cc.TABLECELL_SIZE_AT_INDEX = 7
|
||||
cc.NUMBER_OF_CELLS_IN_TABLEVIEW = 8
|
||||
|
||||
cc.SCROLLVIEW_DIRECTION_NONE = -1
|
||||
cc.SCROLLVIEW_DIRECTION_HORIZONTAL = 0
|
||||
cc.SCROLLVIEW_DIRECTION_VERTICAL = 1
|
||||
cc.SCROLLVIEW_DIRECTION_BOTH = 2
|
||||
|
||||
cc.CONTROL_EVENTTYPE_TOUCH_DOWN = 1
|
||||
cc.CONTROL_EVENTTYPE_DRAG_INSIDE = 2
|
||||
cc.CONTROL_EVENTTYPE_DRAG_OUTSIDE = 4
|
||||
cc.CONTROL_EVENTTYPE_DRAG_ENTER = 8
|
||||
cc.CONTROL_EVENTTYPE_DRAG_EXIT = 16
|
||||
cc.CONTROL_EVENTTYPE_TOUCH_UP_INSIDE = 32
|
||||
cc.CONTROL_EVENTTYPE_TOUCH_UP_OUTSIDE = 64
|
||||
cc.CONTROL_EVENTTYPE_TOUCH_CANCEL = 128
|
||||
cc.CONTROL_EVENTTYPE_VALUE_CHANGED = 256
|
||||
|
||||
cc.CONTROL_STATE_NORMAL = 1
|
||||
cc.CONTROL_STATE_HIGH_LIGHTED = 2
|
||||
cc.CONTROL_STATE_DISABLED = 4
|
||||
cc.CONTROL_STATE_SELECTED = 8
|
||||
|
||||
|
||||
cc.KEYBOARD_RETURNTYPE_DEFAULT = 0
|
||||
cc.KEYBOARD_RETURNTYPE_DONE = 1
|
||||
cc.KEYBOARD_RETURNTYPE_SEND = 2
|
||||
cc.KEYBOARD_RETURNTYPE_SEARCH = 3
|
||||
cc.KEYBOARD_RETURNTYPE_GO = 4
|
||||
|
||||
|
||||
cc.EDITBOX_INPUT_MODE_ANY = 0
|
||||
cc.EDITBOX_INPUT_MODE_EMAILADDR = 1
|
||||
cc.EDITBOX_INPUT_MODE_NUMERIC = 2
|
||||
cc.EDITBOX_INPUT_MODE_PHONENUMBER = 3
|
||||
cc.EDITBOX_INPUT_MODE_URL = 4
|
||||
cc.EDITBOX_INPUT_MODE_DECIMAL = 5
|
||||
cc.EDITBOX_INPUT_MODE_SINGLELINE = 6
|
||||
|
||||
|
||||
cc.EDITBOX_INPUT_FLAG_PASSWORD = 0
|
||||
cc.EDITBOX_INPUT_FLAG_SENSITIVE = 1
|
||||
cc.EDITBOX_INPUT_FLAG_INITIAL_CAPS_WORD = 2
|
||||
cc.EDITBOX_INPUT_FLAG_INITIAL_CAPS_SENTENCE = 3
|
||||
cc.EDITBOX_INPUT_FLAG_INITIAL_CAPS_ALL_CHARACTERS = 4
|
||||
|
||||
cc.LANGUAGE_ENGLISH = 0
|
||||
cc.LANGUAGE_CHINESE = 1
|
||||
cc.LANGUAGE_FRENCH = 2
|
||||
|
@ -258,39 +205,6 @@ cc.NODE_ON_ENTER_TRANSITION_DID_FINISH = 2
|
|||
cc.NODE_ON_EXIT_TRANSITION_DID_START = 3
|
||||
cc.NODE_ON_CLEAN_UP = 4
|
||||
|
||||
cc.CONTROL_STEPPER_PART_MINUS = 0
|
||||
cc.CONTROL_STEPPER_PART_PLUS = 1
|
||||
cc.CONTROL_STEPPER_PART_NONE = 2
|
||||
|
||||
cc.TABLEVIEW_FILL_TOPDOWN = 0
|
||||
cc.TABLEVIEW_FILL_BOTTOMUP = 1
|
||||
|
||||
cc.WEBSOCKET_OPEN = 0
|
||||
cc.WEBSOCKET_MESSAGE = 1
|
||||
cc.WEBSOCKET_CLOSE = 2
|
||||
cc.WEBSOCKET_ERROR = 3
|
||||
|
||||
cc.WEBSOCKET_STATE_CONNECTING = 0
|
||||
cc.WEBSOCKET_STATE_OPEN = 1
|
||||
cc.WEBSOCKET_STATE_CLOSING = 2
|
||||
cc.WEBSOCKET_STATE_CLOSED = 3
|
||||
|
||||
|
||||
cc.XMLHTTPREQUEST_RESPONSE_STRING = 0
|
||||
cc.XMLHTTPREQUEST_RESPONSE_ARRAY_BUFFER = 1
|
||||
cc.XMLHTTPREQUEST_RESPONSE_BLOB = 2
|
||||
cc.XMLHTTPREQUEST_RESPONSE_DOCUMENT = 3
|
||||
cc.XMLHTTPREQUEST_RESPONSE_JSON = 4
|
||||
|
||||
cc.ASSETSMANAGER_CREATE_FILE = 0
|
||||
cc.ASSETSMANAGER_NETWORK = 1
|
||||
cc.ASSETSMANAGER_NO_NEW_VERSION = 2
|
||||
cc.ASSETSMANAGER_UNCOMPRESS = 3
|
||||
|
||||
cc.ASSETSMANAGER_PROTOCOL_PROGRESS = 0
|
||||
cc.ASSETSMANAGER_PROTOCOL_SUCCESS = 1
|
||||
cc.ASSETSMANAGER_PROTOCOL_ERROR = 2
|
||||
|
||||
cc.Handler = cc.Handler or {}
|
||||
cc.Handler.NODE = 0
|
||||
cc.Handler.MENU_CLICKED = 1
|
||||
|
@ -577,38 +491,11 @@ cc.EventCode =
|
|||
CANCELLED = 3,
|
||||
}
|
||||
|
||||
cc.ControllerKey =
|
||||
cc.DIRECTOR_PROJECTION_2D = 0
|
||||
cc.DIRECTOR_PROJECTION_3D = 1
|
||||
|
||||
cc.ConfigType =
|
||||
{
|
||||
JOYSTICK_LEFT_X = 1000,
|
||||
JOYSTICK_LEFT_Y = 1001,
|
||||
JOYSTICK_RIGHT_X = 1002,
|
||||
JOYSTICK_RIGHT_Y = 1003,
|
||||
|
||||
BUTTON_A = 1004,
|
||||
BUTTON_B = 1005,
|
||||
BUTTON_C = 1006,
|
||||
BUTTON_X = 1007,
|
||||
BUTTON_Y = 1008,
|
||||
BUTTON_Z = 1009,
|
||||
|
||||
BUTTON_DPAD_UP = 1010,
|
||||
BUTTON_DPAD_DOWN = 1011,
|
||||
BUTTON_DPAD_LEFT = 1012,
|
||||
BUTTON_DPAD_RIGHT = 1013,
|
||||
BUTTON_DPAD_CENTER = 1014,
|
||||
|
||||
BUTTON_LEFT_SHOULDER = 1015,
|
||||
BUTTON_RIGHT_SHOULDER = 1016,
|
||||
|
||||
AXIS_LEFT_TRIGGER = 1017,
|
||||
AXIS_RIGHT_TRIGGER = 1018,
|
||||
|
||||
BUTTON_LEFT_THUMBSTICK = 1019,
|
||||
BUTTON_RIGHT_THUMBSTICK = 1020,
|
||||
|
||||
BUTTON_START = 1021,
|
||||
BUTTON_SELECT = 1022,
|
||||
|
||||
BUTTON_PAUSE = 1023,
|
||||
KEY_MAX = 1024,
|
||||
NONE = 0,
|
||||
COCOSTUDIO = 1,
|
||||
}
|
||||
|
|
|
@ -0,0 +1,37 @@
|
|||
cc = cc or {}
|
||||
|
||||
cc.ControllerKey =
|
||||
{
|
||||
JOYSTICK_LEFT_X = 1000,
|
||||
JOYSTICK_LEFT_Y = 1001,
|
||||
JOYSTICK_RIGHT_X = 1002,
|
||||
JOYSTICK_RIGHT_Y = 1003,
|
||||
|
||||
BUTTON_A = 1004,
|
||||
BUTTON_B = 1005,
|
||||
BUTTON_C = 1006,
|
||||
BUTTON_X = 1007,
|
||||
BUTTON_Y = 1008,
|
||||
BUTTON_Z = 1009,
|
||||
|
||||
BUTTON_DPAD_UP = 1010,
|
||||
BUTTON_DPAD_DOWN = 1011,
|
||||
BUTTON_DPAD_LEFT = 1012,
|
||||
BUTTON_DPAD_RIGHT = 1013,
|
||||
BUTTON_DPAD_CENTER = 1014,
|
||||
|
||||
BUTTON_LEFT_SHOULDER = 1015,
|
||||
BUTTON_RIGHT_SHOULDER = 1016,
|
||||
|
||||
AXIS_LEFT_TRIGGER = 1017,
|
||||
AXIS_RIGHT_TRIGGER = 1018,
|
||||
|
||||
BUTTON_LEFT_THUMBSTICK = 1019,
|
||||
BUTTON_RIGHT_THUMBSTICK = 1020,
|
||||
|
||||
BUTTON_START = 1021,
|
||||
BUTTON_SELECT = 1022,
|
||||
|
||||
BUTTON_PAUSE = 1023,
|
||||
KEY_MAX = 1024,
|
||||
}
|
|
@ -0,0 +1,304 @@
|
|||
-- This is the DeprecatedExtensionClass
|
||||
|
||||
DeprecatedExtensionClass = {} or DeprecatedExtensionClass
|
||||
|
||||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--CCArmature class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCArmature()
|
||||
deprecatedTip("CCArmature","ccs.Armature")
|
||||
return ccs.Armature
|
||||
end
|
||||
_G["CCArmature"] = DeprecatedExtensionClass.CCArmature()
|
||||
--CCArmature class will be Deprecated,end
|
||||
|
||||
--CCArmatureAnimation class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCArmatureAnimation()
|
||||
deprecatedTip("CCArmatureAnimation","ccs.ArmatureAnimation")
|
||||
return ccs.ArmatureAnimation
|
||||
end
|
||||
_G["CCArmatureAnimation"] = DeprecatedExtensionClass.CCArmatureAnimation()
|
||||
--CCArmatureAnimation class will be Deprecated,end
|
||||
|
||||
--CCSkin class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCSkin()
|
||||
deprecatedTip("CCSkin","ccs.Skin")
|
||||
return ccs.Skin
|
||||
end
|
||||
_G["CCSkin"] = DeprecatedExtensionClass.CCSkin()
|
||||
--CCSkin class will be Deprecated,end
|
||||
|
||||
--CCBone class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCBone()
|
||||
deprecatedTip("CCBone","ccs.Bone")
|
||||
return ccs.Bone
|
||||
end
|
||||
_G["CCBone"] = DeprecatedExtensionClass.CCBone()
|
||||
--CCBone class will be Deprecated,end
|
||||
|
||||
--CCArmatureDataManager class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCArmatureDataManager()
|
||||
deprecatedTip("CCArmatureDataManager","ccs.ArmatureDataManager")
|
||||
return ccs.ArmatureDataManager
|
||||
end
|
||||
_G["CCArmatureDataManager"] = DeprecatedExtensionClass.CCArmatureDataManager()
|
||||
--CCArmatureDataManager class will be Deprecated,end
|
||||
|
||||
--CCBatchNode class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCBatchNode()
|
||||
deprecatedTip("CCBatchNode","ccs.BatchNode")
|
||||
return ccs.BatchNode
|
||||
end
|
||||
_G["CCBatchNode"] = DeprecatedExtensionClass.CCBatchNode()
|
||||
--CCBatchNode class will be Deprecated,end
|
||||
|
||||
--CCTween class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCTween()
|
||||
deprecatedTip("CCTween","ccs.Tween")
|
||||
return ccs.Tween
|
||||
end
|
||||
_G["CCTween"] = DeprecatedExtensionClass.CCTween()
|
||||
--CCTween class will be Deprecated,end
|
||||
|
||||
--CCBaseData class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCBaseData()
|
||||
deprecatedTip("CCBaseData","ccs.BaseData")
|
||||
return ccs.BaseData
|
||||
end
|
||||
_G["CCBaseData"] = DeprecatedExtensionClass.CCBaseData()
|
||||
--CCBaseData class will be Deprecated,end
|
||||
|
||||
--CCDisplayManager class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCDisplayManager()
|
||||
deprecatedTip("CCDisplayManager","ccs.DisplayManager")
|
||||
return ccs.DisplayManager
|
||||
end
|
||||
_G["CCDisplayManager"] = DeprecatedExtensionClass.CCDisplayManager()
|
||||
--CCDisplayManager class will be Deprecated,end
|
||||
|
||||
--UIHelper class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UIHelper()
|
||||
deprecatedTip("UIHelper","ccs.UIHelper")
|
||||
return ccs.UIHelper
|
||||
end
|
||||
_G["UIHelper"] = DeprecatedExtensionClass.UIHelper()
|
||||
--UIHelper class will be Deprecated,end
|
||||
|
||||
--UILayout class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UILayout()
|
||||
deprecatedTip("UILayout","ccs.UILayout")
|
||||
return ccs.UILayout
|
||||
end
|
||||
_G["UILayout"] = DeprecatedExtensionClass.UILayout()
|
||||
--UILayout class will be Deprecated,end
|
||||
|
||||
--UIWidget class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UIWidget()
|
||||
deprecatedTip("UIWidget","ccs.UIWidget")
|
||||
return ccs.UIWidget
|
||||
end
|
||||
_G["UIWidget"] = DeprecatedExtensionClass.UIWidget()
|
||||
--UIWidget class will be Deprecated,end
|
||||
|
||||
--UILayer class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UILayer()
|
||||
deprecatedTip("UILayer","ccs.UILayer")
|
||||
return ccs.UILayer
|
||||
end
|
||||
_G["UILayer"] = DeprecatedExtensionClass.UILayer()
|
||||
--UILayer class will be Deprecated,end
|
||||
|
||||
--UIButton class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UIButton()
|
||||
deprecatedTip("UIButton","ccs.UIButton")
|
||||
return ccs.UIButton
|
||||
end
|
||||
_G["UIButton"] = DeprecatedExtensionClass.UIButton()
|
||||
--UIButton class will be Deprecated,end
|
||||
|
||||
--UICheckBox class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UICheckBox()
|
||||
deprecatedTip("UICheckBox","ccs.UICheckBox")
|
||||
return ccs.UICheckBox
|
||||
end
|
||||
_G["UICheckBox"] = DeprecatedExtensionClass.UICheckBox()
|
||||
--UICheckBox class will be Deprecated,end
|
||||
|
||||
--UIImageView class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UIImageView()
|
||||
deprecatedTip("UIImageView","ccs.UIImageView")
|
||||
return ccs.UIImageView
|
||||
end
|
||||
_G["UIImageView"] = DeprecatedExtensionClass.UIImageView()
|
||||
--UIImageView class will be Deprecated,end
|
||||
|
||||
--UILabel class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UILabel()
|
||||
deprecatedTip("UILabel","ccs.UILabel")
|
||||
return ccs.UILabel
|
||||
end
|
||||
_G["UILabel"] = DeprecatedExtensionClass.UILabel()
|
||||
--UILabel class will be Deprecated,end
|
||||
|
||||
--UILabelAtlas class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UILabelAtlas()
|
||||
deprecatedTip("UILabelAtlas","ccs.UILabelAtlas")
|
||||
return ccs.UILabelAtlas
|
||||
end
|
||||
_G["UILabelAtlas"] = DeprecatedExtensionClass.UILabelAtlas()
|
||||
--UILabelAtlas class will be Deprecated,end
|
||||
|
||||
--UILabelBMFont class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UILabelBMFont()
|
||||
deprecatedTip("UILabelBMFont","ccs.UILabelBMFont")
|
||||
return ccs.UILabelBMFont
|
||||
end
|
||||
_G["UILabelBMFont"] = DeprecatedExtensionClass.UILabelBMFont()
|
||||
--UILabelBMFont class will be Deprecated,end
|
||||
|
||||
--UILoadingBar class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UILoadingBar()
|
||||
deprecatedTip("UILoadingBar","ccs.UILoadingBar")
|
||||
return ccs.UILoadingBar
|
||||
end
|
||||
_G["UILoadingBar"] = DeprecatedExtensionClass.UILoadingBar()
|
||||
--UILoadingBar class will be Deprecated,end
|
||||
|
||||
--UISlider class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UISlider()
|
||||
deprecatedTip("UISlider","ccs.UISlider")
|
||||
return ccs.UISlider
|
||||
end
|
||||
_G["UISlider"] = DeprecatedExtensionClass.UISlider()
|
||||
--UISlider class will be Deprecated,end
|
||||
|
||||
--UITextField class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UITextField()
|
||||
deprecatedTip("UITextField","ccs.UITextField")
|
||||
return ccs.UITextField
|
||||
end
|
||||
_G["UITextField"] = DeprecatedExtensionClass.UITextField()
|
||||
--UITextField class will be Deprecated,end
|
||||
|
||||
--UIScrollView class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UIScrollView()
|
||||
deprecatedTip("UIScrollView","ccs.UIScrollView")
|
||||
return ccs.UIScrollView
|
||||
end
|
||||
_G["UIScrollView"] = DeprecatedExtensionClass.UIScrollView()
|
||||
--UIScrollView class will be Deprecated,end
|
||||
|
||||
--UIPageView class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UIPageView()
|
||||
deprecatedTip("UIPageView","ccs.UIPageView")
|
||||
return ccs.UIPageView
|
||||
end
|
||||
_G["UIPageView"] = DeprecatedExtensionClass.UIPageView()
|
||||
--UIPageView class will be Deprecated,end
|
||||
|
||||
--UIListView class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UIListView()
|
||||
deprecatedTip("UIListView","ccs.UIListView")
|
||||
return ccs.UIListView
|
||||
end
|
||||
_G["UIListView"] = DeprecatedExtensionClass.UIListView()
|
||||
--UIListView class will be Deprecated,end
|
||||
|
||||
--UILayoutParameter class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UILayoutParameter()
|
||||
deprecatedTip("UILayoutParameter","ccs.UILayoutParameter")
|
||||
return ccs.UILayoutParameter
|
||||
end
|
||||
_G["UILayoutParameter"] = DeprecatedExtensionClass.UILayoutParameter()
|
||||
--UILayoutParameter class will be Deprecated,end
|
||||
|
||||
--UILinearLayoutParameter class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UILinearLayoutParameter()
|
||||
deprecatedTip("UILinearLayoutParameter","ccs.UILinearLayoutParameter")
|
||||
return ccs.UILinearLayoutParameter
|
||||
end
|
||||
_G["UILinearLayoutParameter"] = DeprecatedExtensionClass.UILinearLayoutParameter()
|
||||
--UILinearLayoutParameter class will be Deprecated,end
|
||||
|
||||
--UIRelativeLayoutParameter class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UIRelativeLayoutParameter()
|
||||
deprecatedTip("UIRelativeLayoutParameter","ccs.UIRelativeLayoutParameter")
|
||||
return ccs.UIRelativeLayoutParameter
|
||||
end
|
||||
_G["UIRelativeLayoutParameter"] = DeprecatedExtensionClass.UIRelativeLayoutParameter()
|
||||
--UIRelativeLayoutParameter class will be Deprecated,end
|
||||
|
||||
--CCComController class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCComController()
|
||||
deprecatedTip("CCComController","ccs.ComController")
|
||||
return ccs.CCComController
|
||||
end
|
||||
_G["CCComController"] = DeprecatedExtensionClass.CCComController()
|
||||
--CCComController class will be Deprecated,end
|
||||
|
||||
--CCComAudio class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCComAudio()
|
||||
deprecatedTip("CCComAudio","ccs.ComAudio")
|
||||
return ccs.ComAudio
|
||||
end
|
||||
_G["CCComAudio"] = DeprecatedExtensionClass.CCComAudio()
|
||||
--CCComAudio class will be Deprecated,end
|
||||
|
||||
--CCComAttribute class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCComAttribute()
|
||||
deprecatedTip("CCComAttribute","ccs.ComAttribute")
|
||||
return ccs.ComAttribute
|
||||
end
|
||||
_G["CCComAttribute"] = DeprecatedExtensionClass.CCComAttribute()
|
||||
--CCComAttribute class will be Deprecated,end
|
||||
|
||||
--CCComRender class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCComRender()
|
||||
deprecatedTip("CCComRender","ccs.ComRender")
|
||||
return ccs.ComRender
|
||||
end
|
||||
_G["CCComRender"] = DeprecatedExtensionClass.CCComRender()
|
||||
--CCComRender class will be Deprecated,end
|
||||
|
||||
--ActionManager class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.ActionManager()
|
||||
deprecatedTip("ActionManager","ccs.ActionManagerEx")
|
||||
return ccs.ActionManagerEx
|
||||
end
|
||||
_G["ActionManager"] = DeprecatedExtensionClass.ActionManager()
|
||||
--CCComRender class will be Deprecated,end
|
||||
|
||||
--SceneReader class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.SceneReader()
|
||||
deprecatedTip("SceneReader","ccs.SceneReader")
|
||||
return ccs.SceneReader
|
||||
end
|
||||
_G["SceneReader"] = DeprecatedExtensionClass.SceneReader()
|
||||
--SceneReader class will be Deprecated,end
|
||||
|
||||
--GUIReader class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.GUIReader()
|
||||
deprecatedTip("GUIReader","ccs.GUIReader")
|
||||
return ccs.GUIReader
|
||||
end
|
||||
_G["GUIReader"] = DeprecatedExtensionClass.GUIReader()
|
||||
--GUIReader class will be Deprecated,end
|
||||
|
||||
--UIRootWidget class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.UIRootWidget()
|
||||
deprecatedTip("UIRootWidget","ccs.UIRootWidget")
|
||||
return ccs.UIRootWidget
|
||||
end
|
||||
_G["UIRootWidget"] = DeprecatedExtensionClass.UIRootWidget()
|
||||
--UIRootWidget class will be Deprecated,end
|
||||
|
||||
--ActionObject class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.ActionObject()
|
||||
deprecatedTip("ActionObject","ccs.ActionObject")
|
||||
return ccs.ActionObject
|
||||
end
|
||||
_G["ActionObject"] = DeprecatedExtensionClass.ActionObject()
|
||||
--ActionObject class will be Deprecated,end
|
|
@ -0,0 +1,77 @@
|
|||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--functions of GUIReader will be deprecated begin
|
||||
local GUIReaderDeprecated = { }
|
||||
function GUIReaderDeprecated.shareReader()
|
||||
deprecatedTip("GUIReader:shareReader","ccs.GUIReader:getInstance")
|
||||
return ccs.GUIReader:getInstance()
|
||||
end
|
||||
rawset(GUIReader,"shareReader",GUIReaderDeprecated.shareReader)
|
||||
|
||||
function GUIReaderDeprecated.purgeGUIReader()
|
||||
deprecatedTip("GUIReader:purgeGUIReader","ccs.GUIReader:destroyInstance")
|
||||
return ccs.GUIReader:destroyInstance()
|
||||
end
|
||||
rawset(GUIReader,"purgeGUIReader",GUIReaderDeprecated.purgeGUIReader)
|
||||
--functions of GUIReader will be deprecated end
|
||||
|
||||
--functions of SceneReader will be deprecated begin
|
||||
local SceneReaderDeprecated = { }
|
||||
function SceneReaderDeprecated.sharedSceneReader()
|
||||
deprecatedTip("SceneReader:sharedSceneReader","ccs.SceneReader:getInstance")
|
||||
return ccs.SceneReader:getInstance()
|
||||
end
|
||||
rawset(SceneReader,"sharedSceneReader",SceneReaderDeprecated.sharedSceneReader)
|
||||
|
||||
function SceneReaderDeprecated.purgeSceneReader(self)
|
||||
deprecatedTip("SceneReader:purgeSceneReader","ccs.SceneReader:destroyInstance")
|
||||
return self:destroyInstance()
|
||||
end
|
||||
rawset(SceneReader,"purgeSceneReader",SceneReaderDeprecated.purgeSceneReader)
|
||||
--functions of SceneReader will be deprecated end
|
||||
|
||||
|
||||
--functions of ccs.GUIReader will be deprecated begin
|
||||
local CCSGUIReaderDeprecated = { }
|
||||
function CCSGUIReaderDeprecated.purgeGUIReader()
|
||||
deprecatedTip("ccs.GUIReader:purgeGUIReader","ccs.GUIReader:destroyInstance")
|
||||
return ccs.GUIReader:destroyInstance()
|
||||
end
|
||||
rawset(ccs.GUIReader,"purgeGUIReader",CCSGUIReaderDeprecated.purgeGUIReader)
|
||||
--functions of ccs.GUIReader will be deprecated end
|
||||
|
||||
--functions of ccs.ActionManagerEx will be deprecated begin
|
||||
local CCSActionManagerExDeprecated = { }
|
||||
function CCSActionManagerExDeprecated.destroyActionManager()
|
||||
deprecatedTip("ccs.ActionManagerEx:destroyActionManager","ccs.ActionManagerEx:destroyInstance")
|
||||
return ccs.ActionManagerEx:destroyInstance()
|
||||
end
|
||||
rawset(ccs.ActionManagerEx,"destroyActionManager",CCSActionManagerExDeprecated.destroyActionManager)
|
||||
--functions of ccs.ActionManagerEx will be deprecated end
|
||||
|
||||
--functions of ccs.SceneReader will be deprecated begin
|
||||
local CCSSceneReaderDeprecated = { }
|
||||
function CCSSceneReaderDeprecated.destroySceneReader(self)
|
||||
deprecatedTip("ccs.SceneReader:destroySceneReader","ccs.SceneReader:destroyInstance")
|
||||
return self:destroyInstance()
|
||||
end
|
||||
rawset(ccs.SceneReader,"destroySceneReader",CCSSceneReaderDeprecated.destroySceneReader)
|
||||
--functions of ccs.SceneReader will be deprecated end
|
||||
|
||||
--functions of CCArmatureDataManager will be deprecated begin
|
||||
local CCArmatureDataManagerDeprecated = { }
|
||||
function CCArmatureDataManagerDeprecated.sharedArmatureDataManager()
|
||||
deprecatedTip("CCArmatureDataManager:sharedArmatureDataManager","ccs.ArmatureDataManager:getInstance")
|
||||
return ccs.ArmatureDataManager:getInstance()
|
||||
end
|
||||
rawset(CCArmatureDataManager,"sharedArmatureDataManager",CCArmatureDataManagerDeprecated.sharedArmatureDataManager)
|
||||
|
||||
function CCArmatureDataManagerDeprecated.purge()
|
||||
deprecatedTip("CCArmatureDataManager:purge","ccs.ArmatureDataManager:destoryInstance")
|
||||
return ccs.ArmatureDataManager:destoryInstance()
|
||||
end
|
||||
rawset(CCArmatureDataManager,"purge",CCArmatureDataManagerDeprecated.purge)
|
||||
--functions of CCArmatureDataManager will be deprecated end
|
|
@ -55,14 +55,6 @@ end
|
|||
_G["CCEaseInOut"] = DeprecatedClass.CCEaseInOut()
|
||||
--CCEaseInOut class will be Deprecated,end
|
||||
|
||||
--SimpleAudioEngine class will be Deprecated,begin
|
||||
function DeprecatedClass.SimpleAudioEngine()
|
||||
deprecatedTip("SimpleAudioEngine","cc.SimpleAudioEngine")
|
||||
return cc.SimpleAudioEngine
|
||||
end
|
||||
_G["SimpleAudioEngine"] = DeprecatedClass.SimpleAudioEngine()
|
||||
--SimpleAudioEngine class will be Deprecated,end
|
||||
|
||||
--CCTransitionMoveInT class will be Deprecated,begin
|
||||
function DeprecatedClass.CCTransitionMoveInT()
|
||||
deprecatedTip("CCTransitionMoveInT","cc.TransitionMoveInT")
|
||||
|
@ -79,14 +71,6 @@ end
|
|||
_G["CCTransitionMoveInR"] = DeprecatedClass.CCTransitionMoveInR()
|
||||
--CCTransitionMoveInR class will be Deprecated,end
|
||||
|
||||
--CCControlHuePicker class will be Deprecated,begin
|
||||
function DeprecatedClass.CCControlHuePicker()
|
||||
deprecatedTip("CCControlHuePicker","cc.ControlHuePicker")
|
||||
return cc.ControlHuePicker
|
||||
end
|
||||
_G["CCControlHuePicker"] = DeprecatedClass.CCControlHuePicker()
|
||||
--CCControlHuePicker class will be Deprecated,end
|
||||
|
||||
--CCParticleSnow class will be Deprecated,begin
|
||||
function DeprecatedClass.CCParticleSnow()
|
||||
deprecatedTip("CCParticleSnow","cc.ParticleSnow")
|
||||
|
@ -143,14 +127,6 @@ end
|
|||
_G["CCTransitionRotoZoom"] = DeprecatedClass.CCTransitionRotoZoom()
|
||||
--CCTransitionRotoZoom class will be Deprecated,end
|
||||
|
||||
--CCControlColourPicker class will be Deprecated,begin
|
||||
function DeprecatedClass.CCControlColourPicker()
|
||||
deprecatedTip("CCControlColourPicker","cc.ControlColourPicker")
|
||||
return cc.ControlColourPicker
|
||||
end
|
||||
_G["CCControlColourPicker"] = DeprecatedClass.CCControlColourPicker()
|
||||
--CCControlColourPicker class will be Deprecated,end
|
||||
|
||||
--CCDirector class will be Deprecated,begin
|
||||
function DeprecatedClass.CCDirector()
|
||||
deprecatedTip("CCDirector","cc.Director")
|
||||
|
@ -320,14 +296,6 @@ end
|
|||
_G["CCTransitionFlipAngular"] = DeprecatedClass.CCTransitionFlipAngular()
|
||||
--CCTransitionFlipAngular class will be Deprecated,end
|
||||
|
||||
--CCControl class will be Deprecated,begin
|
||||
function DeprecatedClass.CCControl()
|
||||
deprecatedTip("CCControl","cc.Control")
|
||||
return cc.Control
|
||||
end
|
||||
_G["CCControl"] = DeprecatedClass.CCControl()
|
||||
--CCControl class will be Deprecated,end
|
||||
|
||||
--CCEaseElasticInOut class will be Deprecated,begin
|
||||
function DeprecatedClass.CCEaseElasticInOut()
|
||||
deprecatedTip("CCEaseElasticInOut","cc.EaseElasticInOut")
|
||||
|
@ -352,14 +320,6 @@ end
|
|||
_G["CCShow"] = DeprecatedClass.CCShow()
|
||||
--CCShow class will be Deprecated,end
|
||||
|
||||
--CCEditBox class will be Deprecated,begin
|
||||
function DeprecatedClass.CCEditBox()
|
||||
deprecatedTip("CCEditBox","cc.EditBox")
|
||||
return cc.EditBox
|
||||
end
|
||||
_G["CCEditBox"] = DeprecatedClass.CCEditBox()
|
||||
--CCEditBox class will be Deprecated,end
|
||||
|
||||
--CCFadeOut class will be Deprecated,begin
|
||||
function DeprecatedClass.CCFadeOut()
|
||||
deprecatedTip("CCFadeOut","cc.FadeOut")
|
||||
|
@ -496,14 +456,6 @@ end
|
|||
_G["CCApplication"] = DeprecatedClass.CCApplication()
|
||||
--CCApplication class will be Deprecated,end
|
||||
|
||||
--CCControlSlider class will be Deprecated,begin
|
||||
function DeprecatedClass.CCControlSlider()
|
||||
deprecatedTip("CCControlSlider","cc.ControlSlider")
|
||||
return cc.ControlSlider
|
||||
end
|
||||
_G["CCControlSlider"] = DeprecatedClass.CCControlSlider()
|
||||
--CCControlSlider class will be Deprecated,end
|
||||
|
||||
--CCDelayTime class will be Deprecated,begin
|
||||
function DeprecatedClass.CCDelayTime()
|
||||
deprecatedTip("CCDelayTime","cc.DelayTime")
|
||||
|
@ -528,14 +480,6 @@ end
|
|||
_G["CCLabelBMFont"] = DeprecatedClass.CCLabelBMFont()
|
||||
--CCLabelBMFont class will be Deprecated,end
|
||||
|
||||
--CCScale9Sprite class will be Deprecated,begin
|
||||
function DeprecatedClass.CCScale9Sprite()
|
||||
deprecatedTip("CCScale9Sprite","cc.Scale9Sprite")
|
||||
return cc.Scale9Sprite
|
||||
end
|
||||
_G["CCScale9Sprite"] = DeprecatedClass.CCScale9Sprite()
|
||||
--CCScale9Sprite class will be Deprecated,end
|
||||
|
||||
--CCFadeOutTRTiles class will be Deprecated,begin
|
||||
function DeprecatedClass.CCFadeOutTRTiles()
|
||||
deprecatedTip("CCFadeOutTRTiles","cc.FadeOutTRTiles")
|
||||
|
@ -560,14 +504,6 @@ end
|
|||
_G["CCParticleSpiral"] = DeprecatedClass.CCParticleSpiral()
|
||||
--CCParticleSpiral class will be Deprecated,end
|
||||
|
||||
--CCBReader class will be Deprecated,begin
|
||||
function DeprecatedClass.CCBReader()
|
||||
deprecatedTip("CCBReader","cc.BReader")
|
||||
return cc.BReader
|
||||
end
|
||||
_G["CCBReader"] = DeprecatedClass.CCBReader()
|
||||
--CCBReader class will be Deprecated,end
|
||||
|
||||
--CCFiniteTimeAction class will be Deprecated,begin
|
||||
function DeprecatedClass.CCFiniteTimeAction()
|
||||
deprecatedTip("CCFiniteTimeAction","cc.FiniteTimeAction")
|
||||
|
@ -704,14 +640,6 @@ end
|
|||
_G["CCFadeTo"] = DeprecatedClass.CCFadeTo()
|
||||
--CCFadeTo class will be Deprecated,end
|
||||
|
||||
--CCBAnimationManager class will be Deprecated,begin
|
||||
function DeprecatedClass.CCBAnimationManager()
|
||||
deprecatedTip("CCBAnimationManager","cc.BAnimationManager")
|
||||
return cc.BAnimationManager
|
||||
end
|
||||
_G["CCBAnimationManager"] = DeprecatedClass.CCBAnimationManager()
|
||||
--CCBAnimationManager class will be Deprecated,end
|
||||
|
||||
--CCRepeatForever class will be Deprecated,begin
|
||||
function DeprecatedClass.CCRepeatForever()
|
||||
deprecatedTip("CCRepeatForever","cc.RepeatForever")
|
||||
|
@ -728,14 +656,6 @@ end
|
|||
_G["CCPlace"] = DeprecatedClass.CCPlace()
|
||||
--CCPlace class will be Deprecated,end
|
||||
|
||||
--CCScrollView class will be Deprecated,begin
|
||||
function DeprecatedClass.CCScrollView()
|
||||
deprecatedTip("CCScrollView","cc.ScrollView")
|
||||
return cc.ScrollView
|
||||
end
|
||||
_G["CCScrollView"] = DeprecatedClass.CCScrollView()
|
||||
--CCScrollView class will be Deprecated,end
|
||||
|
||||
|
||||
--CCGLProgram class will be Deprecated,begin
|
||||
function DeprecatedClass.CCGLProgram()
|
||||
|
@ -817,15 +737,6 @@ end
|
|||
_G["CCParticleFlower"] = DeprecatedClass.CCParticleFlower()
|
||||
--CCParticleFlower class will be Deprecated,end
|
||||
|
||||
--CCTableView class will be Deprecated,begin
|
||||
function DeprecatedClass.CCTableView()
|
||||
deprecatedTip("CCTableView","cc.TableView")
|
||||
return cc.TableView
|
||||
end
|
||||
_G["CCTableView"] = DeprecatedClass.CCTableView()
|
||||
--CCTableView class will be Deprecated,end
|
||||
|
||||
|
||||
--CCParticleSmoke class will be Deprecated,begin
|
||||
function DeprecatedClass.CCParticleSmoke()
|
||||
deprecatedTip("CCParticleSmoke","cc.ParticleSmoke")
|
||||
|
@ -1194,14 +1105,6 @@ end
|
|||
_G["CCTransitionZoomFlipX"] = DeprecatedClass.CCTransitionZoomFlipX()
|
||||
--CCTransitionZoomFlipX class will be Deprecated,end
|
||||
|
||||
--CCControlPotentiometer class will be Deprecated,begin
|
||||
function DeprecatedClass.CCControlPotentiometer()
|
||||
deprecatedTip("CCControlPotentiometer","cc.ControlPotentiometer")
|
||||
return cc.ControlPotentiometer
|
||||
end
|
||||
_G["CCControlPotentiometer"] = DeprecatedClass.CCControlPotentiometer()
|
||||
--CCControlPotentiometer class will be Deprecated,end
|
||||
|
||||
--CCScaleBy class will be Deprecated,begin
|
||||
function DeprecatedClass.CCScaleBy()
|
||||
deprecatedTip("CCScaleBy","cc.ScaleBy")
|
||||
|
@ -1338,14 +1241,6 @@ end
|
|||
_G["CCBezierTo"] = DeprecatedClass.CCBezierTo()
|
||||
--CCBezierTo class will be Deprecated,end
|
||||
|
||||
--CCControlButton class will be Deprecated,begin
|
||||
function DeprecatedClass.CCControlButton()
|
||||
deprecatedTip("CCControlButton","cc.ControlButton")
|
||||
return cc.ControlButton
|
||||
end
|
||||
_G["CCControlButton"] = DeprecatedClass.CCControlButton()
|
||||
--CCControlButton class will be Deprecated,end
|
||||
|
||||
--CCFollow class will be Deprecated,begin
|
||||
function DeprecatedClass.CCFollow()
|
||||
deprecatedTip("CCFollow","cc.Follow")
|
||||
|
@ -1498,14 +1393,6 @@ end
|
|||
_G["CCSplitRows"] = DeprecatedClass.CCSplitRows()
|
||||
--CCSplitRows class will be Deprecated,end
|
||||
|
||||
--CCControlStepper class will be Deprecated,begin
|
||||
function DeprecatedClass.CCControlStepper()
|
||||
deprecatedTip("CCControlStepper","cc.ControlStepper")
|
||||
return cc.ControlStepper
|
||||
end
|
||||
_G["CCControlStepper"] = DeprecatedClass.CCControlStepper()
|
||||
--CCControlStepper class will be Deprecated,end
|
||||
|
||||
--CCSprite class will be Deprecated,begin
|
||||
function DeprecatedClass.CCSprite()
|
||||
deprecatedTip("CCSprite","cc.Sprite")
|
||||
|
@ -1610,14 +1497,6 @@ end
|
|||
_G["CCRemoveSelf"] = DeprecatedClass.CCRemoveSelf()
|
||||
--CCRemoveSelf class will be Deprecated,end
|
||||
|
||||
--CCControlSaturationBrightnessPicker class will be Deprecated,begin
|
||||
function DeprecatedClass.CCControlSaturationBrightnessPicker()
|
||||
deprecatedTip("CCControlSaturationBrightnessPicker","cc.ControlSaturationBrightnessPicker")
|
||||
return cc.ControlSaturationBrightnessPicker
|
||||
end
|
||||
_G["CCControlSaturationBrightnessPicker"] = DeprecatedClass.CCControlSaturationBrightnessPicker()
|
||||
--CCControlSaturationBrightnessPicker class will be Deprecated,end
|
||||
|
||||
--CCLabelTTF class will be Deprecated,begin
|
||||
function DeprecatedClass.CCLabelTTF()
|
||||
deprecatedTip("CCLabelTTF","cc.LabelTTF")
|
||||
|
@ -1786,14 +1665,6 @@ end
|
|||
_G["CCTransitionSlideInL"] = DeprecatedClass.CCTransitionSlideInL()
|
||||
--CCTransitionSlideInL class will be Deprecated,end
|
||||
|
||||
--CCControlSwitch class will be Deprecated,begin
|
||||
function DeprecatedClass.CCControlSwitch()
|
||||
deprecatedTip("CCControlSwitch","cc.ControlSwitch")
|
||||
return cc.ControlSwitch
|
||||
end
|
||||
_G["CCControlSwitch"] = DeprecatedClass.CCControlSwitch()
|
||||
--CCControlSwitch class will be Deprecated,end
|
||||
|
||||
--CCWavesTiles3D class will be Deprecated,begin
|
||||
function DeprecatedClass.CCWavesTiles3D()
|
||||
deprecatedTip("CCWavesTiles3D","cc.WavesTiles3D")
|
||||
|
@ -1834,302 +1705,6 @@ end
|
|||
_G["CCCallFuncN"] = DeprecatedClass.CCCallFuncN()
|
||||
--CCCallFuncN class will be Deprecated,end
|
||||
|
||||
--CCArmature class will be Deprecated,begin
|
||||
function DeprecatedClass.CCArmature()
|
||||
deprecatedTip("CCArmature","ccs.Armature")
|
||||
return ccs.Armature
|
||||
end
|
||||
_G["CCArmature"] = DeprecatedClass.CCArmature()
|
||||
--CCArmature class will be Deprecated,end
|
||||
|
||||
--CCArmatureAnimation class will be Deprecated,begin
|
||||
function DeprecatedClass.CCArmatureAnimation()
|
||||
deprecatedTip("CCArmatureAnimation","ccs.ArmatureAnimation")
|
||||
return ccs.ArmatureAnimation
|
||||
end
|
||||
_G["CCArmatureAnimation"] = DeprecatedClass.CCArmatureAnimation()
|
||||
--CCArmatureAnimation class will be Deprecated,end
|
||||
|
||||
--CCSkin class will be Deprecated,begin
|
||||
function DeprecatedClass.CCSkin()
|
||||
deprecatedTip("CCSkin","ccs.Skin")
|
||||
return ccs.Skin
|
||||
end
|
||||
_G["CCSkin"] = DeprecatedClass.CCSkin()
|
||||
--CCSkin class will be Deprecated,end
|
||||
|
||||
--CCBone class will be Deprecated,begin
|
||||
function DeprecatedClass.CCBone()
|
||||
deprecatedTip("CCBone","ccs.Bone")
|
||||
return ccs.Bone
|
||||
end
|
||||
_G["CCBone"] = DeprecatedClass.CCBone()
|
||||
--CCBone class will be Deprecated,end
|
||||
|
||||
--CCArmatureDataManager class will be Deprecated,begin
|
||||
function DeprecatedClass.CCArmatureDataManager()
|
||||
deprecatedTip("CCArmatureDataManager","ccs.ArmatureDataManager")
|
||||
return ccs.ArmatureDataManager
|
||||
end
|
||||
_G["CCArmatureDataManager"] = DeprecatedClass.CCArmatureDataManager()
|
||||
--CCArmatureDataManager class will be Deprecated,end
|
||||
|
||||
--CCBatchNode class will be Deprecated,begin
|
||||
function DeprecatedClass.CCBatchNode()
|
||||
deprecatedTip("CCBatchNode","ccs.BatchNode")
|
||||
return ccs.BatchNode
|
||||
end
|
||||
_G["CCBatchNode"] = DeprecatedClass.CCBatchNode()
|
||||
--CCBatchNode class will be Deprecated,end
|
||||
|
||||
--CCTween class will be Deprecated,begin
|
||||
function DeprecatedClass.CCTween()
|
||||
deprecatedTip("CCTween","ccs.Tween")
|
||||
return ccs.Tween
|
||||
end
|
||||
_G["CCTween"] = DeprecatedClass.CCTween()
|
||||
--CCTween class will be Deprecated,end
|
||||
|
||||
--CCBaseData class will be Deprecated,begin
|
||||
function DeprecatedClass.CCBaseData()
|
||||
deprecatedTip("CCBaseData","ccs.BaseData")
|
||||
return ccs.BaseData
|
||||
end
|
||||
_G["CCBaseData"] = DeprecatedClass.CCBaseData()
|
||||
--CCBaseData class will be Deprecated,end
|
||||
|
||||
--CCDisplayManager class will be Deprecated,begin
|
||||
function DeprecatedClass.CCDisplayManager()
|
||||
deprecatedTip("CCDisplayManager","ccs.DisplayManager")
|
||||
return ccs.DisplayManager
|
||||
end
|
||||
_G["CCDisplayManager"] = DeprecatedClass.CCDisplayManager()
|
||||
--CCDisplayManager class will be Deprecated,end
|
||||
|
||||
--UIHelper class will be Deprecated,begin
|
||||
function DeprecatedClass.UIHelper()
|
||||
deprecatedTip("UIHelper","ccs.UIHelper")
|
||||
return ccs.UIHelper
|
||||
end
|
||||
_G["UIHelper"] = DeprecatedClass.UIHelper()
|
||||
--UIHelper class will be Deprecated,end
|
||||
|
||||
--UILayout class will be Deprecated,begin
|
||||
function DeprecatedClass.UILayout()
|
||||
deprecatedTip("UILayout","ccs.UILayout")
|
||||
return ccs.UILayout
|
||||
end
|
||||
_G["UILayout"] = DeprecatedClass.UILayout()
|
||||
--UILayout class will be Deprecated,end
|
||||
|
||||
--UIWidget class will be Deprecated,begin
|
||||
function DeprecatedClass.UIWidget()
|
||||
deprecatedTip("UIWidget","ccs.UIWidget")
|
||||
return ccs.UIWidget
|
||||
end
|
||||
_G["UIWidget"] = DeprecatedClass.UIWidget()
|
||||
--UIWidget class will be Deprecated,end
|
||||
|
||||
--UILayer class will be Deprecated,begin
|
||||
function DeprecatedClass.UILayer()
|
||||
deprecatedTip("UILayer","ccs.UILayer")
|
||||
return ccs.UILayer
|
||||
end
|
||||
_G["UILayer"] = DeprecatedClass.UILayer()
|
||||
--UILayer class will be Deprecated,end
|
||||
|
||||
--UIButton class will be Deprecated,begin
|
||||
function DeprecatedClass.UIButton()
|
||||
deprecatedTip("UIButton","ccs.UIButton")
|
||||
return ccs.UIButton
|
||||
end
|
||||
_G["UIButton"] = DeprecatedClass.UIButton()
|
||||
--UIButton class will be Deprecated,end
|
||||
|
||||
--UICheckBox class will be Deprecated,begin
|
||||
function DeprecatedClass.UICheckBox()
|
||||
deprecatedTip("UICheckBox","ccs.UICheckBox")
|
||||
return ccs.UICheckBox
|
||||
end
|
||||
_G["UICheckBox"] = DeprecatedClass.UICheckBox()
|
||||
--UICheckBox class will be Deprecated,end
|
||||
|
||||
--UIImageView class will be Deprecated,begin
|
||||
function DeprecatedClass.UIImageView()
|
||||
deprecatedTip("UIImageView","ccs.UIImageView")
|
||||
return ccs.UIImageView
|
||||
end
|
||||
_G["UIImageView"] = DeprecatedClass.UIImageView()
|
||||
--UIImageView class will be Deprecated,end
|
||||
|
||||
--UILabel class will be Deprecated,begin
|
||||
function DeprecatedClass.UILabel()
|
||||
deprecatedTip("UILabel","ccs.UILabel")
|
||||
return ccs.UILabel
|
||||
end
|
||||
_G["UILabel"] = DeprecatedClass.UILabel()
|
||||
--UILabel class will be Deprecated,end
|
||||
|
||||
--UILabelAtlas class will be Deprecated,begin
|
||||
function DeprecatedClass.UILabelAtlas()
|
||||
deprecatedTip("UILabelAtlas","ccs.UILabelAtlas")
|
||||
return ccs.UILabelAtlas
|
||||
end
|
||||
_G["UILabelAtlas"] = DeprecatedClass.UILabelAtlas()
|
||||
--UILabelAtlas class will be Deprecated,end
|
||||
|
||||
--UILabelBMFont class will be Deprecated,begin
|
||||
function DeprecatedClass.UILabelBMFont()
|
||||
deprecatedTip("UILabelBMFont","ccs.UILabelBMFont")
|
||||
return ccs.UILabelBMFont
|
||||
end
|
||||
_G["UILabelBMFont"] = DeprecatedClass.UILabelBMFont()
|
||||
--UILabelBMFont class will be Deprecated,end
|
||||
|
||||
--UILoadingBar class will be Deprecated,begin
|
||||
function DeprecatedClass.UILoadingBar()
|
||||
deprecatedTip("UILoadingBar","ccs.UILoadingBar")
|
||||
return ccs.UILoadingBar
|
||||
end
|
||||
_G["UILoadingBar"] = DeprecatedClass.UILoadingBar()
|
||||
--UILoadingBar class will be Deprecated,end
|
||||
|
||||
--UISlider class will be Deprecated,begin
|
||||
function DeprecatedClass.UISlider()
|
||||
deprecatedTip("UISlider","ccs.UISlider")
|
||||
return ccs.UISlider
|
||||
end
|
||||
_G["UISlider"] = DeprecatedClass.UISlider()
|
||||
--UISlider class will be Deprecated,end
|
||||
|
||||
--UITextField class will be Deprecated,begin
|
||||
function DeprecatedClass.UITextField()
|
||||
deprecatedTip("UITextField","ccs.UITextField")
|
||||
return ccs.UITextField
|
||||
end
|
||||
_G["UITextField"] = DeprecatedClass.UITextField()
|
||||
--UITextField class will be Deprecated,end
|
||||
|
||||
--UIScrollView class will be Deprecated,begin
|
||||
function DeprecatedClass.UIScrollView()
|
||||
deprecatedTip("UIScrollView","ccs.UIScrollView")
|
||||
return ccs.UIScrollView
|
||||
end
|
||||
_G["UIScrollView"] = DeprecatedClass.UIScrollView()
|
||||
--UIScrollView class will be Deprecated,end
|
||||
|
||||
--UIPageView class will be Deprecated,begin
|
||||
function DeprecatedClass.UIPageView()
|
||||
deprecatedTip("UIPageView","ccs.UIPageView")
|
||||
return ccs.UIPageView
|
||||
end
|
||||
_G["UIPageView"] = DeprecatedClass.UIPageView()
|
||||
--UIPageView class will be Deprecated,end
|
||||
|
||||
--UIListView class will be Deprecated,begin
|
||||
function DeprecatedClass.UIListView()
|
||||
deprecatedTip("UIListView","ccs.UIListView")
|
||||
return ccs.UIListView
|
||||
end
|
||||
_G["UIListView"] = DeprecatedClass.UIListView()
|
||||
--UIListView class will be Deprecated,end
|
||||
|
||||
--UILayoutParameter class will be Deprecated,begin
|
||||
function DeprecatedClass.UILayoutParameter()
|
||||
deprecatedTip("UILayoutParameter","ccs.UILayoutParameter")
|
||||
return ccs.UILayoutParameter
|
||||
end
|
||||
_G["UILayoutParameter"] = DeprecatedClass.UILayoutParameter()
|
||||
--UILayoutParameter class will be Deprecated,end
|
||||
|
||||
--UILinearLayoutParameter class will be Deprecated,begin
|
||||
function DeprecatedClass.UILinearLayoutParameter()
|
||||
deprecatedTip("UILinearLayoutParameter","ccs.UILinearLayoutParameter")
|
||||
return ccs.UILinearLayoutParameter
|
||||
end
|
||||
_G["UILinearLayoutParameter"] = DeprecatedClass.UILinearLayoutParameter()
|
||||
--UILinearLayoutParameter class will be Deprecated,end
|
||||
|
||||
--UIRelativeLayoutParameter class will be Deprecated,begin
|
||||
function DeprecatedClass.UIRelativeLayoutParameter()
|
||||
deprecatedTip("UIRelativeLayoutParameter","ccs.UIRelativeLayoutParameter")
|
||||
return ccs.UIRelativeLayoutParameter
|
||||
end
|
||||
_G["UIRelativeLayoutParameter"] = DeprecatedClass.UIRelativeLayoutParameter()
|
||||
--UIRelativeLayoutParameter class will be Deprecated,end
|
||||
|
||||
--CCComController class will be Deprecated,begin
|
||||
function DeprecatedClass.CCComController()
|
||||
deprecatedTip("CCComController","ccs.ComController")
|
||||
return ccs.CCComController
|
||||
end
|
||||
_G["CCComController"] = DeprecatedClass.CCComController()
|
||||
--CCComController class will be Deprecated,end
|
||||
|
||||
--CCComAudio class will be Deprecated,begin
|
||||
function DeprecatedClass.CCComAudio()
|
||||
deprecatedTip("CCComAudio","ccs.ComAudio")
|
||||
return ccs.ComAudio
|
||||
end
|
||||
_G["CCComAudio"] = DeprecatedClass.CCComAudio()
|
||||
--CCComAudio class will be Deprecated,end
|
||||
|
||||
--CCComAttribute class will be Deprecated,begin
|
||||
function DeprecatedClass.CCComAttribute()
|
||||
deprecatedTip("CCComAttribute","ccs.ComAttribute")
|
||||
return ccs.ComAttribute
|
||||
end
|
||||
_G["CCComAttribute"] = DeprecatedClass.CCComAttribute()
|
||||
--CCComAttribute class will be Deprecated,end
|
||||
|
||||
--CCComRender class will be Deprecated,begin
|
||||
function DeprecatedClass.CCComRender()
|
||||
deprecatedTip("CCComRender","ccs.ComRender")
|
||||
return ccs.ComRender
|
||||
end
|
||||
_G["CCComRender"] = DeprecatedClass.CCComRender()
|
||||
--CCComRender class will be Deprecated,end
|
||||
|
||||
--ActionManager class will be Deprecated,begin
|
||||
function DeprecatedClass.ActionManager()
|
||||
deprecatedTip("ActionManager","ccs.ActionManagerEx")
|
||||
return ccs.ActionManagerEx
|
||||
end
|
||||
_G["ActionManager"] = DeprecatedClass.ActionManager()
|
||||
--CCComRender class will be Deprecated,end
|
||||
|
||||
--SceneReader class will be Deprecated,begin
|
||||
function DeprecatedClass.SceneReader()
|
||||
deprecatedTip("SceneReader","ccs.SceneReader")
|
||||
return ccs.SceneReader
|
||||
end
|
||||
_G["SceneReader"] = DeprecatedClass.SceneReader()
|
||||
--SceneReader class will be Deprecated,end
|
||||
|
||||
--GUIReader class will be Deprecated,begin
|
||||
function DeprecatedClass.GUIReader()
|
||||
deprecatedTip("GUIReader","ccs.GUIReader")
|
||||
return ccs.GUIReader
|
||||
end
|
||||
_G["GUIReader"] = DeprecatedClass.GUIReader()
|
||||
--GUIReader class will be Deprecated,end
|
||||
|
||||
--UIRootWidget class will be Deprecated,begin
|
||||
function DeprecatedClass.UIRootWidget()
|
||||
deprecatedTip("UIRootWidget","ccs.UIRootWidget")
|
||||
return ccs.UIRootWidget
|
||||
end
|
||||
_G["UIRootWidget"] = DeprecatedClass.UIRootWidget()
|
||||
--UIRootWidget class will be Deprecated,end
|
||||
|
||||
--ActionObject class will be Deprecated,begin
|
||||
function DeprecatedClass.ActionObject()
|
||||
deprecatedTip("ActionObject","ccs.ActionObject")
|
||||
return ccs.ActionObject
|
||||
end
|
||||
_G["ActionObject"] = DeprecatedClass.ActionObject()
|
||||
--ActionObject class will be Deprecated,end
|
||||
|
||||
--CCEGLViewProtocol class will be Deprecated,begin
|
||||
function DeprecatedClass.CCEGLViewProtocol()
|
||||
deprecatedTip("CCEGLViewProtocol","cc.GLViewProtocol")
|
||||
|
@ -2147,22 +1722,6 @@ end
|
|||
_G["CCEGLView"] = DeprecatedClass.CCEGLView()
|
||||
--CCEGLView class will be Deprecated,end
|
||||
|
||||
--CCBProxy class will be Deprecated,begin
|
||||
function DeprecatedClass.CCBProxy()
|
||||
deprecatedTip("CCBProxy","cc.CCBProxy")
|
||||
return cc.CCBProxy
|
||||
end
|
||||
_G["CCBProxy"] = DeprecatedClass.CCBProxy()
|
||||
--CCBProxy class will be Deprecated,end
|
||||
|
||||
--WebSocket class will be Deprecated,begin
|
||||
function DeprecatedClass.WebSocket()
|
||||
deprecatedTip("WebSocket","cc.WebSocket")
|
||||
return cc.WebSocket
|
||||
end
|
||||
_G["WebSocket"] = DeprecatedClass.WebSocket()
|
||||
--WebSocket class will be Deprecated,end
|
||||
|
||||
--XMLHttpRequest class will be Deprecated,begin
|
||||
function DeprecatedClass.XMLHttpRequest()
|
||||
deprecatedTip("XMLHttpRequest","cc.XMLHttpRequest")
|
|
@ -1,7 +1,5 @@
|
|||
require "Cocos2dConstants.lua"
|
||||
require "OpenglConstants.lua"
|
||||
require "StudioConstants.lua"
|
||||
require "GuiConstants.lua"
|
||||
--Enums will be deprecated,begin
|
||||
_G.kCCTextAlignmentLeft = cc.TEXT_ALIGNMENT_LEFT
|
||||
_G.kCCTextAlignmentRight = cc.TEXT_ALIGNMENT_RIGHT
|
||||
|
@ -55,9 +53,6 @@ _G.kCCTMXTileVerticalFlag = cc.TMX_TILE_VERTICAL_FLAG
|
|||
_G.kCCTMXTileDiagonalFlag = cc.TMX_TILE_DIAGONAL_FLAG
|
||||
_G.kCCFlipedAll = cc.FLIPED_ALL
|
||||
_G.kCCFlippedMask = cc.FLIPPED_MASK
|
||||
_G.kCCControlStepperPartMinus = cc.CONTROL_STEPPER_PART_MINUS
|
||||
_G.kCCControlStepperPartPlus = cc.CONTROL_STEPPER_PART_PLUS
|
||||
_G.kCCControlStepperPartNone = cc.CONTROL_STEPPER_PART_NONE
|
||||
|
||||
_G.kLanguageEnglish = cc.LANGUAGE_ENGLISH
|
||||
_G.kLanguageChinese = cc.LANGUAGE_CHINESE
|
||||
|
@ -373,124 +368,3 @@ _G.GL_ALPHA = gl.ALPHA
|
|||
_G.GL_CURRENT_VERTEX_ATTRIB = gl.CURRENT_VERTEX_ATTRIB
|
||||
_G.GL_SCISSOR_TEST = gl.SCISSOR_TEST
|
||||
_G.GL_TRIANGLES = gl.TRIANGLES
|
||||
|
||||
_G.CCControlEventTouchDown = cc.CONTROL_EVENTTYPE_TOUCH_DOWN
|
||||
_G.CCControlEventTouchDragInside = cc.CONTROL_EVENTTYPE_DRAG_INSIDE
|
||||
_G.CCControlEventTouchDragOutside = cc.CONTROL_EVENTTYPE_DRAG_OUTSIDE
|
||||
_G.CCControlEventTouchDragEnter = cc.CONTROL_EVENTTYPE_DRAG_ENTER
|
||||
_G.CCControlEventTouchDragExit = cc.CONTROL_EVENTTYPE_DRAG_EXIT
|
||||
_G.CCControlEventTouchUpInside = cc.CONTROL_EVENTTYPE_TOUCH_UP_INSIDE
|
||||
_G.CCControlEventTouchUpOutside = cc.CONTROL_EVENTTYPE_TOUCH_UP_OUTSIDE
|
||||
_G.CCControlEventTouchCancel = cc.CONTROL_EVENTTYPE_TOUCH_CANCEL
|
||||
_G.CCControlEventValueChanged = cc.CONTROL_EVENTTYPE_VALUE_CHANGED
|
||||
_G.CCControlStateNormal = cc.CONTROL_STATE_NORMAL
|
||||
_G.CCControlStateHighlighted = cc.CONTROL_STATE_HIGH_LIGHTED
|
||||
_G.CCControlStateDisabled = cc.CONTROL_STATE_DISABLED
|
||||
_G.CCControlStateSelected = cc.CONTROL_STATE_SELECTED
|
||||
|
||||
_G.kWebSocketScriptHandlerOpen = cc.WEBSOCKET_OPEN
|
||||
_G.kWebSocketScriptHandlerMessage = cc.WEBSOCKET_MESSAGE
|
||||
_G.kWebSocketScriptHandlerClose = cc.WEBSOCKET_CLOSE
|
||||
_G.kWebSocketScriptHandlerError = cc.WEBSOCKET_ERROR
|
||||
|
||||
_G.kStateConnecting = cc.WEBSOCKET_STATE_CONNECTING
|
||||
_G.kStateOpen = cc.WEBSOCKET_STATE_OPEN
|
||||
_G.kStateClosing = cc.WEBSOCKET_STATE_CLOSING
|
||||
_G.kStateClosed = cc.WEBSOCKET_STATE_CLOSED
|
||||
|
||||
_G.LAYOUT_COLOR_NONE = ccui.LayoutBackGroundColorType.none
|
||||
_G.LAYOUT_COLOR_SOLID = ccui.LayoutBackGroundColorType.solid
|
||||
_G.LAYOUT_COLOR_GRADIENT = ccui.LayoutBackGroundColorType.gradient
|
||||
|
||||
_G.LAYOUT_ABSOLUTE = ccui.LayoutType.ABSOLUTE
|
||||
_G.LAYOUT_LINEAR_VERTICAL = ccui.LayoutType.VERTICAL
|
||||
_G.LAYOUT_LINEAR_HORIZONTAL = ccui.LayoutType.HORIZONTAL
|
||||
_G.LAYOUT_RELATIVE = ccui.LayoutType.RELATIVE
|
||||
|
||||
_G.BRIGHT_NONE = ccui.BrightStyle.none
|
||||
_G.BRIGHT_NORMAL = ccui.BrightStyle.normal
|
||||
_G.BRIGHT_HIGHLIGHT = ccui.BrightStyle.highlight
|
||||
|
||||
_G.UI_TEX_TYPE_LOCAL = ccui.TextureResType.localType
|
||||
_G.UI_TEX_TYPE_PLIST = ccui.TextureResType.plistType
|
||||
|
||||
_G.TOUCH_EVENT_BEGAN = ccui.TouchEventType.began
|
||||
_G.TOUCH_EVENT_MOVED = ccui.TouchEventType.moved
|
||||
_G.TOUCH_EVENT_ENDED = ccui.TouchEventType.ended
|
||||
_G.TOUCH_EVENT_CANCELED = ccui.TouchEventType.canceled
|
||||
|
||||
_G.SIZE_ABSOLUTE = ccui.SizeType.absolute
|
||||
_G.SIZE_PERCENT = ccui.SizeType.percent
|
||||
|
||||
_G.POSITION_ABSOLUTE = ccui.PositionType.absolute
|
||||
_G.POSITION_PERCENT = ccui.PositionType.percent
|
||||
|
||||
_G.CHECKBOX_STATE_EVENT_SELECTED = ccui.CheckBoxEventType.selected
|
||||
_G.CHECKBOX_STATE_EVENT_UNSELECTED = ccui.CheckBoxEventType.unselected
|
||||
|
||||
_G.CHECKBOX_STATE_EVENT_SELECTED = ccui.CheckBoxEventType.selected
|
||||
_G.CHECKBOX_STATE_EVENT_UNSELECTED = ccui.CheckBoxEventType.unselected
|
||||
|
||||
_G.LoadingBarTypeLeft = ccui.LoadingBarDirection.LEFT
|
||||
_G.LoadingBarTypeRight = ccui.LoadingBarDirection.RIGHT
|
||||
|
||||
_G.LoadingBarTypeRight = ccui.SliderEventType.percent_changed
|
||||
|
||||
_G.TEXTFIELD_EVENT_ATTACH_WITH_IME = ccui.TextFiledEventType.attach_with_ime
|
||||
_G.TEXTFIELD_EVENT_DETACH_WITH_IME = ccui.TextFiledEventType.detach_with_ime
|
||||
_G.TEXTFIELD_EVENT_INSERT_TEXT = ccui.TextFiledEventType.insert_text
|
||||
_G.TEXTFIELD_EVENT_DELETE_BACKWARD = ccui.TextFiledEventType.delete_backward
|
||||
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_TOP = ccui.ScrollViewDir.none
|
||||
_G.SCROLLVIEW_DIR_VERTICAL = ccui.ScrollViewDir.vertical
|
||||
_G.SCROLLVIEW_DIR_HORIZONTAL = ccui.ScrollViewDir.horizontal
|
||||
_G.SCROLLVIEW_DIR_BOTH = ccui.ScrollViewDir.both
|
||||
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_TOP = ccui.ScrollviewEventType.scrollToTop
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_BOTTOM = ccui.ScrollviewEventType.scrollToBottom
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_LEFT = ccui.ScrollviewEventType.scrollToLeft
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_RIGHT = ccui.ScrollviewEventType.scrollToRight
|
||||
_G.SCROLLVIEW_EVENT_SCROLLING = ccui.ScrollviewEventType.scrolling
|
||||
_G.SCROLLVIEW_EVENT_BOUNCE_TOP = ccui.ScrollviewEventType.bounceTop
|
||||
_G.SCROLLVIEW_EVENT_BOUNCE_BOTTOM = ccui.ScrollviewEventType.bounceBottom
|
||||
_G.SCROLLVIEW_EVENT_BOUNCE_LEFT = ccui.ScrollviewEventType.bounceLeft
|
||||
_G.SCROLLVIEW_EVENT_BOUNCE_RIGHT = ccui.ScrollviewEventType.bounceRight
|
||||
|
||||
_G.PAGEVIEW_EVENT_TURNING = ccui.PageViewEventType.turning
|
||||
|
||||
_G.PAGEVIEW_TOUCHLEFT = ccui.PVTouchDir.touch_left
|
||||
_G.PAGEVIEW_TOUCHRIGHT = ccui.PVTouchDir.touch_right
|
||||
|
||||
_G.LISTVIEW_DIR_NONE = ccui.ListViewDirection.none
|
||||
_G.LISTVIEW_DIR_VERTICAL = ccui.ListViewDirection.vertical
|
||||
_G.LISTVIEW_DIR_HORIZONTAL = ccui.ListViewDirection.horizontal
|
||||
|
||||
_G.LISTVIEW_MOVE_DIR_NONE = ccui.ListViewMoveDirection.none
|
||||
_G.LISTVIEW_MOVE_DIR_UP = ccui.ListViewMoveDirection.up
|
||||
_G.LISTVIEW_MOVE_DIR_DOWN = ccui.ListViewMoveDirection.down
|
||||
_G.LISTVIEW_MOVE_DIR_LEFT = ccui.ListViewMoveDirection.left
|
||||
_G.LISTVIEW_MOVE_DIR_RIGHT = ccui.ListViewMoveDirection.right
|
||||
|
||||
_G.LISTVIEW_EVENT_INIT_CHILD = ccui.ListViewEventType.init_child
|
||||
_G.LISTVIEW_EVENT_UPDATE_CHILD = ccui.ListViewEventType.update_child
|
||||
|
||||
_G.LAYOUT_PARAMETER_NONE = ccui.LayoutParameterType.none
|
||||
_G.LAYOUT_PARAMETER_LINEAR = ccui.LayoutParameterType.linear
|
||||
_G.LAYOUT_PARAMETER_RELATIVE = ccui.LayoutParameterType.relative
|
||||
|
||||
_G.kCCScrollViewDirectionHorizontal = cc.SCROLLVIEW_DIRECTION_HORIZONTAL
|
||||
_G.kCCScrollViewDirectionVertical = cc.SCROLLVIEW_DIRECTION_VERTICAL
|
||||
_G.kCCTableViewFillTopDown = cc.TABLEVIEW_FILL_TOPDOWN
|
||||
_G.kCCTableViewFillBottomUp = cc.TABLEVIEW_FILL_BOTTOMUP
|
||||
|
||||
ccui.LoadingBarType = ccui.LoadingBarDirection
|
||||
ccui.LoadingBarType.left = ccui.LoadingBarDirection.LEFT
|
||||
ccui.LoadingBarType.right = ccui.LoadingBarDirection.RIGHT
|
||||
|
||||
ccui.LayoutType.absolute = ccui.LayoutType.ABSOLUTE
|
||||
ccui.LayoutType.linearVertical = ccui.LayoutType.VERTICAL
|
||||
ccui.LayoutType.linearHorizontal = ccui.LayoutType.HORIZONTAL
|
||||
ccui.LayoutType.relative = ccui.LayoutType.RELATIVE
|
||||
|
||||
ccui.ListViewEventType.onsSelectedItem = ccui.ListViewEventType.ONSELECTEDITEM_START
|
||||
|
|
@ -113,22 +113,6 @@ end
|
|||
rawset(CCFileUtils,"purgeFileUtils",CCFileUtilsDeprecated.purgeFileUtils)
|
||||
--functions of CCFileUtils will be deprecated end
|
||||
|
||||
|
||||
--functions of SimpleAudioEngine will be deprecated begin
|
||||
local SimpleAudioEngineDeprecated = { }
|
||||
function SimpleAudioEngineDeprecated.sharedEngine()
|
||||
deprecatedTip("SimpleAudioEngine:sharedEngine","SimpleAudioEngine:getInstance")
|
||||
return cc.SimpleAudioEngine:getInstance()
|
||||
end
|
||||
rawset(SimpleAudioEngine,"sharedEngine",SimpleAudioEngineDeprecated.sharedEngine)
|
||||
|
||||
function SimpleAudioEngineDeprecated.playBackgroundMusic(self,...)
|
||||
deprecatedTip("SimpleAudioEngine:playBackgroundMusic","SimpleAudioEngine:playMusic")
|
||||
return self:playMusic(...)
|
||||
end
|
||||
rawset(SimpleAudioEngine,"playBackgroundMusic",SimpleAudioEngineDeprecated.playBackgroundMusic)
|
||||
--functions of SimpleAudioEngine will be deprecated end
|
||||
|
||||
--functions of CCMenu will be deprecated begin
|
||||
local CCMenuDeprecated = { }
|
||||
function CCMenuDeprecated.createWithItem(self,...)
|
||||
|
@ -690,32 +674,7 @@ local function tex2(u,v)
|
|||
deprecatedTip("tex2(u,v)","cc.tex2f(u,v)")
|
||||
return cc.tex2f(u,v)
|
||||
end
|
||||
rawset(_G,"tex2",tex2)
|
||||
|
||||
--functions of CCControl will be deprecated end
|
||||
local CCControlDeprecated = { }
|
||||
function CCControlDeprecated.addHandleOfControlEvent(self,func,controlEvent)
|
||||
deprecatedTip("addHandleOfControlEvent","registerControlEventHandler")
|
||||
print("come in addHandleOfControlEvent")
|
||||
self:registerControlEventHandler(func,controlEvent)
|
||||
end
|
||||
rawset(CCControl,"addHandleOfControlEvent",CCControlDeprecated.addHandleOfControlEvent)
|
||||
--functions of CCControl will be deprecated end
|
||||
|
||||
--Enums of CCTableView will be deprecated begin
|
||||
rawset(CCTableView, "kTableViewScroll",cc.SCROLLVIEW_SCRIPT_SCROLL)
|
||||
rawset(CCTableView,"kTableViewZoom",cc.SCROLLVIEW_SCRIPT_ZOOM)
|
||||
rawset(CCTableView,"kTableCellTouched",cc.TABLECELL_TOUCHED)
|
||||
rawset(CCTableView,"kTableCellSizeForIndex",cc.TABLECELL_SIZE_FOR_INDEX)
|
||||
rawset(CCTableView,"kTableCellSizeAtIndex",cc.TABLECELL_SIZE_AT_INDEX)
|
||||
rawset(CCTableView,"kNumberOfCellsInTableView",cc.NUMBER_OF_CELLS_IN_TABLEVIEW)
|
||||
--Enums of CCTableView will be deprecated end
|
||||
|
||||
--Enums of CCScrollView will be deprecated begin
|
||||
rawset(CCScrollView, "kScrollViewScroll",cc.SCROLLVIEW_SCRIPT_SCROLL)
|
||||
rawset(CCScrollView,"kScrollViewZoom",cc.SCROLLVIEW_SCRIPT_ZOOM)
|
||||
--Enums of CCScrollView will be deprecated end
|
||||
|
||||
rawset(_G,"tex2",tex2)
|
||||
|
||||
|
||||
--functions of CCApplication will be deprecated end
|
||||
|
@ -969,26 +928,6 @@ end
|
|||
rawset(CCTMXObjectGroup,"objectNamed", CCTMXObjectGroupDeprecated.objectNamed)
|
||||
--functions of CCTMXObject will be deprecated end
|
||||
|
||||
|
||||
--functions of WebSocket will be deprecated begin
|
||||
local targetPlatform = CCApplication:getInstance():getTargetPlatform()
|
||||
if (kTargetIphone == targetPlatform) or (kTargetIpad == targetPlatform) or (kTargetAndroid == targetPlatform) or (kTargetWindows == targetPlatform) then
|
||||
local WebSocketDeprecated = { }
|
||||
function WebSocketDeprecated.sendTextMsg(self, string)
|
||||
deprecatedTip("WebSocket:sendTextMsg","WebSocket:sendString")
|
||||
return self:sendString(string)
|
||||
end
|
||||
rawset(WebSocket,"sendTextMsg", WebSocketDeprecated.sendTextMsg)
|
||||
|
||||
function WebSocketDeprecated.sendBinaryMsg(self, table,tablesize)
|
||||
deprecatedTip("WebSocket:sendBinaryMsg","WebSocket:sendString")
|
||||
string.char(unpack(table))
|
||||
return self:sendString(string.char(unpack(table)))
|
||||
end
|
||||
rawset(WebSocket,"sendBinaryMsg", WebSocketDeprecated.sendBinaryMsg)
|
||||
end
|
||||
--functions of WebSocket will be deprecated end
|
||||
|
||||
--functions of CCRenderTexture will be deprecated begin
|
||||
local CCRenderTextureDeprecated = { }
|
||||
function CCRenderTextureDeprecated.newCCImage(self)
|
||||
|
@ -1027,78 +966,6 @@ end
|
|||
rawset(cc.Layer, "isKeypadEnabled", CCLayerDeprecated.isKeypadEnabled )
|
||||
--functions of Layer will be deprecated end
|
||||
|
||||
--functions of ccs.GUIReader will be deprecated begin
|
||||
local CCSGUIReaderDeprecated = { }
|
||||
function CCSGUIReaderDeprecated.purgeGUIReader()
|
||||
deprecatedTip("ccs.GUIReader:purgeGUIReader","ccs.GUIReader:destroyInstance")
|
||||
return ccs.GUIReader:destroyInstance()
|
||||
end
|
||||
rawset(ccs.GUIReader,"purgeGUIReader",CCSGUIReaderDeprecated.purgeGUIReader)
|
||||
--functions of ccs.GUIReader will be deprecated end
|
||||
|
||||
--functions of ccs.ActionManagerEx will be deprecated begin
|
||||
local CCSActionManagerExDeprecated = { }
|
||||
function CCSActionManagerExDeprecated.destroyActionManager()
|
||||
deprecatedTip("ccs.ActionManagerEx:destroyActionManager","ccs.ActionManagerEx:destroyInstance")
|
||||
return ccs.ActionManagerEx:destroyInstance()
|
||||
end
|
||||
rawset(ccs.ActionManagerEx,"destroyActionManager",CCSActionManagerExDeprecated.destroyActionManager)
|
||||
--functions of ccs.ActionManagerEx will be deprecated end
|
||||
|
||||
--functions of ccs.SceneReader will be deprecated begin
|
||||
local CCSSceneReaderDeprecated = { }
|
||||
function CCSSceneReaderDeprecated.destroySceneReader(self)
|
||||
deprecatedTip("ccs.SceneReader:destroySceneReader","ccs.SceneReader:destroyInstance")
|
||||
return self:destroyInstance()
|
||||
end
|
||||
rawset(ccs.SceneReader,"destroySceneReader",CCSSceneReaderDeprecated.destroySceneReader)
|
||||
--functions of ccs.SceneReader will be deprecated end
|
||||
|
||||
--functions of CCArmatureDataManager will be deprecated begin
|
||||
local CCArmatureDataManagerDeprecated = { }
|
||||
function CCArmatureDataManagerDeprecated.sharedArmatureDataManager()
|
||||
deprecatedTip("CCArmatureDataManager:sharedArmatureDataManager","ccs.ArmatureDataManager:getInstance")
|
||||
return ccs.ArmatureDataManager:getInstance()
|
||||
end
|
||||
rawset(CCArmatureDataManager,"sharedArmatureDataManager",CCArmatureDataManagerDeprecated.sharedArmatureDataManager)
|
||||
|
||||
function CCArmatureDataManagerDeprecated.purge()
|
||||
deprecatedTip("CCArmatureDataManager:purge","ccs.ArmatureDataManager:destoryInstance")
|
||||
return ccs.ArmatureDataManager:destoryInstance()
|
||||
end
|
||||
rawset(CCArmatureDataManager,"purge",CCArmatureDataManagerDeprecated.purge)
|
||||
--functions of CCArmatureDataManager will be deprecated end
|
||||
|
||||
--functions of GUIReader will be deprecated begin
|
||||
local GUIReaderDeprecated = { }
|
||||
function GUIReaderDeprecated.shareReader()
|
||||
deprecatedTip("GUIReader:shareReader","ccs.GUIReader:getInstance")
|
||||
return ccs.GUIReader:getInstance()
|
||||
end
|
||||
rawset(GUIReader,"shareReader",GUIReaderDeprecated.shareReader)
|
||||
|
||||
function GUIReaderDeprecated.purgeGUIReader()
|
||||
deprecatedTip("GUIReader:purgeGUIReader","ccs.GUIReader:destroyInstance")
|
||||
return ccs.GUIReader:destroyInstance()
|
||||
end
|
||||
rawset(GUIReader,"purgeGUIReader",GUIReaderDeprecated.purgeGUIReader)
|
||||
--functions of GUIReader will be deprecated end
|
||||
|
||||
--functions of SceneReader will be deprecated begin
|
||||
local SceneReaderDeprecated = { }
|
||||
function SceneReaderDeprecated.sharedSceneReader()
|
||||
deprecatedTip("SceneReader:sharedSceneReader","ccs.SceneReader:getInstance")
|
||||
return ccs.SceneReader:getInstance()
|
||||
end
|
||||
rawset(SceneReader,"sharedSceneReader",SceneReaderDeprecated.sharedSceneReader)
|
||||
|
||||
function SceneReaderDeprecated.purgeSceneReader(self)
|
||||
deprecatedTip("SceneReader:purgeSceneReader","ccs.SceneReader:destroyInstance")
|
||||
return self:destroyInstance()
|
||||
end
|
||||
rawset(SceneReader,"purgeSceneReader",SceneReaderDeprecated.purgeSceneReader)
|
||||
--functions of SceneReader will be deprecated end
|
||||
|
||||
--functions of cc.Node will be deprecated begin
|
||||
local NodeDeprecated = { }
|
||||
function NodeDeprecated.setZOrder(self,zOrder)
|
||||
|
@ -1146,156 +1013,3 @@ function GLProgram.addAttribute(self, attributeName, index)
|
|||
end
|
||||
rawset(cc.GLProgram,"addAttribute", GLProgram.addAttribute)
|
||||
--functions of cc.GLProgram will be deprecated end
|
||||
|
||||
--functions of ccui.Text will be deprecated begin
|
||||
local TextDeprecated = { }
|
||||
function TextDeprecated.setText(self, str)
|
||||
deprecatedTip("ccui.Text:setText","ccui.Text:setString")
|
||||
return self:setString(str)
|
||||
end
|
||||
rawset(ccui.Text,"setText", TextDeprecated.setText)
|
||||
|
||||
function TextDeprecated.getStringValue(self)
|
||||
deprecatedTip("ccui.Text:getStringValue","ccui.Text:getString")
|
||||
return self:getString()
|
||||
end
|
||||
rawset(ccui.Text,"getStringValue", TextDeprecated.getStringValue)
|
||||
|
||||
--functions of ccui.Text will be deprecated begin
|
||||
|
||||
--functions of ccui.TextAtlas will be deprecated begin
|
||||
local TextAtlasDeprecated = { }
|
||||
function TextAtlasDeprecated.setStringValue(self, str)
|
||||
deprecatedTip("ccui.TextAtlas:setStringValue","ccui.TextAtlas:setString")
|
||||
return self:setString(str)
|
||||
end
|
||||
rawset(ccui.TextAtlas,"setStringValue", TextAtlasDeprecated.setStringValue)
|
||||
|
||||
function TextAtlasDeprecated.getStringValue(self)
|
||||
deprecatedTip("ccui.TextAtlas:getStringValue","ccui.TextAtlas:getString")
|
||||
return self:getString()
|
||||
end
|
||||
rawset(ccui.TextAtlas,"getStringValue", TextAtlasDeprecated.getStringValue)
|
||||
|
||||
--functions of ccui.TextAtlas will be deprecated begin
|
||||
|
||||
|
||||
--functions of ccui.TextBMFont will be deprecated begin
|
||||
local TextBMFontDeprecated = { }
|
||||
function TextBMFontDeprecated.setText(self, str)
|
||||
deprecatedTip("ccui.TextBMFont:setText","ccui.TextBMFont:setString")
|
||||
return self:setString(str)
|
||||
end
|
||||
rawset(ccui.TextBMFont,"setText", TextBMFontDeprecated.setText)
|
||||
|
||||
function TextBMFontDeprecated.getStringValue(self)
|
||||
deprecatedTip("ccui.Text:getStringValue","ccui.TextBMFont:getString")
|
||||
return self:getString()
|
||||
end
|
||||
rawset(ccui.Text,"getStringValue", TextBMFontDeprecated.getStringValue)
|
||||
--functions of ccui.TextBMFont will be deprecated begin
|
||||
|
||||
--functions of cc.ShaderCache will be deprecated begin
|
||||
local ShaderCacheDeprecated = { }
|
||||
function ShaderCacheDeprecated.getProgram(self,strShader)
|
||||
deprecatedTip("cc.ShaderCache:getProgram","cc.ShaderCache:getGLProgram")
|
||||
return self:getGLProgram(strShader)
|
||||
end
|
||||
rawset(cc.ShaderCache,"getProgram", ShaderCacheDeprecated.getProgram)
|
||||
--functions of ccui.TextBMFont will be deprecated begin
|
||||
|
||||
--functions of ccui.Widget will be deprecated begin
|
||||
local UIWidgetDeprecated = { }
|
||||
function UIWidgetDeprecated.getLeftInParent(self)
|
||||
deprecatedTip("ccui.Widget:getLeftInParent","ccui.Widget:getLeftBoundary")
|
||||
return self:getLeftBoundary()
|
||||
end
|
||||
rawset(ccui.Widget,"getLeftInParent", UIWidgetDeprecated.getLeftInParent)
|
||||
|
||||
function UIWidgetDeprecated.getBottomInParent(self)
|
||||
deprecatedTip("ccui.Widget:getBottomInParent","ccui.Widget:getBottomBoundary")
|
||||
return self:getBottomBoundary()
|
||||
end
|
||||
rawset(ccui.Widget,"getBottomInParent", UIWidgetDeprecated.getBottomInParent)
|
||||
|
||||
function UIWidgetDeprecated.getRightInParent(self)
|
||||
deprecatedTip("ccui.Widget:getRightInParent","ccui.Widget:getRightBoundary")
|
||||
return self:getRightBoundary()
|
||||
end
|
||||
rawset(ccui.Widget,"getRightInParent", UIWidgetDeprecated.getRightInParent)
|
||||
|
||||
function UIWidgetDeprecated.getTopInParent(self)
|
||||
deprecatedTip("ccui.Widget:getTopInParent","ccui.Widget:getTopBoundary")
|
||||
return self:getTopBoundary()
|
||||
end
|
||||
rawset(ccui.Widget,"getTopInParent", UIWidgetDeprecated.getTopInParent)
|
||||
|
||||
function UIWidgetDeprecated.getSize(self)
|
||||
deprecatedTip("ccui.Widget:getSize","ccui.Widget:getContentSize")
|
||||
return self:getContentSize()
|
||||
end
|
||||
rawset(ccui.Widget,"getSize", UIWidgetDeprecated.getSize)
|
||||
|
||||
function UIWidgetDeprecated.setSize(self, ...)
|
||||
deprecatedTip("ccui.Widget:setSize","ccui.Widget:setContentSize")
|
||||
return self:setContentSize(...)
|
||||
end
|
||||
rawset(ccui.Widget,"setSize", UIWidgetDeprecated.setSize)
|
||||
|
||||
--functions of ccui.Widget will be deprecated end
|
||||
|
||||
--functions of ccui.CheckBox will be deprecated begin
|
||||
local UICheckBoxDeprecated = { }
|
||||
function UICheckBoxDeprecated.addEventListenerCheckBox(self,handler)
|
||||
deprecatedTip("ccui.CheckBox:addEventListenerCheckBox","ccui.CheckBox:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.CheckBox,"addEventListenerCheckBox", UICheckBoxDeprecated.addEventListenerCheckBox)
|
||||
--functions of ccui.CheckBox will be deprecated end
|
||||
|
||||
--functions of ccui.Slider will be deprecated begin
|
||||
local UISliderDeprecated = { }
|
||||
function UISliderDeprecated.addEventListenerSlider(self,handler)
|
||||
deprecatedTip("ccui.Slider:addEventListenerSlider","ccui.Slider:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.Slider,"addEventListenerSlider", UISliderDeprecated.addEventListenerSlider)
|
||||
--functions of ccui.Slider will be deprecated end
|
||||
|
||||
--functions of ccui.TextField will be deprecated begin
|
||||
local UITextFieldDeprecated = { }
|
||||
function UITextFieldDeprecated.addEventListenerTextField(self,handler)
|
||||
deprecatedTip("ccui.TextField:addEventListenerTextField","ccui.TextField:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.TextField,"addEventListenerTextField", UITextFieldDeprecated.addEventListenerTextField)
|
||||
--functions of ccui.TextField will be deprecated end
|
||||
|
||||
--functions of ccui.PageView will be deprecated begin
|
||||
local UIPageViewDeprecated = { }
|
||||
function UIPageViewDeprecated.addEventListenerPageView(self,handler)
|
||||
deprecatedTip("ccui.PageView:addEventListenerPageView","ccui.PageView:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.PageView,"addEventListenerPageView", UIPageViewDeprecated.addEventListenerPageView)
|
||||
--functions of ccui.PageView will be deprecated end
|
||||
|
||||
--functions of ccui.ScrollView will be deprecated begin
|
||||
local UIScrollViewDeprecated = { }
|
||||
function UIScrollViewDeprecated.addEventListenerScrollView(self,handler)
|
||||
deprecatedTip("ccui.ScrollView:addEventListenerScrollView","ccui.ScrollView:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.ScrollView,"addEventListenerScrollView", UIScrollViewDeprecated.addEventListenerScrollView)
|
||||
--functions of ccui.ScrollView will be deprecated end
|
||||
|
||||
--functions of ccui.ListView will be deprecated begin
|
||||
local UIListViewDeprecated = { }
|
||||
function UIListViewDeprecated.addEventListenerListView(self,handler)
|
||||
deprecatedTip("ccui.ListView:addEventListenerListView","ccui.ListView:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.ListView,"addEventListenerListView", UIListViewDeprecated.addEventListenerListView)
|
||||
--functions of ccui.ListView will be deprecated end
|
||||
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
-- This is the DeprecatedCocosBuilderClass
|
||||
|
||||
DeprecatedCocosBuilderClass = {} or DeprecatedCocosBuilderClass
|
||||
|
||||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--CCBReader class will be Deprecated,begin
|
||||
function DeprecatedCocosBuilderClass.CCBReader()
|
||||
deprecatedTip("CCBReader","cc.BReader")
|
||||
return cc.BReader
|
||||
end
|
||||
_G["CCBReader"] = DeprecatedCocosBuilderClass.CCBReader()
|
||||
--CCBReader class will be Deprecated,end
|
||||
|
||||
--CCBAnimationManager class will be Deprecated,begin
|
||||
function DeprecatedCocosBuilderClass.CCBAnimationManager()
|
||||
deprecatedTip("CCBAnimationManager","cc.BAnimationManager")
|
||||
return cc.BAnimationManager
|
||||
end
|
||||
_G["CCBAnimationManager"] = DeprecatedCocosBuilderClass.CCBAnimationManager()
|
||||
--CCBAnimationManager class will be Deprecated,end
|
||||
|
||||
--CCBProxy class will be Deprecated,begin
|
||||
function DeprecatedCocosBuilderClass.CCBProxy()
|
||||
deprecatedTip("CCBProxy","cc.CCBProxy")
|
||||
return cc.CCBProxy
|
||||
end
|
||||
_G["CCBProxy"] = DeprecatedCocosBuilderClass.CCBProxy()
|
||||
--CCBProxy class will be Deprecated,end
|
|
@ -0,0 +1,16 @@
|
|||
-- This is the DeprecatedCocosDenshionClass
|
||||
|
||||
DeprecatedCocosDenshionClass = {} or DeprecatedCocosDenshionClass
|
||||
|
||||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--SimpleAudioEngine class will be Deprecated,begin
|
||||
function DeprecatedCocosDenshionClass.SimpleAudioEngine()
|
||||
deprecatedTip("SimpleAudioEngine","cc.SimpleAudioEngine")
|
||||
return cc.SimpleAudioEngine
|
||||
end
|
||||
_G["SimpleAudioEngine"] = DeprecatedCocosDenshionClass.SimpleAudioEngine()
|
||||
--SimpleAudioEngine class will be Deprecated,end
|
|
@ -0,0 +1,19 @@
|
|||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--functions of SimpleAudioEngine will be deprecated begin
|
||||
local SimpleAudioEngineDeprecated = { }
|
||||
function SimpleAudioEngineDeprecated.sharedEngine()
|
||||
deprecatedTip("SimpleAudioEngine:sharedEngine","SimpleAudioEngine:getInstance")
|
||||
return cc.SimpleAudioEngine:getInstance()
|
||||
end
|
||||
rawset(SimpleAudioEngine,"sharedEngine",SimpleAudioEngineDeprecated.sharedEngine)
|
||||
|
||||
function SimpleAudioEngineDeprecated.playBackgroundMusic(self,...)
|
||||
deprecatedTip("SimpleAudioEngine:playBackgroundMusic","SimpleAudioEngine:playMusic")
|
||||
return self:playMusic(...)
|
||||
end
|
||||
rawset(SimpleAudioEngine,"playBackgroundMusic",SimpleAudioEngineDeprecated.playBackgroundMusic)
|
||||
--functions of SimpleAudioEngine will be deprecated end
|
|
@ -0,0 +1,113 @@
|
|||
-- This is the DeprecatedExtensionClass
|
||||
|
||||
DeprecatedExtensionClass = {} or DeprecatedExtensionClass
|
||||
|
||||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--CCControl class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCControl()
|
||||
deprecatedTip("CCControl","cc.Control")
|
||||
return cc.Control
|
||||
end
|
||||
_G["CCControl"] = DeprecatedExtensionClass.CCControl()
|
||||
--CCControl class will be Deprecated,end
|
||||
|
||||
--CCEditBox class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCEditBox()
|
||||
deprecatedTip("CCEditBox","cc.EditBox")
|
||||
return cc.EditBox
|
||||
end
|
||||
_G["CCEditBox"] = DeprecatedExtensionClass.CCEditBox()
|
||||
--CCEditBox class will be Deprecated,end
|
||||
|
||||
--CCScrollView class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCScrollView()
|
||||
deprecatedTip("CCScrollView","cc.ScrollView")
|
||||
return cc.ScrollView
|
||||
end
|
||||
_G["CCScrollView"] = DeprecatedExtensionClass.CCScrollView()
|
||||
--CCScrollView class will be Deprecated,end
|
||||
|
||||
--CCTableView class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCTableView()
|
||||
deprecatedTip("CCTableView","cc.TableView")
|
||||
return cc.TableView
|
||||
end
|
||||
_G["CCTableView"] = DeprecatedExtensionClass.CCTableView()
|
||||
--CCTableView class will be Deprecated,end
|
||||
|
||||
--CCControlPotentiometer class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCControlPotentiometer()
|
||||
deprecatedTip("CCControlPotentiometer","cc.ControlPotentiometer")
|
||||
return cc.ControlPotentiometer
|
||||
end
|
||||
_G["CCControlPotentiometer"] = DeprecatedExtensionClass.CCControlPotentiometer()
|
||||
--CCControlPotentiometer class will be Deprecated,end
|
||||
|
||||
--CCControlStepper class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCControlStepper()
|
||||
deprecatedTip("CCControlStepper","cc.ControlStepper")
|
||||
return cc.ControlStepper
|
||||
end
|
||||
_G["CCControlStepper"] = DeprecatedExtensionClass.CCControlStepper()
|
||||
--CCControlStepper class will be Deprecated,end
|
||||
|
||||
--CCControlHuePicker class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCControlHuePicker()
|
||||
deprecatedTip("CCControlHuePicker","cc.ControlHuePicker")
|
||||
return cc.ControlHuePicker
|
||||
end
|
||||
_G["CCControlHuePicker"] = DeprecatedExtensionClass.CCControlHuePicker()
|
||||
--CCControlHuePicker class will be Deprecated,end
|
||||
|
||||
--CCControlSlider class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCControlSlider()
|
||||
deprecatedTip("CCControlSlider","cc.ControlSlider")
|
||||
return cc.ControlSlider
|
||||
end
|
||||
_G["CCControlSlider"] = DeprecatedExtensionClass.CCControlSlider()
|
||||
--CCControlSlider class will be Deprecated,end
|
||||
|
||||
--CCControlSaturationBrightnessPicker class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCControlSaturationBrightnessPicker()
|
||||
deprecatedTip("CCControlSaturationBrightnessPicker","cc.ControlSaturationBrightnessPicker")
|
||||
return cc.ControlSaturationBrightnessPicker
|
||||
end
|
||||
_G["CCControlSaturationBrightnessPicker"] = DeprecatedExtensionClass.CCControlSaturationBrightnessPicker()
|
||||
--CCControlSaturationBrightnessPicker class will be Deprecated,end
|
||||
|
||||
--CCControlSwitch class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCControlSwitch()
|
||||
deprecatedTip("CCControlSwitch","cc.ControlSwitch")
|
||||
return cc.ControlSwitch
|
||||
end
|
||||
_G["CCControlSwitch"] = DeprecatedExtensionClass.CCControlSwitch()
|
||||
--CCControlSwitch class will be Deprecated,end
|
||||
|
||||
--CCControlButton class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCControlButton()
|
||||
deprecatedTip("CCControlButton","cc.ControlButton")
|
||||
return cc.ControlButton
|
||||
end
|
||||
_G["CCControlButton"] = DeprecatedExtensionClass.CCControlButton()
|
||||
--CCControlButton class will be Deprecated,end
|
||||
|
||||
--CCScale9Sprite class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCScale9Sprite()
|
||||
deprecatedTip("CCScale9Sprite","cc.Scale9Sprite")
|
||||
return cc.Scale9Sprite
|
||||
end
|
||||
_G["CCScale9Sprite"] = DeprecatedExtensionClass.CCScale9Sprite()
|
||||
--CCScale9Sprite class will be Deprecated,end
|
||||
|
||||
--CCControlColourPicker class will be Deprecated,begin
|
||||
function DeprecatedExtensionClass.CCControlColourPicker()
|
||||
deprecatedTip("CCControlColourPicker","cc.ControlColourPicker")
|
||||
return cc.ControlColourPicker
|
||||
end
|
||||
_G["CCControlColourPicker"] = DeprecatedExtensionClass.CCControlColourPicker()
|
||||
--CCControlColourPicker class will be Deprecated,end
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
_G.kCCControlStepperPartMinus = cc.CONTROL_STEPPER_PART_MINUS
|
||||
_G.kCCControlStepperPartPlus = cc.CONTROL_STEPPER_PART_PLUS
|
||||
_G.kCCControlStepperPartNone = cc.CONTROL_STEPPER_PART_NONE
|
||||
|
||||
_G.CCControlEventTouchDown = cc.CONTROL_EVENTTYPE_TOUCH_DOWN
|
||||
_G.CCControlEventTouchDragInside = cc.CONTROL_EVENTTYPE_DRAG_INSIDE
|
||||
_G.CCControlEventTouchDragOutside = cc.CONTROL_EVENTTYPE_DRAG_OUTSIDE
|
||||
_G.CCControlEventTouchDragEnter = cc.CONTROL_EVENTTYPE_DRAG_ENTER
|
||||
_G.CCControlEventTouchDragExit = cc.CONTROL_EVENTTYPE_DRAG_EXIT
|
||||
_G.CCControlEventTouchUpInside = cc.CONTROL_EVENTTYPE_TOUCH_UP_INSIDE
|
||||
_G.CCControlEventTouchUpOutside = cc.CONTROL_EVENTTYPE_TOUCH_UP_OUTSIDE
|
||||
_G.CCControlEventTouchCancel = cc.CONTROL_EVENTTYPE_TOUCH_CANCEL
|
||||
_G.CCControlEventValueChanged = cc.CONTROL_EVENTTYPE_VALUE_CHANGED
|
||||
_G.CCControlStateNormal = cc.CONTROL_STATE_NORMAL
|
||||
_G.CCControlStateHighlighted = cc.CONTROL_STATE_HIGH_LIGHTED
|
||||
_G.CCControlStateDisabled = cc.CONTROL_STATE_DISABLED
|
||||
_G.CCControlStateSelected = cc.CONTROL_STATE_SELECTED
|
||||
|
||||
_G.kCCScrollViewDirectionHorizontal = cc.SCROLLVIEW_DIRECTION_HORIZONTAL
|
||||
_G.kCCScrollViewDirectionVertical = cc.SCROLLVIEW_DIRECTION_VERTICAL
|
||||
_G.kCCTableViewFillTopDown = cc.TABLEVIEW_FILL_TOPDOWN
|
||||
_G.kCCTableViewFillBottomUp = cc.TABLEVIEW_FILL_BOTTOMUP
|
|
@ -0,0 +1,28 @@
|
|||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--functions of CCControl will be deprecated end
|
||||
local CCControlDeprecated = { }
|
||||
function CCControlDeprecated.addHandleOfControlEvent(self,func,controlEvent)
|
||||
deprecatedTip("addHandleOfControlEvent","registerControlEventHandler")
|
||||
print("come in addHandleOfControlEvent")
|
||||
self:registerControlEventHandler(func,controlEvent)
|
||||
end
|
||||
rawset(CCControl,"addHandleOfControlEvent",CCControlDeprecated.addHandleOfControlEvent)
|
||||
--functions of CCControl will be deprecated end
|
||||
|
||||
--Enums of CCTableView will be deprecated begin
|
||||
rawset(CCTableView, "kTableViewScroll",cc.SCROLLVIEW_SCRIPT_SCROLL)
|
||||
rawset(CCTableView,"kTableViewZoom",cc.SCROLLVIEW_SCRIPT_ZOOM)
|
||||
rawset(CCTableView,"kTableCellTouched",cc.TABLECELL_TOUCHED)
|
||||
rawset(CCTableView,"kTableCellSizeForIndex",cc.TABLECELL_SIZE_FOR_INDEX)
|
||||
rawset(CCTableView,"kTableCellSizeAtIndex",cc.TABLECELL_SIZE_AT_INDEX)
|
||||
rawset(CCTableView,"kNumberOfCellsInTableView",cc.NUMBER_OF_CELLS_IN_TABLEVIEW)
|
||||
--Enums of CCTableView will be deprecated end
|
||||
|
||||
--Enums of CCScrollView will be deprecated begin
|
||||
rawset(CCScrollView, "kScrollViewScroll",cc.SCROLLVIEW_SCRIPT_SCROLL)
|
||||
rawset(CCScrollView,"kScrollViewZoom",cc.SCROLLVIEW_SCRIPT_ZOOM)
|
||||
--Enums of CCScrollView will be deprecated end
|
|
@ -0,0 +1,16 @@
|
|||
-- This is the DeprecatedNetworkClass
|
||||
|
||||
DeprecatedNetworkClass = {} or DeprecatedNetworkClass
|
||||
|
||||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--WebSocket class will be Deprecated,begin
|
||||
function DeprecatedNetworkClass.WebSocket()
|
||||
deprecatedTip("WebSocket","cc.WebSocket")
|
||||
return cc.WebSocket
|
||||
end
|
||||
_G["WebSocket"] = DeprecatedNetworkClass.WebSocket()
|
||||
--WebSocket class will be Deprecated,end
|
|
@ -0,0 +1,9 @@
|
|||
_G.kWebSocketScriptHandlerOpen = cc.WEBSOCKET_OPEN
|
||||
_G.kWebSocketScriptHandlerMessage = cc.WEBSOCKET_MESSAGE
|
||||
_G.kWebSocketScriptHandlerClose = cc.WEBSOCKET_CLOSE
|
||||
_G.kWebSocketScriptHandlerError = cc.WEBSOCKET_ERROR
|
||||
|
||||
_G.kStateConnecting = cc.WEBSOCKET_STATE_CONNECTING
|
||||
_G.kStateOpen = cc.WEBSOCKET_STATE_OPEN
|
||||
_G.kStateClosing = cc.WEBSOCKET_STATE_CLOSING
|
||||
_G.kStateClosed = cc.WEBSOCKET_STATE_CLOSED
|
|
@ -0,0 +1,23 @@
|
|||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--functions of WebSocket will be deprecated begin
|
||||
local targetPlatform = CCApplication:getInstance():getTargetPlatform()
|
||||
if (kTargetIphone == targetPlatform) or (kTargetIpad == targetPlatform) or (kTargetAndroid == targetPlatform) or (kTargetWindows == targetPlatform) then
|
||||
local WebSocketDeprecated = { }
|
||||
function WebSocketDeprecated.sendTextMsg(self, string)
|
||||
deprecatedTip("WebSocket:sendTextMsg","WebSocket:sendString")
|
||||
return self:sendString(string)
|
||||
end
|
||||
rawset(WebSocket,"sendTextMsg", WebSocketDeprecated.sendTextMsg)
|
||||
|
||||
function WebSocketDeprecated.sendBinaryMsg(self, table,tablesize)
|
||||
deprecatedTip("WebSocket:sendBinaryMsg","WebSocket:sendString")
|
||||
string.char(unpack(table))
|
||||
return self:sendString(string.char(unpack(table)))
|
||||
end
|
||||
rawset(WebSocket,"sendBinaryMsg", WebSocketDeprecated.sendBinaryMsg)
|
||||
end
|
||||
--functions of WebSocket will be deprecated end
|
|
@ -0,0 +1,92 @@
|
|||
require("GuiConstants")
|
||||
|
||||
_G.LAYOUT_COLOR_NONE = ccui.LayoutBackGroundColorType.none
|
||||
_G.LAYOUT_COLOR_SOLID = ccui.LayoutBackGroundColorType.solid
|
||||
_G.LAYOUT_COLOR_GRADIENT = ccui.LayoutBackGroundColorType.gradient
|
||||
|
||||
_G.LAYOUT_ABSOLUTE = ccui.LayoutType.ABSOLUTE
|
||||
_G.LAYOUT_LINEAR_VERTICAL = ccui.LayoutType.VERTICAL
|
||||
_G.LAYOUT_LINEAR_HORIZONTAL = ccui.LayoutType.HORIZONTAL
|
||||
_G.LAYOUT_RELATIVE = ccui.LayoutType.RELATIVE
|
||||
|
||||
_G.BRIGHT_NONE = ccui.BrightStyle.none
|
||||
_G.BRIGHT_NORMAL = ccui.BrightStyle.normal
|
||||
_G.BRIGHT_HIGHLIGHT = ccui.BrightStyle.highlight
|
||||
|
||||
_G.UI_TEX_TYPE_LOCAL = ccui.TextureResType.localType
|
||||
_G.UI_TEX_TYPE_PLIST = ccui.TextureResType.plistType
|
||||
|
||||
_G.TOUCH_EVENT_BEGAN = ccui.TouchEventType.began
|
||||
_G.TOUCH_EVENT_MOVED = ccui.TouchEventType.moved
|
||||
_G.TOUCH_EVENT_ENDED = ccui.TouchEventType.ended
|
||||
_G.TOUCH_EVENT_CANCELED = ccui.TouchEventType.canceled
|
||||
|
||||
_G.SIZE_ABSOLUTE = ccui.SizeType.absolute
|
||||
_G.SIZE_PERCENT = ccui.SizeType.percent
|
||||
|
||||
_G.POSITION_ABSOLUTE = ccui.PositionType.absolute
|
||||
_G.POSITION_PERCENT = ccui.PositionType.percent
|
||||
|
||||
_G.CHECKBOX_STATE_EVENT_SELECTED = ccui.CheckBoxEventType.selected
|
||||
_G.CHECKBOX_STATE_EVENT_UNSELECTED = ccui.CheckBoxEventType.unselected
|
||||
|
||||
_G.CHECKBOX_STATE_EVENT_SELECTED = ccui.CheckBoxEventType.selected
|
||||
_G.CHECKBOX_STATE_EVENT_UNSELECTED = ccui.CheckBoxEventType.unselected
|
||||
|
||||
_G.LoadingBarTypeLeft = ccui.LoadingBarDirection.LEFT
|
||||
_G.LoadingBarTypeRight = ccui.LoadingBarDirection.RIGHT
|
||||
|
||||
_G.LoadingBarTypeRight = ccui.SliderEventType.percent_changed
|
||||
|
||||
_G.TEXTFIELD_EVENT_ATTACH_WITH_IME = ccui.TextFiledEventType.attach_with_ime
|
||||
_G.TEXTFIELD_EVENT_DETACH_WITH_IME = ccui.TextFiledEventType.detach_with_ime
|
||||
_G.TEXTFIELD_EVENT_INSERT_TEXT = ccui.TextFiledEventType.insert_text
|
||||
_G.TEXTFIELD_EVENT_DELETE_BACKWARD = ccui.TextFiledEventType.delete_backward
|
||||
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_TOP = ccui.ScrollViewDir.none
|
||||
_G.SCROLLVIEW_DIR_VERTICAL = ccui.ScrollViewDir.vertical
|
||||
_G.SCROLLVIEW_DIR_HORIZONTAL = ccui.ScrollViewDir.horizontal
|
||||
_G.SCROLLVIEW_DIR_BOTH = ccui.ScrollViewDir.both
|
||||
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_TOP = ccui.ScrollviewEventType.scrollToTop
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_BOTTOM = ccui.ScrollviewEventType.scrollToBottom
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_LEFT = ccui.ScrollviewEventType.scrollToLeft
|
||||
_G.SCROLLVIEW_EVENT_SCROLL_TO_RIGHT = ccui.ScrollviewEventType.scrollToRight
|
||||
_G.SCROLLVIEW_EVENT_SCROLLING = ccui.ScrollviewEventType.scrolling
|
||||
_G.SCROLLVIEW_EVENT_BOUNCE_TOP = ccui.ScrollviewEventType.bounceTop
|
||||
_G.SCROLLVIEW_EVENT_BOUNCE_BOTTOM = ccui.ScrollviewEventType.bounceBottom
|
||||
_G.SCROLLVIEW_EVENT_BOUNCE_LEFT = ccui.ScrollviewEventType.bounceLeft
|
||||
_G.SCROLLVIEW_EVENT_BOUNCE_RIGHT = ccui.ScrollviewEventType.bounceRight
|
||||
|
||||
_G.PAGEVIEW_EVENT_TURNING = ccui.PageViewEventType.turning
|
||||
|
||||
_G.PAGEVIEW_TOUCHLEFT = ccui.PVTouchDir.touch_left
|
||||
_G.PAGEVIEW_TOUCHRIGHT = ccui.PVTouchDir.touch_right
|
||||
|
||||
_G.LISTVIEW_DIR_NONE = ccui.ListViewDirection.none
|
||||
_G.LISTVIEW_DIR_VERTICAL = ccui.ListViewDirection.vertical
|
||||
_G.LISTVIEW_DIR_HORIZONTAL = ccui.ListViewDirection.horizontal
|
||||
|
||||
_G.LISTVIEW_MOVE_DIR_NONE = ccui.ListViewMoveDirection.none
|
||||
_G.LISTVIEW_MOVE_DIR_UP = ccui.ListViewMoveDirection.up
|
||||
_G.LISTVIEW_MOVE_DIR_DOWN = ccui.ListViewMoveDirection.down
|
||||
_G.LISTVIEW_MOVE_DIR_LEFT = ccui.ListViewMoveDirection.left
|
||||
_G.LISTVIEW_MOVE_DIR_RIGHT = ccui.ListViewMoveDirection.right
|
||||
|
||||
_G.LISTVIEW_EVENT_INIT_CHILD = ccui.ListViewEventType.init_child
|
||||
_G.LISTVIEW_EVENT_UPDATE_CHILD = ccui.ListViewEventType.update_child
|
||||
|
||||
_G.LAYOUT_PARAMETER_NONE = ccui.LayoutParameterType.none
|
||||
_G.LAYOUT_PARAMETER_LINEAR = ccui.LayoutParameterType.linear
|
||||
_G.LAYOUT_PARAMETER_RELATIVE = ccui.LayoutParameterType.relative
|
||||
|
||||
ccui.LoadingBarType = ccui.LoadingBarDirection
|
||||
ccui.LoadingBarType.left = ccui.LoadingBarDirection.LEFT
|
||||
ccui.LoadingBarType.right = ccui.LoadingBarDirection.RIGHT
|
||||
|
||||
ccui.LayoutType.absolute = ccui.LayoutType.ABSOLUTE
|
||||
ccui.LayoutType.linearVertical = ccui.LayoutType.VERTICAL
|
||||
ccui.LayoutType.linearHorizontal = ccui.LayoutType.HORIZONTAL
|
||||
ccui.LayoutType.relative = ccui.LayoutType.RELATIVE
|
||||
|
||||
ccui.ListViewEventType.onsSelectedItem = ccui.ListViewEventType.ONSELECTEDITEM_START
|
|
@ -0,0 +1,154 @@
|
|||
--tip
|
||||
local function deprecatedTip(old_name,new_name)
|
||||
print("\n********** \n"..old_name.." was deprecated please use ".. new_name .. " instead.\n**********")
|
||||
end
|
||||
|
||||
--functions of ccui.Text will be deprecated begin
|
||||
local TextDeprecated = { }
|
||||
function TextDeprecated.setText(self, str)
|
||||
deprecatedTip("ccui.Text:setText","ccui.Text:setString")
|
||||
return self:setString(str)
|
||||
end
|
||||
rawset(ccui.Text,"setText", TextDeprecated.setText)
|
||||
|
||||
function TextDeprecated.getStringValue(self)
|
||||
deprecatedTip("ccui.Text:getStringValue","ccui.Text:getString")
|
||||
return self:getString()
|
||||
end
|
||||
rawset(ccui.Text,"getStringValue", TextDeprecated.getStringValue)
|
||||
|
||||
--functions of ccui.Text will be deprecated begin
|
||||
|
||||
--functions of ccui.TextAtlas will be deprecated begin
|
||||
local TextAtlasDeprecated = { }
|
||||
function TextAtlasDeprecated.setStringValue(self, str)
|
||||
deprecatedTip("ccui.TextAtlas:setStringValue","ccui.TextAtlas:setString")
|
||||
return self:setString(str)
|
||||
end
|
||||
rawset(ccui.TextAtlas,"setStringValue", TextAtlasDeprecated.setStringValue)
|
||||
|
||||
function TextAtlasDeprecated.getStringValue(self)
|
||||
deprecatedTip("ccui.TextAtlas:getStringValue","ccui.TextAtlas:getString")
|
||||
return self:getString()
|
||||
end
|
||||
rawset(ccui.TextAtlas,"getStringValue", TextAtlasDeprecated.getStringValue)
|
||||
--functions of ccui.TextAtlas will be deprecated begin
|
||||
|
||||
|
||||
--functions of ccui.TextBMFont will be deprecated begin
|
||||
local TextBMFontDeprecated = { }
|
||||
function TextBMFontDeprecated.setText(self, str)
|
||||
deprecatedTip("ccui.TextBMFont:setText","ccui.TextBMFont:setString")
|
||||
return self:setString(str)
|
||||
end
|
||||
rawset(ccui.TextBMFont,"setText", TextBMFontDeprecated.setText)
|
||||
|
||||
function TextBMFontDeprecated.getStringValue(self)
|
||||
deprecatedTip("ccui.Text:getStringValue","ccui.TextBMFont:getString")
|
||||
return self:getString()
|
||||
end
|
||||
rawset(ccui.Text,"getStringValue", TextBMFontDeprecated.getStringValue)
|
||||
--functions of ccui.TextBMFont will be deprecated begin
|
||||
|
||||
--functions of cc.ShaderCache will be deprecated begin
|
||||
local ShaderCacheDeprecated = { }
|
||||
function ShaderCacheDeprecated.getProgram(self,strShader)
|
||||
deprecatedTip("cc.ShaderCache:getProgram","cc.ShaderCache:getGLProgram")
|
||||
return self:getGLProgram(strShader)
|
||||
end
|
||||
rawset(cc.ShaderCache,"getProgram", ShaderCacheDeprecated.getProgram)
|
||||
--functions of ccui.TextBMFont will be deprecated begin
|
||||
|
||||
--functions of ccui.Widget will be deprecated begin
|
||||
local UIWidgetDeprecated = { }
|
||||
function UIWidgetDeprecated.getLeftInParent(self)
|
||||
deprecatedTip("ccui.Widget:getLeftInParent","ccui.Widget:getLeftBoundary")
|
||||
return self:getLeftBoundary()
|
||||
end
|
||||
rawset(ccui.Widget,"getLeftInParent", UIWidgetDeprecated.getLeftInParent)
|
||||
|
||||
function UIWidgetDeprecated.getBottomInParent(self)
|
||||
deprecatedTip("ccui.Widget:getBottomInParent","ccui.Widget:getBottomBoundary")
|
||||
return self:getBottomBoundary()
|
||||
end
|
||||
rawset(ccui.Widget,"getBottomInParent", UIWidgetDeprecated.getBottomInParent)
|
||||
|
||||
function UIWidgetDeprecated.getRightInParent(self)
|
||||
deprecatedTip("ccui.Widget:getRightInParent","ccui.Widget:getRightBoundary")
|
||||
return self:getRightBoundary()
|
||||
end
|
||||
rawset(ccui.Widget,"getRightInParent", UIWidgetDeprecated.getRightInParent)
|
||||
|
||||
function UIWidgetDeprecated.getTopInParent(self)
|
||||
deprecatedTip("ccui.Widget:getTopInParent","ccui.Widget:getTopBoundary")
|
||||
return self:getTopBoundary()
|
||||
end
|
||||
rawset(ccui.Widget,"getTopInParent", UIWidgetDeprecated.getTopInParent)
|
||||
|
||||
function UIWidgetDeprecated.getSize(self)
|
||||
deprecatedTip("ccui.Widget:getSize","ccui.Widget:getContentSize")
|
||||
return self:getContentSize()
|
||||
end
|
||||
rawset(ccui.Widget,"getSize", UIWidgetDeprecated.getSize)
|
||||
|
||||
function UIWidgetDeprecated.setSize(self, ...)
|
||||
deprecatedTip("ccui.Widget:setSize","ccui.Widget:setContentSize")
|
||||
return self:setContentSize(...)
|
||||
end
|
||||
rawset(ccui.Widget,"setSize", UIWidgetDeprecated.setSize)
|
||||
|
||||
--functions of ccui.Widget will be deprecated end
|
||||
|
||||
--functions of ccui.CheckBox will be deprecated begin
|
||||
local UICheckBoxDeprecated = { }
|
||||
function UICheckBoxDeprecated.addEventListenerCheckBox(self,handler)
|
||||
deprecatedTip("ccui.CheckBox:addEventListenerCheckBox","ccui.CheckBox:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.CheckBox,"addEventListenerCheckBox", UICheckBoxDeprecated.addEventListenerCheckBox)
|
||||
--functions of ccui.CheckBox will be deprecated end
|
||||
|
||||
--functions of ccui.Slider will be deprecated begin
|
||||
local UISliderDeprecated = { }
|
||||
function UISliderDeprecated.addEventListenerSlider(self,handler)
|
||||
deprecatedTip("ccui.Slider:addEventListenerSlider","ccui.Slider:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.Slider,"addEventListenerSlider", UISliderDeprecated.addEventListenerSlider)
|
||||
--functions of ccui.Slider will be deprecated end
|
||||
|
||||
--functions of ccui.TextField will be deprecated begin
|
||||
local UITextFieldDeprecated = { }
|
||||
function UITextFieldDeprecated.addEventListenerTextField(self,handler)
|
||||
deprecatedTip("ccui.TextField:addEventListenerTextField","ccui.TextField:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.TextField,"addEventListenerTextField", UITextFieldDeprecated.addEventListenerTextField)
|
||||
--functions of ccui.TextField will be deprecated end
|
||||
|
||||
--functions of ccui.PageView will be deprecated begin
|
||||
local UIPageViewDeprecated = { }
|
||||
function UIPageViewDeprecated.addEventListenerPageView(self,handler)
|
||||
deprecatedTip("ccui.PageView:addEventListenerPageView","ccui.PageView:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.PageView,"addEventListenerPageView", UIPageViewDeprecated.addEventListenerPageView)
|
||||
--functions of ccui.PageView will be deprecated end
|
||||
|
||||
--functions of ccui.ScrollView will be deprecated begin
|
||||
local UIScrollViewDeprecated = { }
|
||||
function UIScrollViewDeprecated.addEventListenerScrollView(self,handler)
|
||||
deprecatedTip("ccui.ScrollView:addEventListenerScrollView","ccui.ScrollView:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.ScrollView,"addEventListenerScrollView", UIScrollViewDeprecated.addEventListenerScrollView)
|
||||
--functions of ccui.ScrollView will be deprecated end
|
||||
|
||||
--functions of ccui.ListView will be deprecated begin
|
||||
local UIListViewDeprecated = { }
|
||||
function UIListViewDeprecated.addEventListenerListView(self,handler)
|
||||
deprecatedTip("ccui.ListView:addEventListenerListView","ccui.ListView:addEventListener")
|
||||
return self:addEventListener(handler)
|
||||
end
|
||||
rawset(ccui.ListView,"addEventListenerListView", UIListViewDeprecated.addEventListenerListView)
|
||||
--functions of ccui.ListView will be deprecated end
|
|
@ -0,0 +1,58 @@
|
|||
cc = cc or {}
|
||||
|
||||
cc.CONTROL_STATE_NORMAL = 1
|
||||
cc.CONTROL_STATE_HIGH_LIGHTED = 2
|
||||
cc.CONTROL_STATE_DISABLED = 4
|
||||
cc.CONTROL_STATE_SELECTED = 8
|
||||
|
||||
cc.CONTROL_STEPPER_PART_MINUS = 0
|
||||
cc.CONTROL_STEPPER_PART_PLUS = 1
|
||||
cc.CONTROL_STEPPER_PART_NONE = 2
|
||||
|
||||
cc.TABLEVIEW_FILL_TOPDOWN = 0
|
||||
cc.TABLEVIEW_FILL_BOTTOMUP = 1
|
||||
|
||||
cc.SCROLLVIEW_SCRIPT_SCROLL = 0
|
||||
cc.SCROLLVIEW_SCRIPT_ZOOM = 1
|
||||
cc.TABLECELL_TOUCHED = 2
|
||||
cc.TABLECELL_HIGH_LIGHT = 3
|
||||
cc.TABLECELL_UNHIGH_LIGHT = 4
|
||||
cc.TABLECELL_WILL_RECYCLE = 5
|
||||
cc.TABLECELL_SIZE_FOR_INDEX = 6
|
||||
cc.TABLECELL_SIZE_AT_INDEX = 7
|
||||
cc.NUMBER_OF_CELLS_IN_TABLEVIEW = 8
|
||||
|
||||
cc.SCROLLVIEW_DIRECTION_NONE = -1
|
||||
cc.SCROLLVIEW_DIRECTION_HORIZONTAL = 0
|
||||
cc.SCROLLVIEW_DIRECTION_VERTICAL = 1
|
||||
cc.SCROLLVIEW_DIRECTION_BOTH = 2
|
||||
|
||||
cc.CONTROL_EVENTTYPE_TOUCH_DOWN = 1
|
||||
cc.CONTROL_EVENTTYPE_DRAG_INSIDE = 2
|
||||
cc.CONTROL_EVENTTYPE_DRAG_OUTSIDE = 4
|
||||
cc.CONTROL_EVENTTYPE_DRAG_ENTER = 8
|
||||
cc.CONTROL_EVENTTYPE_DRAG_EXIT = 16
|
||||
cc.CONTROL_EVENTTYPE_TOUCH_UP_INSIDE = 32
|
||||
cc.CONTROL_EVENTTYPE_TOUCH_UP_OUTSIDE = 64
|
||||
cc.CONTROL_EVENTTYPE_TOUCH_CANCEL = 128
|
||||
cc.CONTROL_EVENTTYPE_VALUE_CHANGED = 256
|
||||
|
||||
cc.EDITBOX_INPUT_MODE_ANY = 0
|
||||
cc.EDITBOX_INPUT_MODE_EMAILADDR = 1
|
||||
cc.EDITBOX_INPUT_MODE_NUMERIC = 2
|
||||
cc.EDITBOX_INPUT_MODE_PHONENUMBER = 3
|
||||
cc.EDITBOX_INPUT_MODE_URL = 4
|
||||
cc.EDITBOX_INPUT_MODE_DECIMAL = 5
|
||||
cc.EDITBOX_INPUT_MODE_SINGLELINE = 6
|
||||
|
||||
cc.EDITBOX_INPUT_FLAG_PASSWORD = 0
|
||||
cc.EDITBOX_INPUT_FLAG_SENSITIVE = 1
|
||||
cc.EDITBOX_INPUT_FLAG_INITIAL_CAPS_WORD = 2
|
||||
cc.EDITBOX_INPUT_FLAG_INITIAL_CAPS_SENTENCE = 3
|
||||
cc.EDITBOX_INPUT_FLAG_INITIAL_CAPS_ALL_CHARACTERS = 4
|
||||
|
||||
cc.KEYBOARD_RETURNTYPE_DEFAULT = 0
|
||||
cc.KEYBOARD_RETURNTYPE_DONE = 1
|
||||
cc.KEYBOARD_RETURNTYPE_SEND = 2
|
||||
cc.KEYBOARD_RETURNTYPE_SEARCH = 3
|
||||
cc.KEYBOARD_RETURNTYPE_GO = 4
|
|
@ -0,0 +1,18 @@
|
|||
cc = cc or {}
|
||||
|
||||
cc.WEBSOCKET_OPEN = 0
|
||||
cc.WEBSOCKET_MESSAGE = 1
|
||||
cc.WEBSOCKET_CLOSE = 2
|
||||
cc.WEBSOCKET_ERROR = 3
|
||||
|
||||
cc.WEBSOCKET_STATE_CONNECTING = 0
|
||||
cc.WEBSOCKET_STATE_OPEN = 1
|
||||
cc.WEBSOCKET_STATE_CLOSING = 2
|
||||
cc.WEBSOCKET_STATE_CLOSED = 3
|
||||
|
||||
|
||||
cc.XMLHTTPREQUEST_RESPONSE_STRING = 0
|
||||
cc.XMLHTTPREQUEST_RESPONSE_ARRAY_BUFFER = 1
|
||||
cc.XMLHTTPREQUEST_RESPONSE_BLOB = 2
|
||||
cc.XMLHTTPREQUEST_RESPONSE_DOCUMENT = 3
|
||||
cc.XMLHTTPREQUEST_RESPONSE_JSON = 4
|
|
@ -2,6 +2,7 @@
|
|||
#include "CCLuaEngine.h"
|
||||
#include "SimpleAudioEngine.h"
|
||||
#include "cocos2d.h"
|
||||
#include "lua_module_register.h"
|
||||
|
||||
using namespace CocosDenshion;
|
||||
|
||||
|
@ -21,6 +22,8 @@ bool AppDelegate::applicationDidFinishLaunching()
|
|||
{
|
||||
auto engine = LuaEngine::getInstance();
|
||||
ScriptEngineManager::getInstance()->setScriptEngine(engine);
|
||||
lua_State* L = engine->getLuaStack()->getLuaState();
|
||||
lua_module_register(L);
|
||||
if (engine->executeScriptFile("src/main.lua")) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef __LUA_TEMPLATE_DEFAULT_FRAMEWORKS_RUNTIME_SRC_CLASSES_LUA_MODULE_REGISTER_H__
|
||||
#define __LUA_TEMPLATE_DEFAULT_FRAMEWORKS_RUNTIME_SRC_CLASSES_LUA_MODULE_REGISTER_H__
|
||||
|
||||
#include "network/lua_cocos2dx_network_manual.h"
|
||||
#include "cocosdenshion/lua_cocos2dx_cocosdenshion_manual.h"
|
||||
|
||||
|
||||
int lua_module_register(lua_State* L)
|
||||
{
|
||||
register_network_module(L);
|
||||
register_cocosdenshion_module(L);
|
||||
return 1;
|
||||
}
|
||||
|
||||
#endif // __LUA_TEMPLATE_DEFAULT_FRAMEWORKS_RUNTIME_SRC_CLASSES_LUA_MODULE_REGISTER_H__
|
||||
|
|
@ -14,8 +14,10 @@ LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../Classes
|
|||
|
||||
LOCAL_STATIC_LIBRARIES := curl_static_prebuilt
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := cocos_lua_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := cocos2d_lua_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += cocosdenshion_lua_static
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES += network_lua_static
|
||||
|
||||
include $(BUILD_SHARED_LIBRARY)
|
||||
|
||||
$(call import-module,scripting/lua-bindings)
|
||||
$(call import-module,scripting/lua-bindings/proj.android)
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -4,6 +4,7 @@
|
|||
#include "cocos2d.h"
|
||||
#include "Runtime.h"
|
||||
#include "ConfigParser.h"
|
||||
#include "lua_module_register.h"
|
||||
|
||||
using namespace CocosDenshion;
|
||||
|
||||
|
@ -52,6 +53,13 @@ bool AppDelegate::applicationDidFinishLaunching()
|
|||
|
||||
auto engine = LuaEngine::getInstance();
|
||||
ScriptEngineManager::getInstance()->setScriptEngine(engine);
|
||||
lua_State* L = engine->getLuaStack()->getLuaState();
|
||||
lua_getglobal(L, "_G");
|
||||
if (lua_istable(L,-1))//stack:...,_G,
|
||||
{
|
||||
lua_module_register(L);
|
||||
}
|
||||
lua_pop(L, 1);//statck:...
|
||||
|
||||
LuaStack* stack = engine->getLuaStack();
|
||||
stack->setXXTEAKeyAndSign("2dxLua", strlen("2dxLua"), "XXTEA", strlen("XXTEA"));
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue