├── .gitignore ├── .gitmodules ├── README.md ├── ReadMe.txt ├── client ├── 3rd │ └── Visual Leak Detector │ │ ├── AUTHORS.txt │ │ ├── CHANGES.txt │ │ ├── COPYING.txt │ │ ├── bin │ │ ├── Win32 │ │ │ └── Microsoft.DTfW.DHL.manifest │ │ └── Win64 │ │ │ └── Microsoft.DTfW.DHL.manifest │ │ ├── include │ │ ├── vld.h │ │ └── vld_def.h │ │ ├── lib │ │ ├── Win32 │ │ │ └── vld.lib │ │ └── Win64 │ │ │ └── vld.lib │ │ ├── src │ │ ├── callstack.cpp │ │ ├── callstack.h │ │ ├── criticalsection.h │ │ ├── crtmfcpatch.h │ │ ├── dllspatches.cpp │ │ ├── map.h │ │ ├── ntapi.cpp │ │ ├── ntapi.h │ │ ├── resource.h │ │ ├── set.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── tree.h │ │ ├── utility.cpp │ │ ├── utility.h │ │ ├── version.h │ │ ├── vld.cpp │ │ ├── vld.dll.dependency.x64.manifest │ │ ├── vld.dll.dependency.x86.manifest │ │ ├── vld.h │ │ ├── vld.rc │ │ ├── vld.vcxproj │ │ ├── vld.vcxproj.filters │ │ ├── vld_def.h │ │ ├── vld_hooks.cpp │ │ ├── vldapi.cpp │ │ ├── vldheap.cpp │ │ ├── vldheap.h │ │ └── vldint.h │ │ ├── unins000.dat │ │ └── vld.ini ├── GameClient │ ├── .cocos-project.json │ ├── .gitignore │ ├── GameClient.exp │ ├── GameClient │ │ └── GameClient.luaprj │ ├── frameworks │ │ ├── CMakeLists.txt │ │ └── runtime-src │ │ │ ├── Classes │ │ │ ├── AppDelegate.cpp │ │ │ ├── AppDelegate.h │ │ │ ├── LLLua.h │ │ │ ├── battle │ │ │ │ ├── BattelStack.cpp │ │ │ │ ├── BattleFileUtils.cpp │ │ │ │ ├── BattleFileUtils.h │ │ │ │ └── BattleStack.h │ │ │ ├── condition.cpp │ │ │ ├── conditon.h │ │ │ ├── crab │ │ │ │ ├── lua_crab.cpp │ │ │ │ └── lua_utf8.cpp │ │ │ ├── lua52.cpp │ │ │ ├── lua52.h │ │ │ ├── lua_module_register.h │ │ │ ├── lua_register │ │ │ │ ├── luaNetwork.cpp │ │ │ │ └── luaNetwork.h │ │ │ ├── network │ │ │ │ ├── MemoryPool.cpp │ │ │ │ ├── MemoryPool.h │ │ │ │ ├── Mutex.cpp │ │ │ │ ├── Mutex.h │ │ │ │ ├── network.cpp │ │ │ │ ├── network.h │ │ │ │ ├── packet.cpp │ │ │ │ └── packet.h │ │ │ ├── override │ │ │ │ ├── CCFileUtils.cpp │ │ │ │ └── CCFileUtils.h │ │ │ ├── pbc-lua.cpp │ │ │ └── pbc.h │ │ │ ├── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── AndroidManifest.xml │ │ │ ├── ant.properties │ │ │ ├── build-cfg.json │ │ │ ├── build.xml │ │ │ ├── gen │ │ │ │ └── com │ │ │ │ │ └── xzben │ │ │ │ │ └── gameclient │ │ │ │ │ ├── BuildConfig.java │ │ │ │ │ └── R.java │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── hellolua │ │ │ │ │ └── main.cpp │ │ │ ├── libs │ │ │ │ └── armeabi │ │ │ │ │ ├── gdb.setup │ │ │ │ │ ├── gdbserver │ │ │ │ │ └── libcocos2dlua.so │ │ │ ├── local.properties │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── icon.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ ├── com │ │ │ │ └── xzben │ │ │ │ │ ├── LuaJavaBridge.java │ │ │ │ │ └── Util.java │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── lua │ │ │ │ └── AppActivity.java │ │ │ ├── proj.ios_mac │ │ │ ├── GameClient.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── ios │ │ │ │ ├── AppController.h │ │ │ │ ├── AppController.mm │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Icon-100.png │ │ │ │ ├── Icon-114.png │ │ │ │ ├── Icon-120.png │ │ │ │ ├── Icon-144.png │ │ │ │ ├── Icon-152.png │ │ │ │ ├── Icon-29.png │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-50.png │ │ │ │ ├── Icon-57.png │ │ │ │ ├── Icon-58.png │ │ │ │ ├── Icon-72.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-80.png │ │ │ │ ├── Info.plist │ │ │ │ ├── Prefix.pch │ │ │ │ ├── RootViewController.h │ │ │ │ ├── RootViewController.mm │ │ │ │ └── main.m │ │ │ ├── libpbc.a │ │ │ └── mac │ │ │ │ ├── Icon.icns │ │ │ │ ├── Info.plist │ │ │ │ ├── Prefix.pch │ │ │ │ └── main.cpp │ │ │ ├── proj.linux │ │ │ └── main.cpp │ │ │ └── proj.win32 │ │ │ ├── Debug │ │ │ └── pbc.lib │ │ │ ├── GameClient.psess │ │ │ ├── GameClient.sln │ │ │ ├── GameClient.v12.suo │ │ │ ├── GameClient.vcxproj │ │ │ ├── GameClient.vcxproj.filters │ │ │ ├── GameClient.vcxproj.user │ │ │ ├── GameClient141208.vsp │ │ │ ├── build-cfg.json │ │ │ ├── game.rc │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── res │ │ │ └── game.ico │ │ │ └── resource.h │ ├── game.res │ ├── libcocos2d.exp │ ├── luaGameClient.config │ ├── luaGameClient.luaproj │ ├── res │ │ ├── profiles │ │ │ ├── ReadMe.lua │ │ │ ├── profiles.lua │ │ │ ├── propFilterWords.lua │ │ │ └── propForbidName.lua │ │ ├── proto │ │ │ └── Proto.pb │ │ └── ui │ │ │ ├── battle │ │ │ └── loading │ │ │ │ └── loading.png │ │ │ ├── close.png │ │ │ ├── encrypt │ │ │ ├── bang.png │ │ │ └── encrypt_bang.png │ │ │ ├── fonts │ │ │ └── arial.ttf │ │ │ └── yellow_edit.png │ ├── runtime │ │ └── android │ │ │ └── GameClient-debug.apk │ ├── simulator │ │ └── android │ │ │ └── GameClient-debug.apk │ └── src │ │ ├── Configure.lua │ │ ├── HotCodeInclude.lua │ │ ├── battle │ │ ├── BattleLauch.lua │ │ ├── battle.lua │ │ ├── engine │ │ │ ├── BattleComponent.lua │ │ │ ├── BattleEngine.lua │ │ │ ├── BattleEntity.lua │ │ │ ├── BattleScheduler.lua │ │ │ ├── BattleSystem.lua │ │ │ ├── SchedulerEntity.lua │ │ │ └── engine.lua │ │ ├── message │ │ │ ├── BattleBaseMessage.lua │ │ │ ├── MessageType.lua │ │ │ ├── message.lua │ │ │ ├── model2view │ │ │ │ └── model2view.lua │ │ │ └── view2model │ │ │ │ ├── StartGameMessage.lua │ │ │ │ └── view2model.lua │ │ ├── model │ │ │ ├── ModelMain.lua │ │ │ ├── ThreadEntry.lua │ │ │ ├── model.lua │ │ │ └── system │ │ │ │ ├── enter │ │ │ │ └── BattleEnterSystem.lua │ │ │ │ └── system.lua │ │ ├── pub │ │ │ ├── EntityType.lua │ │ │ └── pub.lua │ │ ├── stack │ │ │ ├── BaseStack.lua │ │ │ ├── BaseStackManager.lua │ │ │ ├── CoroutineStack.lua │ │ │ ├── ModelStackManager.lua │ │ │ ├── ThreadStack.lua │ │ │ ├── ViewStackManager.lua │ │ │ └── stack.lua │ │ └── view │ │ │ ├── ViewManager.lua │ │ │ ├── scene │ │ │ ├── BaseBattleScene.lua │ │ │ └── BattleLoadingScene.lua │ │ │ └── view.lua │ │ ├── cocos │ │ ├── cocos2d │ │ │ ├── Cocos2d.lua │ │ │ ├── Cocos2dConstants.lua │ │ │ ├── DeprecatedCocos2dClass.lua │ │ │ ├── DeprecatedCocos2dEnum.lua │ │ │ ├── DeprecatedCocos2dFunc.lua │ │ │ ├── DeprecatedOpenglEnum.lua │ │ │ ├── DrawPrimitives.lua │ │ │ ├── Opengl.lua │ │ │ ├── OpenglConstants.lua │ │ │ ├── bitExtend.lua │ │ │ ├── extern.lua │ │ │ ├── json.lua │ │ │ ├── luaj.lua │ │ │ └── luaoc.lua │ │ ├── cocosbuilder │ │ │ ├── CCBReaderLoad.lua │ │ │ └── DeprecatedCocosBuilderClass.lua │ │ ├── cocosdenshion │ │ │ ├── AudioEngine.lua │ │ │ ├── DeprecatedCocosDenshionClass.lua │ │ │ └── DeprecatedCocosDenshionFunc.lua │ │ ├── cocostudio │ │ │ ├── CocoStudio.lua │ │ │ ├── DeprecatedCocoStudioClass.lua │ │ │ ├── DeprecatedCocoStudioFunc.lua │ │ │ └── StudioConstants.lua │ │ ├── controller │ │ │ └── ControllerConstants.lua │ │ ├── extension │ │ │ ├── DeprecatedExtensionClass.lua │ │ │ ├── DeprecatedExtensionEnum.lua │ │ │ ├── DeprecatedExtensionFunc.lua │ │ │ └── ExtensionConstants.lua │ │ ├── init.lua │ │ ├── network │ │ │ ├── DeprecatedNetworkClass.lua │ │ │ ├── DeprecatedNetworkEnum.lua │ │ │ ├── DeprecatedNetworkFunc.lua │ │ │ └── NetworkConstants.lua │ │ ├── spine │ │ │ └── SpineConstants.lua │ │ └── ui │ │ │ ├── DeprecatedUIEnum.lua │ │ │ ├── DeprecatedUIFunc.lua │ │ │ ├── GuiConstants.lua │ │ │ └── experimentalUIConstants.lua │ │ ├── core │ │ ├── CocoStudioHelper.lua │ │ ├── EventDispatcher.lua │ │ ├── FiniteStateMachine.lua │ │ ├── Session.lua │ │ ├── VisibleRect.lua │ │ ├── core.lua │ │ ├── luaBridge │ │ │ ├── LuaBridge.lua │ │ │ ├── LuaJavaBridge.lua │ │ │ └── LuaOCBridge.lua │ │ ├── network │ │ │ ├── Network.lua │ │ │ ├── ProtoRegister.lua │ │ │ ├── net.lua │ │ │ └── protobuf.lua │ │ ├── struct │ │ │ ├── Queue.lua │ │ │ ├── Stack.lua │ │ │ └── struct.lua │ │ └── tools │ │ │ ├── CocoStudioHelper.lua │ │ │ ├── Helper.lua │ │ │ ├── LoadDelay.lua │ │ │ ├── PathFindHelper.lua │ │ │ ├── SensitiveWordHelper.lua │ │ │ ├── TileMapHelper.lua │ │ │ ├── TouchHelper.lua │ │ │ ├── VisibleRect.lua │ │ │ └── tools.lua │ │ ├── game │ │ └── game.lua │ │ ├── main.lua │ │ ├── prime │ │ ├── common │ │ │ ├── base │ │ │ │ ├── BaseScene.lua │ │ │ │ ├── CBase.lua │ │ │ │ ├── MBase.lua │ │ │ │ └── VBase.lua │ │ │ ├── common.lua │ │ │ └── control │ │ │ │ ├── DragSprite.lua │ │ │ │ ├── ScrollMap.lua │ │ │ │ └── SmartPageView.lua │ │ ├── encrypt │ │ │ └── EncryptScene.lua │ │ ├── lauchScene │ │ │ └── LauchScene.lua │ │ ├── luaBridge │ │ │ └── LuaBridgeScene.lua │ │ ├── network │ │ │ └── NetworkScene.lua │ │ └── prime.lua │ │ └── trackback.lua └── cocos2dx │ └── ReadMe.txt ├── server ├── 3rd │ ├── Makefile │ └── Makefile-pbc-lua ├── config │ ├── config.c1 │ └── config.cm ├── source │ ├── .agent.lua.swp │ ├── agent.lua │ ├── agent_pool.lua │ ├── auth.lua │ ├── class.lua │ ├── cluster1.lua │ ├── clustername.lua │ ├── libs │ │ └── protobuf.so │ ├── main.lua │ ├── player │ │ ├── player_define.lua │ │ ├── player_handle.lua │ │ ├── player_login.lua │ │ └── playermng.lua │ ├── playermng.lua │ ├── preload.lua │ ├── proto │ │ ├── Proto.pb │ │ ├── Proto.proto │ │ ├── protobuf.lua │ │ └── protoregister.lua │ ├── protobuf.lua │ ├── transProto.sh │ ├── watchdog.lua │ └── xzben_gate.lua └── start_server.sh └── tools └── encrypt ├── Chrysanthemum.jpg ├── bang - 副本 - 副本.png ├── bang.png ├── decryptTest.bat ├── encrypt.exe ├── encrypt ├── Debug │ └── vc120.idb ├── encrypt.sln ├── encrypt.vcxproj └── encrypt.vcxproj.filters ├── encryptTest.bat ├── project └── encryptTool.v12.suo ├── source ├── ResourceEncrypt.cpp ├── ResourceEncrypt.h └── main.cpp └── uires └── encrypt.pjd.bak /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/AUTHORS.txt -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/CHANGES.txt -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/COPYING.txt -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/bin/Win32/Microsoft.DTfW.DHL.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/bin/Win32/Microsoft.DTfW.DHL.manifest -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/bin/Win64/Microsoft.DTfW.DHL.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/bin/Win64/Microsoft.DTfW.DHL.manifest -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/include/vld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/include/vld.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/include/vld_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/include/vld_def.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/lib/Win32/vld.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/lib/Win32/vld.lib -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/lib/Win64/vld.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/lib/Win64/vld.lib -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/callstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/callstack.cpp -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/callstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/callstack.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/criticalsection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/criticalsection.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/crtmfcpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/crtmfcpatch.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/dllspatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/dllspatches.cpp -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/map.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/ntapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/ntapi.cpp -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/ntapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/ntapi.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/resource.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/set.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/stdafx.cpp -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/stdafx.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/tree.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/utility.cpp -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/utility.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/version.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vld.cpp -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vld.dll.dependency.x64.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vld.dll.dependency.x64.manifest -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vld.dll.dependency.x86.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vld.dll.dependency.x86.manifest -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vld.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vld.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vld.rc -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vld.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vld.vcxproj -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vld.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vld.vcxproj.filters -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vld_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vld_def.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vld_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vld_hooks.cpp -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vldapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vldapi.cpp -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vldheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vldheap.cpp -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vldheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vldheap.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/src/vldint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/src/vldint.h -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/unins000.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/unins000.dat -------------------------------------------------------------------------------- /client/3rd/Visual Leak Detector/vld.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/3rd/Visual Leak Detector/vld.ini -------------------------------------------------------------------------------- /client/GameClient/.cocos-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/.cocos-project.json -------------------------------------------------------------------------------- /client/GameClient/.gitignore: -------------------------------------------------------------------------------- 1 | frameworks/cocos2d-x/ -------------------------------------------------------------------------------- /client/GameClient/GameClient.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/GameClient.exp -------------------------------------------------------------------------------- /client/GameClient/GameClient/GameClient.luaprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/GameClient/GameClient.luaprj -------------------------------------------------------------------------------- /client/GameClient/frameworks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/CMakeLists.txt -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/AppDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/AppDelegate.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/AppDelegate.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/LLLua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/LLLua.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/battle/BattelStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/battle/BattelStack.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/battle/BattleFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/battle/BattleFileUtils.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/battle/BattleFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/battle/BattleFileUtils.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/battle/BattleStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/battle/BattleStack.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/condition.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/conditon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/conditon.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/crab/lua_crab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/crab/lua_crab.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/crab/lua_utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/crab/lua_utf8.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/lua52.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/lua52.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/lua52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/lua52.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/lua_module_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/lua_module_register.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/lua_register/luaNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/lua_register/luaNetwork.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/lua_register/luaNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/lua_register/luaNetwork.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/network/MemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/network/MemoryPool.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/network/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/network/MemoryPool.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/network/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/network/Mutex.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/network/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/network/Mutex.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/network/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/network/network.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/network/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/network/network.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/network/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/network/packet.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/network/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/network/packet.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/override/CCFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/override/CCFileUtils.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/override/CCFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/override/CCFileUtils.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/pbc-lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/pbc-lua.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/Classes/pbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/Classes/pbc.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/.classpath -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/.project -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/AndroidManifest.xml -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/ant.properties -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/build-cfg.json -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/build.xml -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/gen/com/xzben/gameclient/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/gen/com/xzben/gameclient/BuildConfig.java -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/gen/com/xzben/gameclient/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/gen/com/xzben/gameclient/R.java -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/jni/Android.mk -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/jni/Application.mk -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/jni/hellolua/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/jni/hellolua/main.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/libs/armeabi/gdb.setup: -------------------------------------------------------------------------------- 1 | set solib-search-path ./obj/local/armeabi 2 | -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/libs/armeabi/gdbserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/libs/armeabi/gdbserver -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/libs/armeabi/libcocos2dlua.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/libs/armeabi/libcocos2dlua.so -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/local.properties -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/proguard-project.txt -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/project.properties -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/res/values/strings.xml -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/src/com/xzben/LuaJavaBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/src/com/xzben/LuaJavaBridge.java -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/src/com/xzben/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/src/com/xzben/Util.java -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.android/src/org/cocos2dx/lua/AppActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.android/src/org/cocos2dx/lua/AppActivity.java -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/GameClient.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/GameClient.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/AppController.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/AppController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/AppController.mm -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default-667h@2x.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default-736h@3x.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Info.plist -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/Prefix.pch -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/RootViewController.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/RootViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/RootViewController.mm -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/ios/main.m -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/libpbc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/libpbc.a -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/mac/Info.plist -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/mac/Prefix.pch -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.ios_mac/mac/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.ios_mac/mac/main.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.linux/main.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/Debug/pbc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/Debug/pbc.lib -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/GameClient.psess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/GameClient.psess -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/GameClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/GameClient.sln -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/GameClient.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/GameClient.v12.suo -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/GameClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/GameClient.vcxproj -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/GameClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/GameClient.vcxproj.filters -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/GameClient.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/GameClient.vcxproj.user -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/GameClient141208.vsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/GameClient141208.vsp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/build-cfg.json -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/game.rc -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/main.cpp -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/main.h -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/res/game.ico -------------------------------------------------------------------------------- /client/GameClient/frameworks/runtime-src/proj.win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/frameworks/runtime-src/proj.win32/resource.h -------------------------------------------------------------------------------- /client/GameClient/game.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/game.res -------------------------------------------------------------------------------- /client/GameClient/libcocos2d.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/libcocos2d.exp -------------------------------------------------------------------------------- /client/GameClient/luaGameClient.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/luaGameClient.config -------------------------------------------------------------------------------- /client/GameClient/luaGameClient.luaproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/luaGameClient.luaproj -------------------------------------------------------------------------------- /client/GameClient/res/profiles/ReadMe.lua: -------------------------------------------------------------------------------- 1 | --[[ 2 | 此目录存放系统中(所有的配置表 3 | --]] -------------------------------------------------------------------------------- /client/GameClient/res/profiles/profiles.lua: -------------------------------------------------------------------------------- 1 | module("profile", package.seeall) 2 | 3 | 4 | -------------------------------------------------------------------------------- /client/GameClient/res/profiles/propFilterWords.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/res/profiles/propFilterWords.lua -------------------------------------------------------------------------------- /client/GameClient/res/profiles/propForbidName.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/res/profiles/propForbidName.lua -------------------------------------------------------------------------------- /client/GameClient/res/proto/Proto.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/res/proto/Proto.pb -------------------------------------------------------------------------------- /client/GameClient/res/ui/battle/loading/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/res/ui/battle/loading/loading.png -------------------------------------------------------------------------------- /client/GameClient/res/ui/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/res/ui/close.png -------------------------------------------------------------------------------- /client/GameClient/res/ui/encrypt/bang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/res/ui/encrypt/bang.png -------------------------------------------------------------------------------- /client/GameClient/res/ui/encrypt/encrypt_bang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/res/ui/encrypt/encrypt_bang.png -------------------------------------------------------------------------------- /client/GameClient/res/ui/fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/res/ui/fonts/arial.ttf -------------------------------------------------------------------------------- /client/GameClient/res/ui/yellow_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/res/ui/yellow_edit.png -------------------------------------------------------------------------------- /client/GameClient/runtime/android/GameClient-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/runtime/android/GameClient-debug.apk -------------------------------------------------------------------------------- /client/GameClient/simulator/android/GameClient-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/simulator/android/GameClient-debug.apk -------------------------------------------------------------------------------- /client/GameClient/src/Configure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/Configure.lua -------------------------------------------------------------------------------- /client/GameClient/src/HotCodeInclude.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/HotCodeInclude.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/BattleLauch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/BattleLauch.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/battle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/battle.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/engine/BattleComponent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/engine/BattleComponent.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/engine/BattleEngine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/engine/BattleEngine.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/engine/BattleEntity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/engine/BattleEntity.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/engine/BattleScheduler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/engine/BattleScheduler.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/engine/BattleSystem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/engine/BattleSystem.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/engine/SchedulerEntity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/engine/SchedulerEntity.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/engine/engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/engine/engine.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/message/BattleBaseMessage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/message/BattleBaseMessage.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/message/MessageType.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/message/MessageType.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/message/message.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/message/message.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/message/model2view/model2view.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/message/model2view/model2view.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/message/view2model/StartGameMessage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/message/view2model/StartGameMessage.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/message/view2model/view2model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/message/view2model/view2model.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/model/ModelMain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/model/ModelMain.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/model/ThreadEntry.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/model/ThreadEntry.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/model/model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/model/model.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/model/system/enter/BattleEnterSystem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/model/system/enter/BattleEnterSystem.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/model/system/system.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/model/system/system.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/pub/EntityType.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/pub/EntityType.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/pub/pub.lua: -------------------------------------------------------------------------------- 1 | module("battle.pub", package.seeall) 2 | 3 | return nil -------------------------------------------------------------------------------- /client/GameClient/src/battle/stack/BaseStack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/stack/BaseStack.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/stack/BaseStackManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/stack/BaseStackManager.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/stack/CoroutineStack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/stack/CoroutineStack.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/stack/ModelStackManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/stack/ModelStackManager.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/stack/ThreadStack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/stack/ThreadStack.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/stack/ViewStackManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/stack/ViewStackManager.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/stack/stack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/stack/stack.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/view/ViewManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/view/ViewManager.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/view/scene/BaseBattleScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/view/scene/BaseBattleScene.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/view/scene/BattleLoadingScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/view/scene/BattleLoadingScene.lua -------------------------------------------------------------------------------- /client/GameClient/src/battle/view/view.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/battle/view/view.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/Cocos2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/Cocos2d.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/Cocos2dConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/Cocos2dConstants.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/DeprecatedCocos2dClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/DeprecatedCocos2dClass.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/DeprecatedCocos2dEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/DeprecatedCocos2dEnum.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/DeprecatedCocos2dFunc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/DeprecatedCocos2dFunc.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/DeprecatedOpenglEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/DeprecatedOpenglEnum.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/DrawPrimitives.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/DrawPrimitives.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/Opengl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/Opengl.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/OpenglConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/OpenglConstants.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/bitExtend.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/bitExtend.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/extern.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/extern.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/json.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/luaj.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/luaj.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocos2d/luaoc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocos2d/luaoc.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocosbuilder/CCBReaderLoad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocosbuilder/CCBReaderLoad.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocosbuilder/DeprecatedCocosBuilderClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocosbuilder/DeprecatedCocosBuilderClass.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocosdenshion/AudioEngine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocosdenshion/AudioEngine.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocosdenshion/DeprecatedCocosDenshionClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocosdenshion/DeprecatedCocosDenshionClass.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocosdenshion/DeprecatedCocosDenshionFunc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocosdenshion/DeprecatedCocosDenshionFunc.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocostudio/CocoStudio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocostudio/CocoStudio.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocostudio/DeprecatedCocoStudioClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocostudio/DeprecatedCocoStudioClass.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocostudio/DeprecatedCocoStudioFunc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocostudio/DeprecatedCocoStudioFunc.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/cocostudio/StudioConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/cocostudio/StudioConstants.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/controller/ControllerConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/controller/ControllerConstants.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/extension/DeprecatedExtensionClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/extension/DeprecatedExtensionClass.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/extension/DeprecatedExtensionEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/extension/DeprecatedExtensionEnum.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/extension/DeprecatedExtensionFunc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/extension/DeprecatedExtensionFunc.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/extension/ExtensionConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/extension/ExtensionConstants.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/init.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/network/DeprecatedNetworkClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/network/DeprecatedNetworkClass.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/network/DeprecatedNetworkEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/network/DeprecatedNetworkEnum.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/network/DeprecatedNetworkFunc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/network/DeprecatedNetworkFunc.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/network/NetworkConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/network/NetworkConstants.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/spine/SpineConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/spine/SpineConstants.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/ui/DeprecatedUIEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/ui/DeprecatedUIEnum.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/ui/DeprecatedUIFunc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/ui/DeprecatedUIFunc.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/ui/GuiConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/ui/GuiConstants.lua -------------------------------------------------------------------------------- /client/GameClient/src/cocos/ui/experimentalUIConstants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/cocos/ui/experimentalUIConstants.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/CocoStudioHelper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/CocoStudioHelper.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/EventDispatcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/EventDispatcher.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/FiniteStateMachine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/FiniteStateMachine.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/Session.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/Session.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/VisibleRect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/VisibleRect.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/core.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/luaBridge/LuaBridge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/luaBridge/LuaBridge.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/luaBridge/LuaJavaBridge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/luaBridge/LuaJavaBridge.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/luaBridge/LuaOCBridge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/luaBridge/LuaOCBridge.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/network/Network.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/network/Network.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/network/ProtoRegister.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/network/ProtoRegister.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/network/net.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/network/net.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/network/protobuf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/network/protobuf.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/struct/Queue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/struct/Queue.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/struct/Stack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/struct/Stack.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/struct/struct.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/struct/struct.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/tools/CocoStudioHelper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/tools/CocoStudioHelper.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/tools/Helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/tools/Helper.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/tools/LoadDelay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/tools/LoadDelay.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/tools/PathFindHelper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/tools/PathFindHelper.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/tools/SensitiveWordHelper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/tools/SensitiveWordHelper.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/tools/TileMapHelper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/tools/TileMapHelper.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/tools/TouchHelper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/tools/TouchHelper.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/tools/VisibleRect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/tools/VisibleRect.lua -------------------------------------------------------------------------------- /client/GameClient/src/core/tools/tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/core/tools/tools.lua -------------------------------------------------------------------------------- /client/GameClient/src/game/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/game/game.lua -------------------------------------------------------------------------------- /client/GameClient/src/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/main.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/common/base/BaseScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/common/base/BaseScene.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/common/base/CBase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/common/base/CBase.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/common/base/MBase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/common/base/MBase.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/common/base/VBase.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/common/base/VBase.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/common/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/common/common.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/common/control/DragSprite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/common/control/DragSprite.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/common/control/ScrollMap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/common/control/ScrollMap.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/common/control/SmartPageView.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/common/control/SmartPageView.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/encrypt/EncryptScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/encrypt/EncryptScene.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/lauchScene/LauchScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/lauchScene/LauchScene.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/luaBridge/LuaBridgeScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/luaBridge/LuaBridgeScene.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/network/NetworkScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/network/NetworkScene.lua -------------------------------------------------------------------------------- /client/GameClient/src/prime/prime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/prime/prime.lua -------------------------------------------------------------------------------- /client/GameClient/src/trackback.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/GameClient/src/trackback.lua -------------------------------------------------------------------------------- /client/cocos2dx/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/client/cocos2dx/ReadMe.txt -------------------------------------------------------------------------------- /server/3rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/3rd/Makefile -------------------------------------------------------------------------------- /server/3rd/Makefile-pbc-lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/3rd/Makefile-pbc-lua -------------------------------------------------------------------------------- /server/config/config.c1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/config/config.c1 -------------------------------------------------------------------------------- /server/config/config.cm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/config/config.cm -------------------------------------------------------------------------------- /server/source/.agent.lua.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/.agent.lua.swp -------------------------------------------------------------------------------- /server/source/agent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/agent.lua -------------------------------------------------------------------------------- /server/source/agent_pool.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/agent_pool.lua -------------------------------------------------------------------------------- /server/source/auth.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/auth.lua -------------------------------------------------------------------------------- /server/source/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/class.lua -------------------------------------------------------------------------------- /server/source/cluster1.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/source/clustername.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/clustername.lua -------------------------------------------------------------------------------- /server/source/libs/protobuf.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/libs/protobuf.so -------------------------------------------------------------------------------- /server/source/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/main.lua -------------------------------------------------------------------------------- /server/source/player/player_define.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/player/player_define.lua -------------------------------------------------------------------------------- /server/source/player/player_handle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/player/player_handle.lua -------------------------------------------------------------------------------- /server/source/player/player_login.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/player/player_login.lua -------------------------------------------------------------------------------- /server/source/player/playermng.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/player/playermng.lua -------------------------------------------------------------------------------- /server/source/playermng.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/playermng.lua -------------------------------------------------------------------------------- /server/source/preload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/preload.lua -------------------------------------------------------------------------------- /server/source/proto/Proto.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/proto/Proto.pb -------------------------------------------------------------------------------- /server/source/proto/Proto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/proto/Proto.proto -------------------------------------------------------------------------------- /server/source/proto/protobuf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/proto/protobuf.lua -------------------------------------------------------------------------------- /server/source/proto/protoregister.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/proto/protoregister.lua -------------------------------------------------------------------------------- /server/source/protobuf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/protobuf.lua -------------------------------------------------------------------------------- /server/source/transProto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/transProto.sh -------------------------------------------------------------------------------- /server/source/watchdog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/watchdog.lua -------------------------------------------------------------------------------- /server/source/xzben_gate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/source/xzben_gate.lua -------------------------------------------------------------------------------- /server/start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/server/start_server.sh -------------------------------------------------------------------------------- /tools/encrypt/Chrysanthemum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/Chrysanthemum.jpg -------------------------------------------------------------------------------- /tools/encrypt/bang - 副本 - 副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/bang - 副本 - 副本.png -------------------------------------------------------------------------------- /tools/encrypt/bang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/bang.png -------------------------------------------------------------------------------- /tools/encrypt/decryptTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/decryptTest.bat -------------------------------------------------------------------------------- /tools/encrypt/encrypt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/encrypt.exe -------------------------------------------------------------------------------- /tools/encrypt/encrypt/Debug/vc120.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/encrypt/Debug/vc120.idb -------------------------------------------------------------------------------- /tools/encrypt/encrypt/encrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/encrypt/encrypt.sln -------------------------------------------------------------------------------- /tools/encrypt/encrypt/encrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/encrypt/encrypt.vcxproj -------------------------------------------------------------------------------- /tools/encrypt/encrypt/encrypt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/encrypt/encrypt.vcxproj.filters -------------------------------------------------------------------------------- /tools/encrypt/encryptTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/encryptTest.bat -------------------------------------------------------------------------------- /tools/encrypt/project/encryptTool.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/project/encryptTool.v12.suo -------------------------------------------------------------------------------- /tools/encrypt/source/ResourceEncrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/source/ResourceEncrypt.cpp -------------------------------------------------------------------------------- /tools/encrypt/source/ResourceEncrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/source/ResourceEncrypt.h -------------------------------------------------------------------------------- /tools/encrypt/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/source/main.cpp -------------------------------------------------------------------------------- /tools/encrypt/uires/encrypt.pjd.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xzben/GameFrame/HEAD/tools/encrypt/uires/encrypt.pjd.bak --------------------------------------------------------------------------------