├── .gitattributes ├── .gitignore ├── README.MD ├── client_cocos ├── .gitignore ├── README.md ├── assets │ ├── Scene.meta │ ├── Scene │ │ ├── BrnnRoom.fire │ │ ├── BrnnRoom.fire.meta │ │ ├── Home.fire │ │ ├── Home.fire.meta │ │ ├── Login.fire │ │ └── Login.fire.meta │ ├── Script.meta │ ├── Script │ │ ├── pomelo.meta │ │ ├── pomelo │ │ │ ├── pomelo-client.js │ │ │ ├── pomelo-client.js.meta │ │ │ ├── protobuf.js │ │ │ ├── protobuf.js.meta │ │ │ ├── protocol.js │ │ │ └── protocol.js.meta │ │ ├── protocol.meta │ │ ├── protocol │ │ │ ├── BrnnProto.js │ │ │ ├── BrnnProto.js.meta │ │ │ ├── GateConnector.js │ │ │ ├── GateConnector.js.meta │ │ │ ├── MResponse.js │ │ │ └── MResponse.js.meta │ │ ├── tool.meta │ │ ├── tool │ │ │ ├── AlertView.js │ │ │ ├── AlertView.js.meta │ │ │ ├── PokerItem.js │ │ │ └── PokerItem.js.meta │ │ ├── ui.meta │ │ └── ui │ │ │ ├── BrnnRoomController.js │ │ │ ├── BrnnRoomController.js.meta │ │ │ ├── ChipBarScript.js │ │ │ ├── ChipBarScript.js.meta │ │ │ ├── ChipViewScript.js │ │ │ ├── ChipViewScript.js.meta │ │ │ ├── HomeController.js │ │ │ ├── HomeController.js.meta │ │ │ ├── LoginController.js │ │ │ └── LoginController.js.meta │ ├── Texture.meta │ ├── Texture │ │ ├── HelloWorld.png │ │ ├── HelloWorld.png.meta │ │ ├── singleColor.png │ │ └── singleColor.png.meta │ ├── resources.meta │ └── resources │ │ ├── font.meta │ │ ├── font │ │ ├── ROMIC.TTF │ │ └── ROMIC.TTF.meta │ │ ├── png.meta │ │ ├── png │ │ ├── 10A.png │ │ ├── 10A.png.meta │ │ ├── 10B.png │ │ ├── 10B.png.meta │ │ ├── 10C.png │ │ ├── 10C.png.meta │ │ ├── 10D.png │ │ ├── 10D.png.meta │ │ ├── 11A.png │ │ ├── 11A.png.meta │ │ ├── 11B.png │ │ ├── 11B.png.meta │ │ ├── 11C.png │ │ ├── 11C.png.meta │ │ ├── 11D.png │ │ ├── 11D.png.meta │ │ ├── 12A.png │ │ ├── 12A.png.meta │ │ ├── 12B.png │ │ ├── 12B.png.meta │ │ ├── 12C.png │ │ ├── 12C.png.meta │ │ ├── 12D.png │ │ ├── 12D.png.meta │ │ ├── 13A.png │ │ ├── 13A.png.meta │ │ ├── 13B.png │ │ ├── 13B.png.meta │ │ ├── 13C.png │ │ ├── 13C.png.meta │ │ ├── 13D.png │ │ ├── 13D.png.meta │ │ ├── 1A.png │ │ ├── 1A.png.meta │ │ ├── 1B.png │ │ ├── 1B.png.meta │ │ ├── 1C.png │ │ ├── 1C.png.meta │ │ ├── 1D.png │ │ ├── 1D.png.meta │ │ ├── 2A.png │ │ ├── 2A.png.meta │ │ ├── 2B.png │ │ ├── 2B.png.meta │ │ ├── 2C.png │ │ ├── 2C.png.meta │ │ ├── 2D.png │ │ ├── 2D.png.meta │ │ ├── 3A.png │ │ ├── 3A.png.meta │ │ ├── 3B.png │ │ ├── 3B.png.meta │ │ ├── 3C.png │ │ ├── 3C.png.meta │ │ ├── 3D.png │ │ ├── 3D.png.meta │ │ ├── 4A.png │ │ ├── 4A.png.meta │ │ ├── 4B.png │ │ ├── 4B.png.meta │ │ ├── 4C.png │ │ ├── 4C.png.meta │ │ ├── 4D.png │ │ ├── 4D.png.meta │ │ ├── 5A.png │ │ ├── 5A.png.meta │ │ ├── 5B.png │ │ ├── 5B.png.meta │ │ ├── 5C.png │ │ ├── 5C.png.meta │ │ ├── 5D.png │ │ ├── 5D.png.meta │ │ ├── 6A.png │ │ ├── 6A.png.meta │ │ ├── 6B.png │ │ ├── 6B.png.meta │ │ ├── 6C.png │ │ ├── 6C.png.meta │ │ ├── 6D.png │ │ ├── 6D.png.meta │ │ ├── 7A.png │ │ ├── 7A.png.meta │ │ ├── 7B.png │ │ ├── 7B.png.meta │ │ ├── 7C.png │ │ ├── 7C.png.meta │ │ ├── 7D.png │ │ ├── 7D.png.meta │ │ ├── 8A.png │ │ ├── 8A.png.meta │ │ ├── 8B.png │ │ ├── 8B.png.meta │ │ ├── 8C.png │ │ ├── 8C.png.meta │ │ ├── 8D.png │ │ ├── 8D.png.meta │ │ ├── 9A.png │ │ ├── 9A.png.meta │ │ ├── 9B.png │ │ ├── 9B.png.meta │ │ ├── 9C.png │ │ ├── 9C.png.meta │ │ ├── 9D.png │ │ ├── 9D.png.meta │ │ ├── FontAtlas.labelatlas │ │ ├── FontAtlas.labelatlas.meta │ │ ├── b_n.jpg │ │ ├── b_n.jpg.meta │ │ ├── bai19_n.png │ │ ├── bai19_n.png.meta │ │ ├── bai1_n.jpg │ │ ├── bai1_n.jpg.meta │ │ ├── bai2_n.png │ │ ├── bai2_n.png.meta │ │ ├── bai71_n.png │ │ ├── bai71_n.png.meta │ │ ├── brnnstate_0.png │ │ ├── brnnstate_0.png.meta │ │ ├── brnnstate_1.png │ │ ├── brnnstate_1.png.meta │ │ ├── brnnstate_2.png │ │ ├── brnnstate_2.png.meta │ │ ├── chip.png │ │ ├── chip.png.meta │ │ ├── chip_b1.png │ │ ├── chip_b1.png.meta │ │ ├── chip_b5.png │ │ ├── chip_b5.png.meta │ │ ├── chip_q1.png │ │ ├── chip_q1.png.meta │ │ ├── chip_q5.png │ │ ├── chip_q5.png.meta │ │ ├── chip_w1.png │ │ ├── chip_w1.png.meta │ │ ├── chip_w5.png │ │ ├── chip_w5.png.meta │ │ ├── dazhexian.png │ │ ├── dazhexian.png.meta │ │ ├── exit_n.png │ │ ├── exit_n.png.meta │ │ ├── exit_y.png │ │ ├── exit_y.png.meta │ │ ├── la28-2_n.png │ │ ├── la28-2_n.png.meta │ │ ├── la28-3_n.png │ │ ├── la28-3_n.png.meta │ │ ├── n1.png │ │ ├── n1.png.meta │ │ ├── n2.png │ │ ├── n2.png.meta │ │ ├── n3.png │ │ ├── n3.png.meta │ │ ├── n4.png │ │ ├── n4.png.meta │ │ ├── n5.png │ │ ├── n5.png.meta │ │ ├── n6.png │ │ ├── n6.png.meta │ │ ├── n7.png │ │ ├── n7.png.meta │ │ ├── n8.png │ │ ├── n8.png.meta │ │ ├── n9.png │ │ ├── n9.png.meta │ │ ├── nm.png │ │ ├── nm.png.meta │ │ ├── nn.png │ │ ├── nn.png.meta │ │ ├── nt1_n.png │ │ ├── nt1_n.png.meta │ │ ├── nt_n.png │ │ ├── nt_n.png.meta │ │ ├── nwh.png │ │ ├── nwh.png.meta │ │ ├── nwx.png │ │ ├── nwx.png.meta │ │ ├── nzd.png │ │ ├── nzd.png.meta │ │ ├── pk_back.png │ │ ├── pk_back.png.meta │ │ ├── po9_n.png │ │ ├── po9_n.png.meta │ │ ├── px2_n.png │ │ ├── px2_n.png.meta │ │ ├── px3_n.png │ │ ├── px3_n.png.meta │ │ ├── shu.png │ │ ├── shu.png.meta │ │ ├── state_0.png │ │ ├── state_0.png.meta │ │ ├── state_1.png │ │ ├── state_1.png.meta │ │ ├── state_2.png │ │ ├── state_2.png.meta │ │ ├── wen24_n.png │ │ ├── wen24_n.png.meta │ │ ├── wen25_n.png │ │ ├── wen25_n.png.meta │ │ ├── wen50_n.png │ │ ├── wen50_n.png.meta │ │ ├── wen51_n.png │ │ ├── wen51_n.png.meta │ │ ├── x_n.png │ │ ├── x_n.png.meta │ │ ├── x_y.png │ │ ├── x_y.png.meta │ │ ├── xiao1_n.png │ │ ├── xiao1_n.png.meta │ │ ├── xiao2_n.png │ │ ├── xiao2_n.png.meta │ │ ├── xiaolight_n.png │ │ ├── xiaolight_n.png.meta │ │ ├── ying.png │ │ └── ying.png.meta │ │ ├── prefab.meta │ │ └── prefab │ │ ├── AlertView.prefab │ │ ├── AlertView.prefab.meta │ │ ├── ChipItem.prefab │ │ ├── ChipItem.prefab.meta │ │ ├── MutiLabel.prefab │ │ ├── MutiLabel.prefab.meta │ │ ├── PokerItem.prefab │ │ └── PokerItem.prefab.meta ├── creator.d.ts ├── jsconfig.json ├── project.json ├── settings │ ├── builder.json │ ├── builder.panel.json │ └── project.json ├── template-banner.png └── template.json ├── game-server ├── .vscode │ ├── launch.json │ └── settings.json ├── app.ts ├── app │ ├── dao │ │ └── mysqlHelper.ts │ ├── game │ │ ├── DouniuRoom.ts │ │ ├── GMResponse.ts │ │ ├── PokerManager.ts │ │ ├── RoomManager.ts │ │ └── UToken.ts │ └── servers │ │ ├── brnn │ │ ├── handler │ │ │ └── brnnHandler.ts │ │ └── remote │ │ │ └── brnnRemote.ts │ │ ├── connector │ │ ├── handler │ │ │ └── entryHandler.ts │ │ └── remote │ │ │ └── authRemoter.ts │ │ └── gate │ │ └── handler │ │ └── gateHandler.ts ├── dist │ ├── app.js │ ├── app │ │ ├── dao │ │ │ └── mysqlHelper.js │ │ ├── game │ │ │ ├── DouniuRoom.js │ │ │ ├── GMResponse.js │ │ │ ├── PokerManager.js │ │ │ ├── RoomManager.js │ │ │ └── UToken.js │ │ └── servers │ │ │ ├── brnn │ │ │ ├── handler │ │ │ │ └── brnnHandler.js │ │ │ └── remote │ │ │ │ └── brnnRemote.js │ │ │ ├── connector │ │ │ ├── handler │ │ │ │ └── entryHandler.js │ │ │ └── remote │ │ │ │ └── authRemoter.js │ │ │ └── gate │ │ │ └── handler │ │ │ └── gateHandler.js │ ├── config │ │ ├── adminServer.json │ │ ├── adminUser.json │ │ ├── clientProtos.json │ │ ├── dictionary.json │ │ ├── log4js.json │ │ ├── master.json │ │ ├── mysql.json │ │ ├── serverProtos.json │ │ └── servers.json │ ├── logs │ │ ├── admin.log │ │ ├── con-log-brnn-server-1.log │ │ ├── con-log-chat-server-1.log │ │ ├── con-log-connector-server-1.log │ │ ├── con-log-gate-server-1.log │ │ ├── con-log-jdnn-server-1.log │ │ ├── con-log-master-server-1.log │ │ ├── crash.log │ │ ├── forward-log-brnn-server-1.log │ │ ├── forward-log-chat-server-1.log │ │ ├── forward-log-connector-server-1.log │ │ ├── forward-log-gate-server-1.log │ │ ├── forward-log-jdnn-server-1.log │ │ ├── forward-log-master-server-1.log │ │ ├── pinus-admin.log │ │ ├── pinus-brnn-server-1.log │ │ ├── pinus-chat-server-1.log │ │ ├── pinus-connector-server-1.log │ │ ├── pinus-gate-server-1.log │ │ ├── pinus-jdnn-server-1.log │ │ ├── pinus-master-server-1.log │ │ ├── pinus-rpc-brnn-server-1.log │ │ ├── pinus-rpc-chat-server-1.log │ │ ├── pinus-rpc-connector-server-1.log │ │ ├── pinus-rpc-gate-server-1.log │ │ ├── pinus-rpc-jdnn-server-1.log │ │ ├── pinus-rpc-master-server-1.log │ │ ├── rpc-debug-brnn-server-1.log │ │ ├── rpc-debug-chat-server-1.log │ │ ├── rpc-debug-connector-server-1.log │ │ ├── rpc-debug-gate-server-1.log │ │ ├── rpc-debug-jdnn-server-1.log │ │ ├── rpc-debug-master-server-1.log │ │ ├── rpc-log-brnn-server-1.log │ │ ├── rpc-log-chat-server-1.log │ │ ├── rpc-log-connector-server-1.log │ │ ├── rpc-log-gate-server-1.log │ │ ├── rpc-log-jdnn-server-1.log │ │ └── rpc-log-master-server-1.log │ └── preload.js ├── package.json ├── preload.ts └── tsconfig.json └── npm-install.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.rb linguist-language=Typescript 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /game-server/node_modules 2 | .idea 3 | .next 4 | 5 | # production 6 | 7 | # misc 8 | .DS_Store 9 | npm-debug.log* 10 | 11 | # umi 12 | .umi 13 | .umi-production 14 | 15 | package-lock.json 16 | .vscode/settings.json 17 | 18 | yarn.lock 19 | package-lock.json -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | 该项目是抄录[大圣棋牌](https://github.com/ligun123/chess) 2 | 由原pinus Javascript 版本转化为 Typescript 版本。 3 | 4 | 注意点: 5 | 6 | * ./dist/config/servers.json 需要填上对应server 7 | 8 | * ./dist/config/adminServer.json 添加上对应的server(不知道啥用) 9 | 10 | * 其中Typescript 的DouniuRoom 对象挂到channel 时,使用字典对象,简单处理。 11 | 12 | * 原**大圣棋牌** 的接口转为async 方式 13 | 14 | 测试: 15 | 16 | * 1:cd 到game-server 2:新建vscode 以game-server 为project 3:启动成功后选中左侧工具栏的Bug 样式测试图片,选择**Debug Chess**运行 17 | 18 | 批注: 19 | 20 | * ./client_cocos 解决了**大圣棋牌**的ccc 客户端打开报错问题。 21 | 22 | -------------------------------------------------------------------------------- /client_cocos/.gitignore: -------------------------------------------------------------------------------- 1 | #///////////////////////////////////////////////////////////////////////////// 2 | # Fireball Projects 3 | #///////////////////////////////////////////////////////////////////////////// 4 | 5 | library/ 6 | temp/ 7 | local/ 8 | build/ 9 | 10 | #///////////////////////////////////////////////////////////////////////////// 11 | # Logs and databases 12 | #///////////////////////////////////////////////////////////////////////////// 13 | 14 | *.log 15 | *.sql 16 | *.sqlite 17 | 18 | #///////////////////////////////////////////////////////////////////////////// 19 | # files for debugger 20 | #///////////////////////////////////////////////////////////////////////////// 21 | 22 | *.sln 23 | *.csproj 24 | *.pidb 25 | *.unityproj 26 | *.suo 27 | 28 | #///////////////////////////////////////////////////////////////////////////// 29 | # OS generated files 30 | #///////////////////////////////////////////////////////////////////////////// 31 | 32 | .DS_Store 33 | ehthumbs.db 34 | Thumbs.db 35 | 36 | #///////////////////////////////////////////////////////////////////////////// 37 | # exvim files 38 | #///////////////////////////////////////////////////////////////////////////// 39 | 40 | *UnityVS.meta 41 | *.err 42 | *.err.meta 43 | *.exvim 44 | *.exvim.meta 45 | *.vimentry 46 | *.vimentry.meta 47 | *.vimproject 48 | *.vimproject.meta 49 | .vimfiles.*/ 50 | .exvim.*/ 51 | quick_gen_project_*_autogen.bat 52 | quick_gen_project_*_autogen.bat.meta 53 | quick_gen_project_*_autogen.sh 54 | quick_gen_project_*_autogen.sh.meta 55 | .exvim.app 56 | 57 | #///////////////////////////////////////////////////////////////////////////// 58 | # webstorm files 59 | #///////////////////////////////////////////////////////////////////////////// 60 | 61 | .idea/ 62 | 63 | #////////////////////////// 64 | # VS Code 65 | #////////////////////////// 66 | 67 | .vscode/ -------------------------------------------------------------------------------- /client_cocos/README.md: -------------------------------------------------------------------------------- 1 | # hello-world 2 | Hello world new project template. 3 | -------------------------------------------------------------------------------- /client_cocos/assets/Scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "29f52784-2fca-467b-92e7-8fd9ef8c57b7", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/Scene/BrnnRoom.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3c6aef23-048f-4d8a-9fb5-5b9767fa4c87", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /client_cocos/assets/Scene/Home.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "f9a2f895-9caf-4a21-b834-6f2ce86b6b12", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /client_cocos/assets/Scene/Login.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "2d2f792f-a40c-49bb-a189-ed176a246e49", 4 | "asyncLoadAssets": false, 5 | "autoReleaseAssets": false, 6 | "subMetas": {} 7 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "4734c20c-0db8-4eb2-92ea-e692f4d70934", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "e339d817-ea96-45fd-9656-34648b097356", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo/pomelo-client.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "c7eea71a-878c-4404-bdc7-086bbfbe555f", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo/protobuf.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "f635f436-c50b-4724-ae24-e1bfe44c8749", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/pomelo/protocol.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "b5d97af6-27c3-4749-a376-7c9efe8751db", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "611e123d-b3b0-4cee-bdf8-b9aa9bef077a", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/BrnnProto.js: -------------------------------------------------------------------------------- 1 | require("../pomelo/pomelo-client"); 2 | 3 | var BrnnProto = function () { } 4 | 5 | module.exports = BrnnProto; 6 | 7 | // 玩家下注 8 | BrnnProto.chipIn = function (gold, pkindex, callback) { 9 | var data = {}; 10 | data.userid = pomelo.userinfo.userid; 11 | data.gold = gold; 12 | data.pkindex = pkindex; 13 | pomelo.request('brnn.brnnHandler.chipIn', data, callback); 14 | } 15 | 16 | //有用户离开房间 17 | BrnnProto.onLeave = function (callback) { 18 | pomelo.on('brnn.onLeave', callback); 19 | } 20 | 21 | //有用户加入房间 22 | BrnnProto.onAdd = function (callback) { 23 | pomelo.on('brnn.onAdd', callback); 24 | } 25 | 26 | //即将发牌的下注时期 27 | BrnnProto.onWillStart = function (callback) { 28 | pomelo.on('brnn.onWillStart', callback); 29 | } 30 | 31 | //发牌 32 | BrnnProto.onDealPoker = function (callback) { 33 | pomelo.on('brnn.onDealPoker', callback); 34 | } 35 | 36 | //计算输赢结果 37 | BrnnProto.onGoldResult = function (callback) { 38 | pomelo.on('brnn.onGoldResult', callback); 39 | } 40 | 41 | // 注销所有百人牛牛游戏界面网络事件 42 | BrnnProto.disableEvent = function () { 43 | pomelo.removeAllListeners('brnn.onGoldResult'); 44 | pomelo.removeAllListeners('brnn.onDealPoker'); 45 | pomelo.removeAllListeners('brnn.onWillStart'); 46 | pomelo.removeAllListeners('brnn.onAdd'); 47 | pomelo.removeAllListeners('brnn.onLeave'); 48 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/BrnnProto.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "70a398ea-f12f-4d14-85d1-1cb6d5c2f001", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/GateConnector.js: -------------------------------------------------------------------------------- 1 | require("../pomelo/pomelo-client"); 2 | 3 | var GateConnector = function () { 4 | 5 | } 6 | 7 | // 8 | GateConnector.onLoginSuccess = function (data, callback) { 9 | pomelo.userinfo = data['data']['userinfo']; 10 | pomelo.connector = data['data']['localConnector']; 11 | // pomelo.connector = data['data']['remoteConnector']; 12 | var token = data['data']['token']; 13 | if (token) { 14 | pomelo.token = token; 15 | cc.sys.localStorage.setItem('token', pomelo.token); 16 | } 17 | pomelo.disconnect(); 18 | if (typeof callback === 'function') { 19 | callback(data); 20 | } 21 | } 22 | 23 | //guest login on gate 24 | GateConnector.gateGuestLogin = function (host, port, callback) { 25 | pomelo.init({ 26 | host: host, 27 | port: port, 28 | user: {}, 29 | handshakeCallback: function () { } 30 | }, function () { 31 | pomelo.request('gate.gateHandler.guestLogin', {}, function (data) { 32 | console.log(JSON.stringify(data)); 33 | GateConnector.onLoginSuccess(data, callback); 34 | }); 35 | }); 36 | } 37 | 38 | //guest login on gate 39 | GateConnector.gateRefreshToken = function (host, port, callback) { 40 | pomelo.init({ 41 | host: host, 42 | port: port, 43 | user: {}, 44 | handshakeCallback: function () { } 45 | }, function () { 46 | pomelo.request('gate.gateHandler.refreshToken', { 'token': cc.sys.localStorage.getItem('token') }, function (data) { 47 | GateConnector.onLoginSuccess(data, callback); 48 | }); 49 | }); 50 | } 51 | 52 | // 53 | GateConnector.connectToConnector = function (callback) { 54 | var host = pomelo.connector.host; 55 | var port = pomelo.connector.port; 56 | pomelo.init({ 57 | host: host, 58 | port: port, 59 | user: {}, 60 | handshakeCallback: function () { } 61 | }, callback); 62 | } 63 | 64 | //rtype room type 65 | //rid room id 66 | GateConnector.connectorEnterRoom = function (rtype, rid, callback) { 67 | var data = {}; 68 | data.token = pomelo.token; 69 | data.rtype = rtype; 70 | if (rid != null) { 71 | data.rid = rid; 72 | } 73 | pomelo.request('connector.entryHandler.enterRoom', data, callback); 74 | } 75 | 76 | // 77 | GateConnector.connectorExit = function (callback) { 78 | pomelo.request('connector.entryHandler.exit', function () { 79 | pomelo.disconnect(); 80 | callback(); 81 | }); 82 | } 83 | 84 | 85 | // 导出 86 | module.exports = GateConnector; -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/GateConnector.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "cae3745a-7fbc-4f7f-9355-0fc20ddcc1de", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/MResponse.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 服务器返回信息简单封装 3 | */ 4 | 5 | var MResponse = function (data) { 6 | this.data = data['data']; 7 | this.code = data['code']; 8 | this.msg = data['msg']; 9 | } 10 | 11 | // 12 | MResponse.prototype.hasError = function () { 13 | return this.code <= 0; 14 | } 15 | 16 | // 17 | MResponse.prototype.isOK = function () { 18 | return this.code > 0; 19 | } 20 | 21 | // 22 | module.exports = MResponse; -------------------------------------------------------------------------------- /client_cocos/assets/Script/protocol/MResponse.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "14b41fe9-04de-407d-8376-beadd7e66316", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "f2dad7f9-35de-42c8-9292-4c95f4ea72bc", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool/AlertView.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | */ 4 | cc.Class({ 5 | extends: cc.Component, 6 | 7 | properties: { 8 | 9 | labelMsg: { 10 | default: null, 11 | type: cc.Label 12 | }, 13 | 14 | btnCancel: { 15 | default: null, 16 | type: cc.Button 17 | }, 18 | 19 | btnOK: { 20 | default: null, 21 | type: cc.Button 22 | }, 23 | }, 24 | 25 | // use this for initialization 26 | onLoad: function () { 27 | this.btnCancel.node.on('click', this.dismiss, this); 28 | this.btnOK.node.on('click', this.dismiss, this); 29 | }, 30 | 31 | dismiss: function () { 32 | this.node.removeFromParent(); 33 | }, 34 | 35 | // update: function (dt) { 36 | // }, 37 | }); 38 | -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool/AlertView.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "26173d70-7e13-4afd-8a25-1bffda48a181", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool/PokerItem.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | */ 4 | cc.Class({ 5 | extends: cc.Component, 6 | 7 | properties: { 8 | pokerModel: null, 9 | frontState: false, 10 | }, 11 | 12 | // use this for initialization 13 | onLoad: function () { 14 | 15 | }, 16 | 17 | // 18 | bindPokerModel: function (pkmodel) { 19 | this.pokerModel = pkmodel; 20 | }, 21 | 22 | // 23 | animationMoveTo: function (delay, pos, finishCallback, target) { 24 | var dl = cc.delayTime(delay); 25 | var bpos = new cc.Vec2(pos.x, this.node.y); 26 | // var mt1 = cc.moveTo(0.15, bpos); 27 | // var mt2 = cc.moveTo(0.15, pos); 28 | //改为贝塞尔移动 29 | var ar = [this.node.getPosition(), bpos, pos]; 30 | var beiz = cc.bezierTo(0.3, ar); 31 | 32 | var cal = cc.callFunc(finishCallback, target, this); 33 | var seq = cc.sequence(dl, beiz, cal); 34 | this.node.runAction(seq); 35 | }, 36 | 37 | // 38 | animationFlipTo: function (isFront, finishCallback, target) { 39 | this.frontState = isFront; 40 | var flip0 = cc.scaleTo(0.2, 0, 1); 41 | var cal = cc.callFunc(this.switchSprite, this); 42 | var flip1 = cc.scaleTo(0.2, 1, 1); 43 | var calFinish = cc.callFunc(finishCallback, target, this); 44 | var seq = cc.sequence(flip0, cal, flip1, calFinish); 45 | this.node.runAction(seq); 46 | }, 47 | 48 | // 49 | switchSprite: function () { 50 | var resname = null; 51 | if (this.frontState) { 52 | resname = 'png/' + this.pokerModel.value + this.pokerModel.color; 53 | } else { 54 | resname = 'png/pk_back'; 55 | } 56 | var self = this; 57 | cc.loader.loadRes(resname, cc.SpriteFrame, function (error, spriteFrame) { 58 | var oriSize = self.node.getContentSize(); 59 | var sprite = self.getComponent(cc.Sprite); 60 | sprite.spriteFrame = spriteFrame; 61 | self.node.setContentSize(oriSize); 62 | }); 63 | }, 64 | 65 | // update: function (dt) { 66 | // }, 67 | }); 68 | -------------------------------------------------------------------------------- /client_cocos/assets/Script/tool/PokerItem.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "b04633f4-299e-41eb-984e-863918739f21", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "ed0fa228-8476-4dcc-b7e0-cbfce1cbcb9c", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/BrnnRoomController.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "40ab2d2e-76d4-4df1-9144-d1a0c42bba77", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/ChipBarScript.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "20166437-b88b-4bfe-a59a-f49b17898729", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/ChipViewScript.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "62ab43b7-56a7-4448-a421-989ccfc6b79e", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/HomeController.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "90669a1b-2f03-432f-b7ae-cdcecf0e54be", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/LoginController.js: -------------------------------------------------------------------------------- 1 | var GateConnector = require("../protocol/GateConnector"); 2 | require("../pomelo/pomelo-client"); 3 | 4 | cc.Class({ 5 | extends: cc.Component, 6 | 7 | properties: { 8 | 9 | buttonGuestLogin: { 10 | default: null, 11 | type: cc.Button 12 | }, 13 | }, 14 | 15 | // use this for initialization 16 | onLoad: function () { 17 | 18 | //点击登录 19 | this.buttonGuestLogin.node.on('click', this.btnGuestLoginTap, this); 20 | }, 21 | 22 | // called every frame 23 | update: function (dt) { 24 | }, 25 | 26 | btnGuestLoginTap: function () { 27 | 28 | var self = this; 29 | GateConnector.gateGuestLogin('127.0.0.1', 3101, function (data) { 30 | 31 | // 32 | GateConnector.connectToConnector(function () { 33 | console.log('Connect Success'); 34 | }); 35 | 36 | //直接进入游戏场景 37 | self.node.runAction(cc.sequence(cc.delayTime(0.1), cc.callFunc(function () { 38 | self.buttonBrnnRoomTap(); 39 | }))); 40 | }); 41 | }, 42 | 43 | buttonBrnnRoomTap: function () { 44 | 45 | // 46 | var param = { 47 | 'token': pomelo.token, 48 | 'rtype': 'brnn' 49 | }; 50 | 51 | console.log("-----param:" + JSON.stringify(param)); 52 | 53 | //请求进入房间 54 | pomelo.request('connector.entryHandler.joinRoom', param, function (data) { 55 | 56 | console.log("-----进入游戏场景"); 57 | cc.director.loadScene('BrnnRoom'); 58 | }); 59 | }, 60 | }); 61 | -------------------------------------------------------------------------------- /client_cocos/assets/Script/ui/LoginController.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.5", 3 | "uuid": "280c3aec-6492-4a9d-9f51-a9b00b570b4a", 4 | "isPlugin": false, 5 | "loadPluginInWeb": true, 6 | "loadPluginInNative": true, 7 | "loadPluginInEditor": false, 8 | "subMetas": {} 9 | } -------------------------------------------------------------------------------- /client_cocos/assets/Texture.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "7b81d4e8-ec84-4716-968d-500ac1d78a54", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/Texture/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/Texture/HelloWorld.png -------------------------------------------------------------------------------- /client_cocos/assets/Texture/HelloWorld.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "6aa0aa6a-ebee-4155-a088-a687a6aadec4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "HelloWorld": { 11 | "ver": "1.0.3", 12 | "uuid": "31bc895a-c003-4566-a9f3-2e54ae1c17dc", 13 | "rawTextureUuid": "6aa0aa6a-ebee-4155-a088-a687a6aadec4", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 195, 22 | "height": 270, 23 | "rawWidth": 195, 24 | "rawHeight": 270, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/Texture/singleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/Texture/singleColor.png -------------------------------------------------------------------------------- /client_cocos/assets/Texture/singleColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "a8027877-d8d6-4645-97a0-52d4a0123dba", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "singleColor": { 11 | "ver": "1.0.3", 12 | "uuid": "410fb916-8721-4663-bab8-34397391ace7", 13 | "rawTextureUuid": "a8027877-d8d6-4645-97a0-52d4a0123dba", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 2, 22 | "height": 2, 23 | "rawWidth": 2, 24 | "rawHeight": 2, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "fd9d1a2a-6ef3-47bd-b342-9776dbc6b657", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/font.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "e7994a5e-5c93-4771-af50-ecfcd235906b", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/font/ROMIC.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/font/ROMIC.TTF -------------------------------------------------------------------------------- /client_cocos/assets/resources/font/ROMIC.TTF.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "18be7416-02a4-4dcd-bd43-4daeb7641932", 4 | "subMetas": {} 5 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "6e1712a0-ae48-46c6-9c5c-669d26d6fe74", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/10A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "54821f5b-df76-42d1-9627-168b1d7dc5d9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "10A": { 11 | "ver": "1.0.3", 12 | "uuid": "a9ffe812-fd1e-4ae5-ad78-601ccfc90d59", 13 | "rawTextureUuid": "54821f5b-df76-42d1-9627-168b1d7dc5d9", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/10B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "af301780-d1a8-4d3d-8b61-eb5a2b2a4980", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "10B": { 11 | "ver": "1.0.3", 12 | "uuid": "fd798c52-5c67-498f-9358-305ed8adfba2", 13 | "rawTextureUuid": "af301780-d1a8-4d3d-8b61-eb5a2b2a4980", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/10C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "323e17eb-4a95-4842-9f4b-68436ed944f5", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "10C": { 11 | "ver": "1.0.3", 12 | "uuid": "556853fe-5408-474e-a39a-f9bbd52b7d1c", 13 | "rawTextureUuid": "323e17eb-4a95-4842-9f4b-68436ed944f5", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/10D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/10D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "fefb7eef-5c2f-4039-b478-9a1cce804459", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "10D": { 11 | "ver": "1.0.3", 12 | "uuid": "c850c569-782e-4927-bd88-d733cd0d905a", 13 | "rawTextureUuid": "fefb7eef-5c2f-4039-b478-9a1cce804459", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/11A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "f4f8ea3c-43c2-48f1-a0f3-f0e93bc76a3e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "11A": { 11 | "ver": "1.0.3", 12 | "uuid": "a1c4ea44-d248-4280-8e8f-e011c448dd6a", 13 | "rawTextureUuid": "f4f8ea3c-43c2-48f1-a0f3-f0e93bc76a3e", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/11B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "c1638b53-92ad-41c8-b7a2-bed72d9b131d", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "11B": { 11 | "ver": "1.0.3", 12 | "uuid": "ee665842-544c-43e7-89b0-0c8cc47f7392", 13 | "rawTextureUuid": "c1638b53-92ad-41c8-b7a2-bed72d9b131d", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/11C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "fc964352-c531-43a7-ae8b-91952ed61154", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "11C": { 11 | "ver": "1.0.3", 12 | "uuid": "5ae32e4d-f90d-410b-b194-de0bdaf5548a", 13 | "rawTextureUuid": "fc964352-c531-43a7-ae8b-91952ed61154", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/11D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/11D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "db32edec-4db1-4266-9055-6d00af5cb692", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "11D": { 11 | "ver": "1.0.3", 12 | "uuid": "555db950-1d89-470a-8b20-b9b52e58b276", 13 | "rawTextureUuid": "db32edec-4db1-4266-9055-6d00af5cb692", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/12A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "139fd012-6d5e-4974-9d7d-03faac088d3b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "12A": { 11 | "ver": "1.0.3", 12 | "uuid": "dbe32d14-89e8-4835-9570-c1634fc06262", 13 | "rawTextureUuid": "139fd012-6d5e-4974-9d7d-03faac088d3b", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/12B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "f8fadf32-9483-463d-9909-6560e5b9dc78", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "12B": { 11 | "ver": "1.0.3", 12 | "uuid": "7f53f2d0-20ac-4fbf-adb7-71e9cba86705", 13 | "rawTextureUuid": "f8fadf32-9483-463d-9909-6560e5b9dc78", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/12C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "ffb45df6-0634-4e35-bb4c-d77f8e56cf0f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "12C": { 11 | "ver": "1.0.3", 12 | "uuid": "d87de9fc-7a9e-46b3-89fb-ff98dd6821c4", 13 | "rawTextureUuid": "ffb45df6-0634-4e35-bb4c-d77f8e56cf0f", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/12D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/12D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "864abab2-6550-4f5b-a7f9-16b7952631c0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "12D": { 11 | "ver": "1.0.3", 12 | "uuid": "b634748a-193d-4164-9121-12520a09758a", 13 | "rawTextureUuid": "864abab2-6550-4f5b-a7f9-16b7952631c0", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/13A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "d0c35371-1d86-43c2-bf3e-907dbf03af81", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "13A": { 11 | "ver": "1.0.3", 12 | "uuid": "987d5ceb-9f88-4fa2-ab01-c3245ee83427", 13 | "rawTextureUuid": "d0c35371-1d86-43c2-bf3e-907dbf03af81", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/13B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "371f1c9d-9e52-4601-8de1-de50b8199202", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "13B": { 11 | "ver": "1.0.3", 12 | "uuid": "b874e3e0-7587-4628-92d7-5f453f8c9064", 13 | "rawTextureUuid": "371f1c9d-9e52-4601-8de1-de50b8199202", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/13C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "08539bd8-4271-486f-b3a3-44b28840e81c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "13C": { 11 | "ver": "1.0.3", 12 | "uuid": "c40c4af6-7dba-487d-8726-320055f4d2d1", 13 | "rawTextureUuid": "08539bd8-4271-486f-b3a3-44b28840e81c", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/13D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/13D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "e79caf57-77d9-49aa-ae65-3cb37ce18ecb", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "13D": { 11 | "ver": "1.0.3", 12 | "uuid": "505ffc32-5978-4b6e-8409-67ace36fe98f", 13 | "rawTextureUuid": "e79caf57-77d9-49aa-ae65-3cb37ce18ecb", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/1A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "6050cd86-4705-4a84-8f68-acb769b61de8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "1A": { 11 | "ver": "1.0.3", 12 | "uuid": "d2865599-d863-47e3-8c4b-88a6bb46c9a4", 13 | "rawTextureUuid": "6050cd86-4705-4a84-8f68-acb769b61de8", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/1B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "f52af57f-2cb9-4ab0-922d-ff072727693a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "1B": { 11 | "ver": "1.0.3", 12 | "uuid": "e176bd0c-73ad-4bcc-8fa4-997fdc0a7272", 13 | "rawTextureUuid": "f52af57f-2cb9-4ab0-922d-ff072727693a", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/1C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "9f9c6e2d-e285-4ba7-b47d-c3d6159911ba", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "1C": { 11 | "ver": "1.0.3", 12 | "uuid": "409dc679-6daf-4b06-acac-e1434d8bfe94", 13 | "rawTextureUuid": "9f9c6e2d-e285-4ba7-b47d-c3d6159911ba", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/1D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/1D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "b7582c92-07ad-4daa-9470-d1a00040824a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "1D": { 11 | "ver": "1.0.3", 12 | "uuid": "01223254-5a5d-4e1e-a604-bf65756c21a8", 13 | "rawTextureUuid": "b7582c92-07ad-4daa-9470-d1a00040824a", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/2A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "8ec5c584-89a7-4286-af5e-36e0dc5e5e28", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "2A": { 11 | "ver": "1.0.3", 12 | "uuid": "43adb62f-1a99-4615-ac54-8837fcd7ba14", 13 | "rawTextureUuid": "8ec5c584-89a7-4286-af5e-36e0dc5e5e28", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/2B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "cc361ef9-97f6-4943-a86e-4359c5f300c3", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "2B": { 11 | "ver": "1.0.3", 12 | "uuid": "90857609-387c-49e9-8a90-bb232b79753c", 13 | "rawTextureUuid": "cc361ef9-97f6-4943-a86e-4359c5f300c3", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/2C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "8424a3cc-c38e-40f0-8bbe-5f617a149f46", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "2C": { 11 | "ver": "1.0.3", 12 | "uuid": "8a9fbfa0-9ef5-4f17-b1d9-cd38c286ae84", 13 | "rawTextureUuid": "8424a3cc-c38e-40f0-8bbe-5f617a149f46", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/2D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/2D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "1cb1b263-b7f8-4ebe-a5f4-3c4f0eb86a63", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "2D": { 11 | "ver": "1.0.3", 12 | "uuid": "bdeec032-2969-419e-89ed-67152cf7f764", 13 | "rawTextureUuid": "1cb1b263-b7f8-4ebe-a5f4-3c4f0eb86a63", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/3A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "510f3fd0-39d5-408b-8309-f3e1528807c8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "3A": { 11 | "ver": "1.0.3", 12 | "uuid": "f0283fe9-d878-4aa6-a174-4eea72f494ef", 13 | "rawTextureUuid": "510f3fd0-39d5-408b-8309-f3e1528807c8", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/3B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "07d3c99b-1080-457c-822f-5832326acc20", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "3B": { 11 | "ver": "1.0.3", 12 | "uuid": "ea94ae78-159d-4d25-94a3-654f62a605bf", 13 | "rawTextureUuid": "07d3c99b-1080-457c-822f-5832326acc20", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/3C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "89cf5933-2be0-46c4-9b1a-179461122685", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "3C": { 11 | "ver": "1.0.3", 12 | "uuid": "0f2172ae-a095-45cb-9406-8fb19acff65e", 13 | "rawTextureUuid": "89cf5933-2be0-46c4-9b1a-179461122685", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/3D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/3D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "74d6144c-31c5-42cc-ac52-5e7afe49da41", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "3D": { 11 | "ver": "1.0.3", 12 | "uuid": "f61221e1-866d-4b33-a095-3fff5347df2d", 13 | "rawTextureUuid": "74d6144c-31c5-42cc-ac52-5e7afe49da41", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/4A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "4952b83a-b75c-4c97-9758-91182796514f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "4A": { 11 | "ver": "1.0.3", 12 | "uuid": "1118b27d-6116-41d1-8b68-532debcb932a", 13 | "rawTextureUuid": "4952b83a-b75c-4c97-9758-91182796514f", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/4B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "e3c13527-30bb-4f23-94dc-e5cf20988c02", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "4B": { 11 | "ver": "1.0.3", 12 | "uuid": "272c6bc2-738e-47c1-a8b0-6e7ca3d64214", 13 | "rawTextureUuid": "e3c13527-30bb-4f23-94dc-e5cf20988c02", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/4C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "bc75f0c1-2a20-4d3c-b45b-40c508cfc268", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "4C": { 11 | "ver": "1.0.3", 12 | "uuid": "5b0b43a2-fcb2-4391-ab57-308890d31a20", 13 | "rawTextureUuid": "bc75f0c1-2a20-4d3c-b45b-40c508cfc268", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/4D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/4D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "54494fce-4ea1-4fde-ba61-82cb652fdf7c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "4D": { 11 | "ver": "1.0.3", 12 | "uuid": "f9ea7846-e41f-4efe-8d98-6e9995940b42", 13 | "rawTextureUuid": "54494fce-4ea1-4fde-ba61-82cb652fdf7c", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/5A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "7d0b76ca-ba50-4ed0-8770-3e9464a610d1", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "5A": { 11 | "ver": "1.0.3", 12 | "uuid": "3d57ee55-9820-4d25-9d90-95b0d7df7c0d", 13 | "rawTextureUuid": "7d0b76ca-ba50-4ed0-8770-3e9464a610d1", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/5B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "def32ae9-097b-4d0b-9bae-e827f54823df", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "5B": { 11 | "ver": "1.0.3", 12 | "uuid": "ffcf8224-c9e9-4ff1-9241-0f40046fac6b", 13 | "rawTextureUuid": "def32ae9-097b-4d0b-9bae-e827f54823df", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/5C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "66615cf3-f5ea-4774-baba-47d789eeb120", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "5C": { 11 | "ver": "1.0.3", 12 | "uuid": "e6961f14-73d9-4384-b36f-c767cb8d9c97", 13 | "rawTextureUuid": "66615cf3-f5ea-4774-baba-47d789eeb120", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/5D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/5D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "f5170100-1990-4bcd-bc62-1c1c5a19cc5a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "5D": { 11 | "ver": "1.0.3", 12 | "uuid": "189d3cea-2c02-4639-94b8-9a237b3f5e57", 13 | "rawTextureUuid": "f5170100-1990-4bcd-bc62-1c1c5a19cc5a", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/6A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "43e64cbf-1b30-4e55-8378-5210b578be2b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "6A": { 11 | "ver": "1.0.3", 12 | "uuid": "a9253a6d-d672-400e-aba8-745a5df6997b", 13 | "rawTextureUuid": "43e64cbf-1b30-4e55-8378-5210b578be2b", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/6B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "ddad3883-d6e5-40de-aff9-a6490042ea9f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "6B": { 11 | "ver": "1.0.3", 12 | "uuid": "4bbc89f9-2c30-4d5d-be6e-34402976fb3e", 13 | "rawTextureUuid": "ddad3883-d6e5-40de-aff9-a6490042ea9f", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/6C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "667e320d-4f26-448f-bfa1-e66e55364772", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "6C": { 11 | "ver": "1.0.3", 12 | "uuid": "5d3a1627-49f6-4a78-a3c9-6fafb0255c58", 13 | "rawTextureUuid": "667e320d-4f26-448f-bfa1-e66e55364772", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/6D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/6D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "63c6431e-f576-4c7b-873a-1ae62abd5843", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "6D": { 11 | "ver": "1.0.3", 12 | "uuid": "51a85506-baa4-4155-b363-55ee3053764e", 13 | "rawTextureUuid": "63c6431e-f576-4c7b-873a-1ae62abd5843", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/7A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "cd196f5e-7b59-41d0-af9a-d071f78dd9b3", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "7A": { 11 | "ver": "1.0.3", 12 | "uuid": "be2c9fe8-bdb5-4448-9444-b9550b467853", 13 | "rawTextureUuid": "cd196f5e-7b59-41d0-af9a-d071f78dd9b3", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/7B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "f8f42fde-4466-4247-8f9b-a768c487e093", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "7B": { 11 | "ver": "1.0.3", 12 | "uuid": "188647bf-dd1d-44df-9821-1c161a4f650a", 13 | "rawTextureUuid": "f8f42fde-4466-4247-8f9b-a768c487e093", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/7C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "c5210999-9f01-450c-a438-cc0f1ef758e9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "7C": { 11 | "ver": "1.0.3", 12 | "uuid": "fb4ec201-cb1c-42b3-8284-240f6e24d8c9", 13 | "rawTextureUuid": "c5210999-9f01-450c-a438-cc0f1ef758e9", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/7D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/7D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "d21c0575-e64c-47ae-8e2d-182d19dd6e07", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "7D": { 11 | "ver": "1.0.3", 12 | "uuid": "42210c88-9efe-4f66-ae08-56d684f711c1", 13 | "rawTextureUuid": "d21c0575-e64c-47ae-8e2d-182d19dd6e07", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/8A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "1b732486-ab56-4d56-8c27-ed1b8f2c40fa", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "8A": { 11 | "ver": "1.0.3", 12 | "uuid": "90218725-9284-43d0-96a2-6d5c044f8ad5", 13 | "rawTextureUuid": "1b732486-ab56-4d56-8c27-ed1b8f2c40fa", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/8B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "d5f8d188-62f4-4dc5-9147-6bec36e2a328", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "8B": { 11 | "ver": "1.0.3", 12 | "uuid": "95417baf-b581-44b1-9ce4-cb0067dd7e20", 13 | "rawTextureUuid": "d5f8d188-62f4-4dc5-9147-6bec36e2a328", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/8C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "c56b6982-3a5c-48ad-a612-60c0a62cbbd9", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "8C": { 11 | "ver": "1.0.3", 12 | "uuid": "be9017ac-4f2e-4f94-92b4-f69eb626b162", 13 | "rawTextureUuid": "c56b6982-3a5c-48ad-a612-60c0a62cbbd9", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/8D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/8D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "86138ad2-3fbf-4922-b934-6e3cfb72c0d6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "8D": { 11 | "ver": "1.0.3", 12 | "uuid": "ca3e2654-b470-453c-93cf-52f7cfec72a3", 13 | "rawTextureUuid": "86138ad2-3fbf-4922-b934-6e3cfb72c0d6", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/9A.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9A.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "6824c790-ea1c-4cda-94d4-a1685495c27b", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "9A": { 11 | "ver": "1.0.3", 12 | "uuid": "96a9cc85-6872-4cf2-9ee8-2e3c9a87c9af", 13 | "rawTextureUuid": "6824c790-ea1c-4cda-94d4-a1685495c27b", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/9B.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9B.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "dd4c2053-b2c9-4448-b029-3b884602e086", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "9B": { 11 | "ver": "1.0.3", 12 | "uuid": "50000c9e-40f8-4310-8a08-7d7950ff87af", 13 | "rawTextureUuid": "dd4c2053-b2c9-4448-b029-3b884602e086", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/9C.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9C.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "776b5ff0-f6f8-482e-a15d-dd1fb19b0e50", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "9C": { 11 | "ver": "1.0.3", 12 | "uuid": "7360c778-94f2-43e9-a336-ac90abb74b90", 13 | "rawTextureUuid": "776b5ff0-f6f8-482e-a15d-dd1fb19b0e50", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/9D.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/9D.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "5ddfc7e4-8f22-4b06-9ac9-d1393901c76e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "9D": { 11 | "ver": "1.0.3", 12 | "uuid": "9469ff2c-4a54-4d32-b1db-c32ce3ad2ac1", 13 | "rawTextureUuid": "5ddfc7e4-8f22-4b06-9ac9-d1393901c76e", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 126, 22 | "height": 175, 23 | "rawWidth": 126, 24 | "rawHeight": 175, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/FontAtlas.labelatlas: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.LabelAtlas" 3 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/FontAtlas.labelatlas.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "94e68e5e-ca50-4ab1-ae1c-f2791f3bad0e", 4 | "itemWidth": 48, 5 | "itemHeight": 52, 6 | "startChar": "0", 7 | "rawTextureUuid": "1fa2a8df-8d9c-444a-874d-a9f77e15326c", 8 | "fontSize": 45.76, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/b_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/b_n.jpg -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/b_n.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "921eb0b9-d78d-441e-989b-015a236c03f2", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "b_n": { 11 | "ver": "1.0.3", 12 | "uuid": "c00ceddf-581f-42eb-8779-7b4d3fbab14c", 13 | "rawTextureUuid": "921eb0b9-d78d-441e-989b-015a236c03f2", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 1280, 22 | "height": 720, 23 | "rawWidth": 1280, 24 | "rawHeight": 720, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai19_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/bai19_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai19_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "d25cbc91-592d-473e-a85e-7c8e4c5be385", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "bai19_n": { 11 | "ver": "1.0.3", 12 | "uuid": "ee2e5249-f1d4-4b25-8b45-0fc1c2300f07", 13 | "rawTextureUuid": "d25cbc91-592d-473e-a85e-7c8e4c5be385", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": -1, 19 | "trimX": 0, 20 | "trimY": 3, 21 | "width": 70, 22 | "height": 106, 23 | "rawWidth": 70, 24 | "rawHeight": 110, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai1_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/bai1_n.jpg -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai1_n.jpg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "88e31276-01bf-449c-b778-1549bfba83af", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "bai1_n": { 11 | "ver": "1.0.3", 12 | "uuid": "8d4190f0-4b14-4ff1-8233-3ff1b3351672", 13 | "rawTextureUuid": "88e31276-01bf-449c-b778-1549bfba83af", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 1280, 22 | "height": 720, 23 | "rawWidth": 1280, 24 | "rawHeight": 720, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/bai2_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai2_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "fe387636-32a4-42a9-b1ef-7bff1f9bd49f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "bai2_n": { 11 | "ver": "1.0.3", 12 | "uuid": "3667e27c-08ba-48d3-8e0b-0770e0746f53", 13 | "rawTextureUuid": "fe387636-32a4-42a9-b1ef-7bff1f9bd49f", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 1280, 22 | "height": 650, 23 | "rawWidth": 1280, 24 | "rawHeight": 650, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai71_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/bai71_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/bai71_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "4bc85572-b32f-40d1-b3ba-66b1dcfe241f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "bai71_n": { 11 | "ver": "1.0.3", 12 | "uuid": "228c757f-5403-420c-9fc4-e9a1e2fe2bb6", 13 | "rawTextureUuid": "4bc85572-b32f-40d1-b3ba-66b1dcfe241f", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -1, 18 | "offsetY": 0.5, 19 | "trimX": 1, 20 | "trimY": 0, 21 | "width": 177, 22 | "height": 579, 23 | "rawWidth": 181, 24 | "rawHeight": 580, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/brnnstate_0.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "6a80a507-7bd4-44a1-9476-5fe6287c581f", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "brnnstate_0": { 11 | "ver": "1.0.3", 12 | "uuid": "6a0962c9-d907-4bc2-b4fa-6073ff50fed6", 13 | "rawTextureUuid": "6a80a507-7bd4-44a1-9476-5fe6287c581f", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 2.5, 18 | "offsetY": 0, 19 | "trimX": 6, 20 | "trimY": 1, 21 | "width": 161, 22 | "height": 40, 23 | "rawWidth": 168, 24 | "rawHeight": 42, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/brnnstate_1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "f02166c4-d1d4-4a20-bdb2-760e01ea8dad", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "brnnstate_1": { 11 | "ver": "1.0.3", 12 | "uuid": "621f8bc0-daa4-4c4b-b26a-4e5e75655466", 13 | "rawTextureUuid": "f02166c4-d1d4-4a20-bdb2-760e01ea8dad", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0.5, 18 | "offsetY": 0, 19 | "trimX": 2, 20 | "trimY": 1, 21 | "width": 165, 22 | "height": 40, 23 | "rawWidth": 168, 24 | "rawHeight": 42, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/brnnstate_2.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/brnnstate_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "9c85cf55-a307-491f-b06f-8449b9c02e89", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "brnnstate_2": { 11 | "ver": "1.0.3", 12 | "uuid": "1df31b2b-1a60-4e8d-9e5c-43680e357883", 13 | "rawTextureUuid": "9c85cf55-a307-491f-b06f-8449b9c02e89", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 1, 20 | "trimY": 1, 21 | "width": 166, 22 | "height": 40, 23 | "rawWidth": 168, 24 | "rawHeight": 42, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/chip.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "9791be69-3c85-45a0-84d4-68533a6057d3", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "chip": { 11 | "ver": "1.0.3", 12 | "uuid": "f8efac3b-324f-4bd6-86ec-74c77e932ced", 13 | "rawTextureUuid": "9791be69-3c85-45a0-84d4-68533a6057d3", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -19, 18 | "offsetY": 19, 19 | "trimX": 2, 20 | "trimY": 2, 21 | "width": 214, 22 | "height": 470, 23 | "rawWidth": 256, 24 | "rawHeight": 512, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/chip_b1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_b1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "dba2f8e8-65d4-45a8-87b7-3c28b4477c76", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "chip_b1": { 11 | "ver": "1.0.3", 12 | "uuid": "a229792c-108a-4441-b4f2-9cd2cd6ba44f", 13 | "rawTextureUuid": "dba2f8e8-65d4-45a8-87b7-3c28b4477c76", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 79, 22 | "height": 78, 23 | "rawWidth": 79, 24 | "rawHeight": 78, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/chip_b5.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_b5.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "34e22fae-a11d-48f5-b0cd-9e5e33c47d77", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "chip_b5": { 11 | "ver": "1.0.3", 12 | "uuid": "c3ce171c-0a88-463e-8ab9-f41a35aaca22", 13 | "rawTextureUuid": "34e22fae-a11d-48f5-b0cd-9e5e33c47d77", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 79, 22 | "height": 78, 23 | "rawWidth": 79, 24 | "rawHeight": 78, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_q1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/chip_q1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_q1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "20b97a85-cea9-4f1c-83a1-57b24a20eb31", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "chip_q1": { 11 | "ver": "1.0.3", 12 | "uuid": "c5099363-e513-46b8-8534-2d2d8e3d85c7", 13 | "rawTextureUuid": "20b97a85-cea9-4f1c-83a1-57b24a20eb31", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 79, 22 | "height": 78, 23 | "rawWidth": 79, 24 | "rawHeight": 78, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_q5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/chip_q5.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_q5.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "6fee09f1-9360-4f55-b804-3f299d414055", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "chip_q5": { 11 | "ver": "1.0.3", 12 | "uuid": "ca3d3b80-e32d-46e6-a652-3daf1776309f", 13 | "rawTextureUuid": "6fee09f1-9360-4f55-b804-3f299d414055", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 79, 22 | "height": 78, 23 | "rawWidth": 79, 24 | "rawHeight": 78, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_w1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/chip_w1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_w1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "fc276ff1-8cbc-4a23-a221-52b0a32e30ea", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "chip_w1": { 11 | "ver": "1.0.3", 12 | "uuid": "fd58aea8-2c7d-4c3a-b694-fa4e55fe7d70", 13 | "rawTextureUuid": "fc276ff1-8cbc-4a23-a221-52b0a32e30ea", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 79, 22 | "height": 78, 23 | "rawWidth": 79, 24 | "rawHeight": 78, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_w5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/chip_w5.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/chip_w5.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "5be27553-b440-41fe-9a2f-eadcb7a01a15", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "chip_w5": { 11 | "ver": "1.0.3", 12 | "uuid": "a6d971d5-b7b0-4704-ae1e-1ef35b9f0656", 13 | "rawTextureUuid": "5be27553-b440-41fe-9a2f-eadcb7a01a15", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 79, 22 | "height": 78, 23 | "rawWidth": 79, 24 | "rawHeight": 78, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/dazhexian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/dazhexian.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/dazhexian.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "c7892d65-4791-4c2b-b71d-f5d6eeebfdd7", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "dazhexian": { 11 | "ver": "1.0.3", 12 | "uuid": "ef865b48-798b-4ce5-a650-92806d57f9b8", 13 | "rawTextureUuid": "c7892d65-4791-4c2b-b71d-f5d6eeebfdd7", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 128, 22 | "height": 3, 23 | "rawWidth": 128, 24 | "rawHeight": 3, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/exit_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/exit_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/exit_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "b2c64535-cbb6-406f-a6d2-70e0b3369043", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "exit_n": { 11 | "ver": "1.0.3", 12 | "uuid": "196db942-8952-4d6f-b29f-a6d3f2e107eb", 13 | "rawTextureUuid": "b2c64535-cbb6-406f-a6d2-70e0b3369043", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -2.5, 18 | "offsetY": -2.5, 19 | "trimX": 22, 20 | "trimY": 6, 21 | "width": 121, 22 | "height": 40, 23 | "rawWidth": 170, 24 | "rawHeight": 47, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/exit_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/exit_y.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/exit_y.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "a7f9ca82-9e98-47ed-a721-6ccc1aa4391a", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "exit_y": { 11 | "ver": "1.0.3", 12 | "uuid": "1c22a6be-ef34-413b-95d0-8e06585a1112", 13 | "rawTextureUuid": "a7f9ca82-9e98-47ed-a721-6ccc1aa4391a", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -2.5, 18 | "offsetY": -2.5, 19 | "trimX": 22, 20 | "trimY": 6, 21 | "width": 121, 22 | "height": 40, 23 | "rawWidth": 170, 24 | "rawHeight": 47, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/la28-2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/la28-2_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/la28-2_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "ee5c7c11-4c88-4af9-b11f-22682d79ed81", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "la28-2_n": { 11 | "ver": "1.0.3", 12 | "uuid": "8dd92166-3f54-43c2-a9e6-eb62d8f766c0", 13 | "rawTextureUuid": "ee5c7c11-4c88-4af9-b11f-22682d79ed81", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 24, 22 | "height": 22, 23 | "rawWidth": 24, 24 | "rawHeight": 22, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/la28-3_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/la28-3_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/la28-3_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "9dd8649b-8879-4a03-90ea-7064a6943bfe", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "la28-3_n": { 11 | "ver": "1.0.3", 12 | "uuid": "2292b527-fa06-4c57-a460-3bb8199273b7", 13 | "rawTextureUuid": "9dd8649b-8879-4a03-90ea-7064a6943bfe", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0.5, 18 | "offsetY": -0.5, 19 | "trimX": 1, 20 | "trimY": 1, 21 | "width": 23, 22 | "height": 21, 23 | "rawWidth": 24, 24 | "rawHeight": 22, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/n1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "e496beb8-3d0a-4dc1-9968-b559f7a922ae", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "n1": { 11 | "ver": "1.0.3", 12 | "uuid": "980aaeb3-b8fa-4511-870d-8030e6135e49", 13 | "rawTextureUuid": "e496beb8-3d0a-4dc1-9968-b559f7a922ae", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -1.5, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 227, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/n2.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "e64d4949-984f-4722-afa8-2e413a694226", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "n2": { 11 | "ver": "1.0.3", 12 | "uuid": "fdc31cd8-a54b-4ee7-893f-9ad28321ad2e", 13 | "rawTextureUuid": "e64d4949-984f-4722-afa8-2e413a694226", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -0.5, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 229, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/n3.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n3.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "8db05e82-f4bf-415f-a483-b08b52df1828", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "n3": { 11 | "ver": "1.0.3", 12 | "uuid": "a0126893-9d6b-4c67-806c-2f127afeaf0a", 13 | "rawTextureUuid": "8db05e82-f4bf-415f-a483-b08b52df1828", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -1, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 228, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/n4.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n4.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "352fe09c-9487-455f-8ee2-9e8cdc8844f0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "n4": { 11 | "ver": "1.0.3", 12 | "uuid": "ed03fd04-6cc3-438b-bf8c-4936f9eade9f", 13 | "rawTextureUuid": "352fe09c-9487-455f-8ee2-9e8cdc8844f0", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -2.5, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 225, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/n5.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n5.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "f049babc-b654-4a61-96b0-4e4bce3ac621", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "n5": { 11 | "ver": "1.0.3", 12 | "uuid": "58e68a13-8912-4dad-a0d2-1463168a0b57", 13 | "rawTextureUuid": "f049babc-b654-4a61-96b0-4e4bce3ac621", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -1, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 228, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/n6.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n6.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "2743a92d-2a53-4772-92ad-17e5058a0dff", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "n6": { 11 | "ver": "1.0.3", 12 | "uuid": "8354d05e-b840-4802-aaf2-2fa9f7e1f159", 13 | "rawTextureUuid": "2743a92d-2a53-4772-92ad-17e5058a0dff", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -1, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 228, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/n7.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n7.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "ce39d684-8234-4862-bb46-3ded66282809", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "n7": { 11 | "ver": "1.0.3", 12 | "uuid": "c090eeb6-7dc0-40f7-bac3-7ab759e7bbdd", 13 | "rawTextureUuid": "ce39d684-8234-4862-bb46-3ded66282809", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -1, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 228, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/n8.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n8.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "eb501e98-cf04-4f67-b3f7-f87557318c99", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "n8": { 11 | "ver": "1.0.3", 12 | "uuid": "21aacf7f-e55b-41cb-8155-6eb02749c1c3", 13 | "rawTextureUuid": "eb501e98-cf04-4f67-b3f7-f87557318c99", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 230, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/n9.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/n9.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "fed424cd-9e40-41fe-84bb-8ac54a5718a8", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "n9": { 11 | "ver": "1.0.3", 12 | "uuid": "bc727a65-fdf8-4c6b-9ba5-19c8df98ac53", 13 | "rawTextureUuid": "fed424cd-9e40-41fe-84bb-8ac54a5718a8", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -1, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 228, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/nm.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nm.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "17e21084-50ea-452e-a102-397fc15019f0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "nm": { 11 | "ver": "1.0.3", 12 | "uuid": "53408d37-49d6-445e-9bf9-ac21919c76d3", 13 | "rawTextureUuid": "17e21084-50ea-452e-a102-397fc15019f0", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 221, 22 | "height": 121, 23 | "rawWidth": 221, 24 | "rawHeight": 121, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/nn.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nn.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "a2494f3e-e238-4c8a-88e5-6aa12fb852ee", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "nn": { 11 | "ver": "1.0.3", 12 | "uuid": "60c4a30f-074e-4051-a357-0dbced23fc8a", 13 | "rawTextureUuid": "a2494f3e-e238-4c8a-88e5-6aa12fb852ee", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 230, 22 | "height": 120, 23 | "rawWidth": 230, 24 | "rawHeight": 120, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nt1_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/nt1_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nt1_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "990b7322-3088-4779-bf7f-9bf45b0f4960", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "nt1_n": { 11 | "ver": "1.0.3", 12 | "uuid": "7441d507-193d-4af2-8943-bf1840ca9707", 13 | "rawTextureUuid": "990b7322-3088-4779-bf7f-9bf45b0f4960", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -1, 18 | "offsetY": -1, 19 | "trimX": 3, 20 | "trimY": 2, 21 | "width": 72, 22 | "height": 77, 23 | "rawWidth": 80, 24 | "rawHeight": 79, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nt_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/nt_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nt_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "618a7105-80bc-476b-975f-cd4f1ccc4326", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "nt_n": { 11 | "ver": "1.0.3", 12 | "uuid": "0cb22601-dbe4-4cb0-ab4e-a6149603072c", 13 | "rawTextureUuid": "618a7105-80bc-476b-975f-cd4f1ccc4326", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -0.5, 18 | "offsetY": -1, 19 | "trimX": 3, 20 | "trimY": 2, 21 | "width": 73, 22 | "height": 77, 23 | "rawWidth": 80, 24 | "rawHeight": 79, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nwh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/nwh.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nwh.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "b54ab079-ddcd-4d7e-9cbe-49e9f12edef6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "nwh": { 11 | "ver": "1.0.3", 12 | "uuid": "b20c6626-ad51-4155-9ac4-f3717ae04780", 13 | "rawTextureUuid": "b54ab079-ddcd-4d7e-9cbe-49e9f12edef6", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0.5, 19 | "trimX": 1, 20 | "trimY": 1, 21 | "width": 331, 22 | "height": 120, 23 | "rawWidth": 333, 24 | "rawHeight": 123, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nwx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/nwx.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nwx.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "143c2236-d688-4c83-9eec-2c4caafb0ff6", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "nwx": { 11 | "ver": "1.0.3", 12 | "uuid": "e720f9c7-d65f-4e68-b644-747dd664b0e4", 13 | "rawTextureUuid": "143c2236-d688-4c83-9eec-2c4caafb0ff6", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": -0.5, 19 | "trimX": 1, 20 | "trimY": 2, 21 | "width": 331, 22 | "height": 120, 23 | "rawWidth": 333, 24 | "rawHeight": 123, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nzd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/nzd.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/nzd.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "1f6a9958-e5ff-4c35-8229-0d9242db8b27", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "nzd": { 11 | "ver": "1.0.3", 12 | "uuid": "5a604984-07d8-4dc6-a04f-8bac14b4a225", 13 | "rawTextureUuid": "1f6a9958-e5ff-4c35-8229-0d9242db8b27", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0.5, 18 | "offsetY": -0.5, 19 | "trimX": 2, 20 | "trimY": 1, 21 | "width": 330, 22 | "height": 122, 23 | "rawWidth": 333, 24 | "rawHeight": 123, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/pk_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/pk_back.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/pk_back.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "e2d020a5-3042-4b64-9e93-aa7f4a77b2c2", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "pk_back": { 11 | "ver": "1.0.3", 12 | "uuid": "006b4a8b-fee8-48f9-8484-d645860c8cc2", 13 | "rawTextureUuid": "e2d020a5-3042-4b64-9e93-aa7f4a77b2c2", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 1, 19 | "trimX": 1, 20 | "trimY": 1, 21 | "width": 64, 22 | "height": 89, 23 | "rawWidth": 66, 24 | "rawHeight": 93, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/po9_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/po9_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/po9_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "1fa2a8df-8d9c-444a-874d-a9f77e15326c", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "po9_n": { 11 | "ver": "1.0.3", 12 | "uuid": "ecc25468-5f1b-4c80-ad8e-a8ba3927ff07", 13 | "rawTextureUuid": "1fa2a8df-8d9c-444a-874d-a9f77e15326c", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -0.5, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 479, 22 | "height": 52, 23 | "rawWidth": 480, 24 | "rawHeight": 52, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/px2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/px2_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/px2_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "09c403b8-fe55-417b-b402-ec96b4b372b4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "px2_n": { 11 | "ver": "1.0.3", 12 | "uuid": "bd1ba150-57df-44b1-a253-d04da5a56810", 13 | "rawTextureUuid": "09c403b8-fe55-417b-b402-ec96b4b372b4", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 1, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 511, 22 | "height": 603, 23 | "rawWidth": 511, 24 | "rawHeight": 605, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/px3_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/px3_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/px3_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "30489661-dd04-49ba-9dda-5ea55874c55e", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "px3_n": { 11 | "ver": "1.0.3", 12 | "uuid": "e5841790-380e-4bd9-aa27-51ba7e82c895", 13 | "rawTextureUuid": "30489661-dd04-49ba-9dda-5ea55874c55e", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 1, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 511, 22 | "height": 603, 23 | "rawWidth": 511, 24 | "rawHeight": 605, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/shu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/shu.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/shu.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "20ee1b1f-4617-4042-926e-584ce69e1818", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "shu": { 11 | "ver": "1.0.3", 12 | "uuid": "f46b0797-63e1-4a48-969d-cf4863fb74be", 13 | "rawTextureUuid": "20ee1b1f-4617-4042-926e-584ce69e1818", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 1, 19 | "trimX": 0, 20 | "trimY": 1, 21 | "width": 173, 22 | "height": 95, 23 | "rawWidth": 173, 24 | "rawHeight": 99, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/state_0.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_0.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "d5599968-1448-4a2c-99d0-8bbe2974ddb0", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "state_0": { 11 | "ver": "1.0.3", 12 | "uuid": "7bf7afba-d8fa-417c-82e6-5a4414147f96", 13 | "rawTextureUuid": "d5599968-1448-4a2c-99d0-8bbe2974ddb0", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -0.5, 18 | "offsetY": 0, 19 | "trimX": 1, 20 | "trimY": 2, 21 | "width": 98, 22 | "height": 26, 23 | "rawWidth": 101, 24 | "rawHeight": 30, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/state_1.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_1.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "61ceac0e-fadd-4701-8f9e-feba7eec9905", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "state_1": { 11 | "ver": "1.0.3", 12 | "uuid": "070b1364-84d1-497d-b81a-a195a092e6eb", 13 | "rawTextureUuid": "61ceac0e-fadd-4701-8f9e-feba7eec9905", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -0.5, 18 | "offsetY": 0.5, 19 | "trimX": 1, 20 | "trimY": 1, 21 | "width": 98, 22 | "height": 27, 23 | "rawWidth": 101, 24 | "rawHeight": 30, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/state_2.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/state_2.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "794780de-55b0-472b-a22b-2b1ac41db0d4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "state_2": { 11 | "ver": "1.0.3", 12 | "uuid": "d16232a6-394d-42f7-9757-39bd0ff55d65", 13 | "rawTextureUuid": "794780de-55b0-472b-a22b-2b1ac41db0d4", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -0.5, 18 | "offsetY": 0.5, 19 | "trimX": 1, 20 | "trimY": 1, 21 | "width": 98, 22 | "height": 27, 23 | "rawWidth": 101, 24 | "rawHeight": 30, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen24_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/wen24_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen24_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "3e1a37d2-8f98-4192-a304-5a9f4eb567b4", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "wen24_n": { 11 | "ver": "1.0.3", 12 | "uuid": "38765bd9-78ce-4d3d-9d13-d46b4ec7d8bd", 13 | "rawTextureUuid": "3e1a37d2-8f98-4192-a304-5a9f4eb567b4", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 3.5, 18 | "offsetY": 0, 19 | "trimX": 12, 20 | "trimY": 2, 21 | "width": 80, 22 | "height": 40, 23 | "rawWidth": 97, 24 | "rawHeight": 44, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen25_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/wen25_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen25_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "044637fe-0fb5-4972-a583-a5ef67c6a1ae", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "wen25_n": { 11 | "ver": "1.0.3", 12 | "uuid": "ff94e182-89c6-48ce-8d53-9768d7aa4af1", 13 | "rawTextureUuid": "044637fe-0fb5-4972-a583-a5ef67c6a1ae", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 2.5, 18 | "offsetY": 0.5, 19 | "trimX": 11, 20 | "trimY": 1, 21 | "width": 80, 22 | "height": 41, 23 | "rawWidth": 97, 24 | "rawHeight": 44, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen50_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/wen50_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen50_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "d6bae10c-af45-41a6-bbc5-082a62cce106", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "wen50_n": { 11 | "ver": "1.0.3", 12 | "uuid": "7cdac55e-3dbc-46fa-9127-f944a6b6ab79", 13 | "rawTextureUuid": "d6bae10c-af45-41a6-bbc5-082a62cce106", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 2.5, 18 | "offsetY": 0.5, 19 | "trimX": 11, 20 | "trimY": 1, 21 | "width": 80, 22 | "height": 41, 23 | "rawWidth": 97, 24 | "rawHeight": 44, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen51_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/wen51_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/wen51_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "ec7f424b-7e13-431b-afc9-f3dccd3000db", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "wen51_n": { 11 | "ver": "1.0.3", 12 | "uuid": "22a79b34-b3c7-4118-821a-122498f72baa", 13 | "rawTextureUuid": "ec7f424b-7e13-431b-afc9-f3dccd3000db", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 3.5, 18 | "offsetY": 0, 19 | "trimX": 12, 20 | "trimY": 2, 21 | "width": 80, 22 | "height": 40, 23 | "rawWidth": 97, 24 | "rawHeight": 44, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/x_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/x_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/x_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "c5d1d0ee-f58a-418c-8fad-009cf3b9c5b7", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "x_n": { 11 | "ver": "1.0.3", 12 | "uuid": "670223ff-1988-4a0f-8f9a-46b6a541e0d4", 13 | "rawTextureUuid": "c5d1d0ee-f58a-418c-8fad-009cf3b9c5b7", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": -0.5, 19 | "trimX": 0, 20 | "trimY": 4, 21 | "width": 22, 22 | "height": 27, 23 | "rawWidth": 22, 24 | "rawHeight": 34, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/x_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/x_y.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/x_y.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "eb49e2f2-0ab0-4803-8fed-0d66a755fbbb", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "x_y": { 11 | "ver": "1.0.3", 12 | "uuid": "4acc9f07-be70-45e5-aa86-46ecb3d88d01", 13 | "rawTextureUuid": "eb49e2f2-0ab0-4803-8fed-0d66a755fbbb", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": -0.5, 19 | "trimX": 0, 20 | "trimY": 4, 21 | "width": 22, 22 | "height": 27, 23 | "rawWidth": 22, 24 | "rawHeight": 34, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiao1_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/xiao1_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiao1_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "60516668-bc77-4ae6-9174-6b119ad98348", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "xiao1_n": { 11 | "ver": "1.0.3", 12 | "uuid": "969df4d9-542e-407e-ace9-15ff4b0a2ba2", 13 | "rawTextureUuid": "60516668-bc77-4ae6-9174-6b119ad98348", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0.5, 18 | "offsetY": -0.5, 19 | "trimX": 1, 20 | "trimY": 1, 21 | "width": 574, 22 | "height": 272, 23 | "rawWidth": 575, 24 | "rawHeight": 273, 25 | "borderTop": 30, 26 | "borderBottom": 30, 27 | "borderLeft": 30, 28 | "borderRight": 30, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiao2_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/xiao2_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiao2_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "9388431f-71f1-4464-b88e-a0493c0c3030", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "xiao2_n": { 11 | "ver": "1.0.3", 12 | "uuid": "611c7bc8-105a-4cb2-a05a-490fcead81e7", 13 | "rawTextureUuid": "9388431f-71f1-4464-b88e-a0493c0c3030", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 2, 19 | "trimX": 0, 20 | "trimY": 1, 21 | "width": 229, 22 | "height": 223, 23 | "rawWidth": 229, 24 | "rawHeight": 229, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiaolight_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/xiaolight_n.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/xiaolight_n.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "14c9df41-daf1-447d-a723-57936deb7df1", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "xiaolight_n": { 11 | "ver": "1.0.3", 12 | "uuid": "e809b0d9-baee-4354-a57e-c12d3d1de69b", 13 | "rawTextureUuid": "14c9df41-daf1-447d-a723-57936deb7df1", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": -10.5, 18 | "offsetY": 14, 19 | "trimX": 8, 20 | "trimY": 5, 21 | "width": 601, 22 | "height": 600, 23 | "rawWidth": 638, 24 | "rawHeight": 638, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/ying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/assets/resources/png/ying.png -------------------------------------------------------------------------------- /client_cocos/assets/resources/png/ying.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.3.0", 3 | "uuid": "ae168a96-823b-4ed9-a848-e534424b2915", 4 | "type": "sprite", 5 | "wrapMode": "clamp", 6 | "filterMode": "bilinear", 7 | "premultiplyAlpha": false, 8 | "platformSettings": {}, 9 | "subMetas": { 10 | "ying": { 11 | "ver": "1.0.3", 12 | "uuid": "7116460f-86a5-4f69-b0da-85727be1443c", 13 | "rawTextureUuid": "ae168a96-823b-4ed9-a848-e534424b2915", 14 | "trimType": "auto", 15 | "trimThreshold": 1, 16 | "rotated": false, 17 | "offsetX": 0, 18 | "offsetY": 0, 19 | "trimX": 0, 20 | "trimY": 0, 21 | "width": 248, 22 | "height": 149, 23 | "rawWidth": 248, 24 | "rawHeight": 149, 25 | "borderTop": 0, 26 | "borderBottom": 0, 27 | "borderLeft": 0, 28 | "borderRight": 0, 29 | "subMetas": {} 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.1", 3 | "uuid": "23aa467b-fa21-455d-8b81-ac4afcb27267", 4 | "isGroup": false, 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/AlertView.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "d326803c-cd21-42a2-b5f2-b41c3f6d13b6", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/ChipItem.prefab: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.Prefab", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "data": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Node", 13 | "_name": "chip_b1", 14 | "_objFlags": 0, 15 | "_parent": null, 16 | "_children": [], 17 | "_tag": -1, 18 | "_active": true, 19 | "_components": [ 20 | { 21 | "__id__": 2 22 | } 23 | ], 24 | "_prefab": { 25 | "__id__": 3 26 | }, 27 | "_id": "", 28 | "_opacity": 255, 29 | "_color": { 30 | "__type__": "cc.Color", 31 | "r": 255, 32 | "g": 255, 33 | "b": 255, 34 | "a": 255 35 | }, 36 | "_cascadeOpacityEnabled": true, 37 | "_anchorPoint": { 38 | "__type__": "cc.Vec2", 39 | "x": 0.5, 40 | "y": 0.5 41 | }, 42 | "_contentSize": { 43 | "__type__": "cc.Size", 44 | "width": 79, 45 | "height": 78 46 | }, 47 | "_rotationX": 0, 48 | "_rotationY": 0, 49 | "_scaleX": 1, 50 | "_scaleY": 1, 51 | "_position": { 52 | "__type__": "cc.Vec2", 53 | "x": 5, 54 | "y": 19 55 | }, 56 | "_skewX": 0, 57 | "_skewY": 0, 58 | "_localZOrder": 0, 59 | "_globalZOrder": 0, 60 | "_opacityModifyRGB": false, 61 | "groupIndex": 0 62 | }, 63 | { 64 | "__type__": "cc.Sprite", 65 | "_name": "", 66 | "_objFlags": 0, 67 | "node": { 68 | "__id__": 1 69 | }, 70 | "_enabled": true, 71 | "_spriteFrame": { 72 | "__uuid__": "a229792c-108a-4441-b4f2-9cd2cd6ba44f" 73 | }, 74 | "_type": 0, 75 | "_sizeMode": 1, 76 | "_fillType": 0, 77 | "_fillCenter": { 78 | "__type__": "cc.Vec2", 79 | "x": 0, 80 | "y": 0 81 | }, 82 | "_fillStart": 0, 83 | "_fillRange": 0, 84 | "_isTrimmedMode": true, 85 | "_srcBlendFactor": 770, 86 | "_dstBlendFactor": 771, 87 | "_atlas": null 88 | }, 89 | { 90 | "__type__": "cc.PrefabInfo", 91 | "root": { 92 | "__id__": 1 93 | }, 94 | "asset": { 95 | "__id__": 0 96 | }, 97 | "fileId": "ddb0a7lXO5Hs4Ef72gG2FDT", 98 | "sync": false 99 | } 100 | ] -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/ChipItem.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "3b7d7bd4-af41-4430-b947-561ed170a6fb", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/MutiLabel.prefab: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.Prefab", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "data": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Node", 13 | "_name": "MutiLabel", 14 | "_objFlags": 0, 15 | "_parent": null, 16 | "_children": [], 17 | "_tag": -1, 18 | "_active": true, 19 | "_components": [ 20 | { 21 | "__id__": 2 22 | } 23 | ], 24 | "_prefab": { 25 | "__id__": 3 26 | }, 27 | "_id": "", 28 | "_opacity": 255, 29 | "_color": { 30 | "__type__": "cc.Color", 31 | "r": 239, 32 | "g": 159, 33 | "b": 38, 34 | "a": 255 35 | }, 36 | "_cascadeOpacityEnabled": true, 37 | "_anchorPoint": { 38 | "__type__": "cc.Vec2", 39 | "x": 0.5, 40 | "y": 0.5 41 | }, 42 | "_contentSize": { 43 | "__type__": "cc.Size", 44 | "width": 122.22, 45 | "height": 100 46 | }, 47 | "_rotationX": 0, 48 | "_rotationY": 0, 49 | "_scaleX": 1, 50 | "_scaleY": 1, 51 | "_position": { 52 | "__type__": "cc.Vec2", 53 | "x": 11.8, 54 | "y": 61.5 55 | }, 56 | "_skewX": 0, 57 | "_skewY": 0, 58 | "_localZOrder": 0, 59 | "_globalZOrder": 0, 60 | "_opacityModifyRGB": false, 61 | "groupIndex": 0 62 | }, 63 | { 64 | "__type__": "cc.Label", 65 | "_name": "", 66 | "_objFlags": 0, 67 | "node": { 68 | "__id__": 1 69 | }, 70 | "_enabled": true, 71 | "_useOriginalSize": false, 72 | "_actualFontSize": 100, 73 | "_fontSize": 100, 74 | "_lineHeight": 100, 75 | "_enableWrapText": true, 76 | "_N$file": { 77 | "__uuid__": "18be7416-02a4-4dcd-bd43-4daeb7641932" 78 | }, 79 | "_isSystemFontUsed": false, 80 | "_spacingX": 0, 81 | "_N$string": "X8", 82 | "_N$horizontalAlign": 1, 83 | "_N$verticalAlign": 1, 84 | "_N$fontFamily": "Arial", 85 | "_N$overflow": 0 86 | }, 87 | { 88 | "__type__": "cc.PrefabInfo", 89 | "root": { 90 | "__id__": 1 91 | }, 92 | "asset": { 93 | "__id__": 0 94 | }, 95 | "fileId": "ca034u0p0xIVIkgX9+F3mPk", 96 | "sync": false 97 | } 98 | ] -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/MutiLabel.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "1443cb75-a757-47e3-ba43-8e3aef2fa583", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/PokerItem.prefab: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.Prefab", 4 | "_name": "", 5 | "_objFlags": 0, 6 | "_rawFiles": null, 7 | "data": { 8 | "__id__": 1 9 | } 10 | }, 11 | { 12 | "__type__": "cc.Node", 13 | "_name": "PokerItem", 14 | "_objFlags": 0, 15 | "_parent": null, 16 | "_children": [], 17 | "_tag": -1, 18 | "_active": true, 19 | "_components": [ 20 | { 21 | "__id__": 2 22 | }, 23 | { 24 | "__id__": 3 25 | } 26 | ], 27 | "_prefab": { 28 | "__id__": 4 29 | }, 30 | "_id": "", 31 | "_opacity": 255, 32 | "_color": { 33 | "__type__": "cc.Color", 34 | "r": 255, 35 | "g": 255, 36 | "b": 255, 37 | "a": 255 38 | }, 39 | "_cascadeOpacityEnabled": true, 40 | "_anchorPoint": { 41 | "__type__": "cc.Vec2", 42 | "x": 0.5, 43 | "y": 0.5 44 | }, 45 | "_contentSize": { 46 | "__type__": "cc.Size", 47 | "width": 64, 48 | "height": 89 49 | }, 50 | "_rotationX": 0, 51 | "_rotationY": 0, 52 | "_scaleX": 1, 53 | "_scaleY": 1, 54 | "_position": { 55 | "__type__": "cc.Vec2", 56 | "x": 0, 57 | "y": 0 58 | }, 59 | "_skewX": 0, 60 | "_skewY": 0, 61 | "_localZOrder": 0, 62 | "_globalZOrder": 0, 63 | "_opacityModifyRGB": false, 64 | "groupIndex": 0 65 | }, 66 | { 67 | "__type__": "cc.Sprite", 68 | "_name": "", 69 | "_objFlags": 0, 70 | "node": { 71 | "__id__": 1 72 | }, 73 | "_enabled": true, 74 | "_spriteFrame": { 75 | "__uuid__": "006b4a8b-fee8-48f9-8484-d645860c8cc2" 76 | }, 77 | "_type": 0, 78 | "_sizeMode": 1, 79 | "_fillType": 0, 80 | "_fillCenter": { 81 | "__type__": "cc.Vec2", 82 | "x": 0, 83 | "y": 0 84 | }, 85 | "_fillStart": 0, 86 | "_fillRange": 0, 87 | "_isTrimmedMode": true, 88 | "_srcBlendFactor": 770, 89 | "_dstBlendFactor": 771, 90 | "_atlas": null 91 | }, 92 | { 93 | "__type__": "b0463P0KZ5B65hOhjkYc58h", 94 | "_name": "", 95 | "_objFlags": 0, 96 | "node": { 97 | "__id__": 1 98 | }, 99 | "_enabled": true 100 | }, 101 | { 102 | "__type__": "cc.PrefabInfo", 103 | "root": { 104 | "__id__": 1 105 | }, 106 | "asset": { 107 | "__id__": 0 108 | }, 109 | "fileId": "475a0WsISBIkJjCZxwVb6wD", 110 | "sync": false 111 | } 112 | ] -------------------------------------------------------------------------------- /client_cocos/assets/resources/prefab/PokerItem.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "uuid": "dc448695-07de-412b-a74f-0279a5f9f228", 4 | "optimizationPolicy": "AUTO", 5 | "asyncLoadAssets": false, 6 | "readonly": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /client_cocos/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs", 5 | "experimentalDecorators": true 6 | }, 7 | "exclude": [ 8 | "node_modules", 9 | ".vscode", 10 | "library", 11 | "local", 12 | "settings", 13 | "temp" 14 | ] 15 | } -------------------------------------------------------------------------------- /client_cocos/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine": "cocos2d-html5", 3 | "packages": "packages" 4 | } -------------------------------------------------------------------------------- /client_cocos/settings/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "appKey": "", 3 | "appSecret": "", 4 | "excludeScenes": [], 5 | "includeAnySDK": false, 6 | "includeSDKBox": false, 7 | "includeSdk": [ 8 | "anysdk" 9 | ], 10 | "inlineSpriteFrames": false, 11 | "inlineSpriteFrames_native": true, 12 | "mergeStartScene": false, 13 | "oauthLoginServer": "", 14 | "optimizeHotUpdate": false, 15 | "orientation": { 16 | "landscapeLeft": true, 17 | "landscapeRight": true, 18 | "portrait": false, 19 | "upsideDown": false 20 | }, 21 | "packageName": "org.cocos2d.helloworld", 22 | "privateKey": "", 23 | "renderMode": "0", 24 | "startScene": "2d2f792f-a40c-49bb-a189-ed176a246e49", 25 | "title": "hello_world", 26 | "webOrientation": "auto" 27 | } -------------------------------------------------------------------------------- /client_cocos/settings/builder.panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "excludeScenes": [], 3 | "packageName": "org.cocos2d.helloworld", 4 | "platform": "web-mobile", 5 | "startScene": "2d2f792f-a40c-49bb-a189-ed176a246e49", 6 | "title": "HelloWorld" 7 | } -------------------------------------------------------------------------------- /client_cocos/settings/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "collision-matrix": [ 3 | [ 4 | true 5 | ] 6 | ], 7 | "design-resolution-height": 750, 8 | "design-resolution-width": 1334, 9 | "excluded-modules": [], 10 | "fit-height": true, 11 | "fit-width": true, 12 | "group-list": [ 13 | "default" 14 | ], 15 | "simulator-orientation": false, 16 | "simulator-resolution": { 17 | "height": 640, 18 | "width": 960 19 | }, 20 | "start-scene": "2d2f792f-a40c-49bb-a189-ed176a246e49", 21 | "use-customize-simulator": false, 22 | "use-project-simulator-setting": false, 23 | "cocos-analytics": { 24 | "enable": false, 25 | "appID": "13798", 26 | "appSecret": "959b3ac0037d0f3c2fdce94f8421a9b2" 27 | } 28 | } -------------------------------------------------------------------------------- /client_cocos/template-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akerdi/pinus-chess/e5125330566d65c9cd967eb8be9f394d64a6f4c2/client_cocos/template-banner.png -------------------------------------------------------------------------------- /client_cocos/template.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TEMPLATES.helloworld.name", 3 | "desc": "TEMPLATES.helloworld.desc", 4 | "banner": "template-banner.png" 5 | } -------------------------------------------------------------------------------- /game-server/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // 使用 IntelliSense 了解相关属性。 3 | // 悬停以查看现有属性的描述。 4 | // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "type": "node", 9 | "request": "launch", 10 | "name": "LaunchMaster", 11 | "program": "${workspaceFolder}\\dist\\app.js", 12 | "outFiles": [ 13 | "${workspaceFolder}/**/*.js" 14 | ] 15 | }, 16 | { 17 | "type": "node", 18 | "request": "attach", 19 | "name": "Debug Chess", 20 | "address": "127.0.0.1", 21 | "port": 10003, 22 | "localRoot": "${workspaceFolder}", 23 | "remoteRoot": "${workspaceFolder}" 24 | } 25 | 26 | ] 27 | } -------------------------------------------------------------------------------- /game-server/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /game-server/app.ts: -------------------------------------------------------------------------------- 1 | import { pinus } from 'pinus'; 2 | import { preload } from './preload'; 3 | import mysqlHelper from './app/dao/mysqlHelper' 4 | 5 | /** 6 | * 替换全局Promise 7 | * 自动解析sourcemap 8 | * 捕获全局错误 9 | */ 10 | preload(); 11 | 12 | /** 13 | * Init app for client. 14 | */ 15 | var app = pinus.createApp(); 16 | app.set('name', 'niuniuDemo0'); 17 | 18 | // app configuration 19 | app.configure('production|development', 'connector', function(){ 20 | app.set('connectorConfig', 21 | { 22 | connector : pinus.connectors.hybridconnector, 23 | heartbeat : 3, 24 | useDict : true, 25 | useProtobuf : true 26 | }); 27 | }); 28 | 29 | app.configure("production|development", "gate", function () { 30 | app.set("connectorConfig", { 31 | connector: pinus.connectors.hybridconnector, 32 | useProtobuf: true 33 | }); 34 | }); 35 | 36 | app.loadConfig("mysql", app.getBase() + "/config/mysql.json"); 37 | app.configure("production|development", function () { 38 | let sqlHelper = new mysqlHelper(app); 39 | app.set("sqlHelper", sqlHelper); 40 | }) 41 | 42 | // start app 43 | app.start(); 44 | 45 | process.on('uncaughtException', function (err) { 46 | console.error(' Caught exception: ' + err.stack); 47 | }); -------------------------------------------------------------------------------- /game-server/app/game/GMResponse.ts: -------------------------------------------------------------------------------- 1 | 2 | export default function(code, msg, data?:any) { 3 | return { 4 | code: code, 5 | msg: msg, 6 | data: data ? data : "" 7 | 8 | }; 9 | }; -------------------------------------------------------------------------------- /game-server/app/game/RoomManager.ts: -------------------------------------------------------------------------------- 1 | import MySqlHelper from '../dao/mysqlHelper' 2 | 3 | export default class RoomManager { 4 | public static fetchRoomInfo(sqlHelper:MySqlHelper, rtype, callback) { 5 | let sql = `select * from t_room where rtype = '${rtype}' limit 6;`; 6 | sqlHelper.query(sql, null, (error, results) => { 7 | callback(error, results); 8 | }) 9 | } 10 | 11 | public static fetchRoomCreatedByUser(sqlHelper:MySqlHelper, userid:string, callback:Function) { 12 | let sql = `select * from t_room where creator = '${userid}';`; 13 | sqlHelper.query(sql, null, (error, results, fields) => { 14 | if (callback) { 15 | let roomdata = null; 16 | if (results) { 17 | roomdata = results[0]; 18 | } 19 | callback(error, roomdata); 20 | } 21 | }) 22 | } 23 | 24 | public static fetchRoomJoinedByUser(sqlHelper:MySqlHelper, userid:string, callback) { 25 | let sql = `select * from t_room where users like '%${userid}%';`; 26 | sqlHelper.query(sql, null, (error, results, fields) => { 27 | if (callback) { 28 | let roomdata = null; 29 | if (results) { 30 | roomdata = results[0]; 31 | } 32 | callback(error, roomdata); 33 | } 34 | }) 35 | } 36 | 37 | public static createRoom(sqlHelper:MySqlHelper, rtype:string, userid:string, callback:Function) { 38 | let time = new Date().getTime(); 39 | let params = { 40 | rtype: rtype, 41 | createtime: time, 42 | creator: userid, 43 | cost: 1, 44 | state: 0 45 | }; 46 | let sql = 'insert into t_room SET ?'; 47 | sqlHelper.query(sql, params, (error, results, fields) => { 48 | if (error) { 49 | callback(error, results); 50 | } else { 51 | this.fetchRoomCreatedByUser(sqlHelper, userid, callback); 52 | } 53 | }) 54 | } 55 | 56 | public static fetchUserInfo(sqlHelper:MySqlHelper, uidArr, callback:Function) { 57 | let uidstring = uidArr.join(","); 58 | let sql = `select * from t_user where userid in (${uidstring})`; 59 | sqlHelper.query(sql, null, (error, results, fields) => { 60 | callback(error, results); 61 | }) 62 | } 63 | } -------------------------------------------------------------------------------- /game-server/app/game/UToken.ts: -------------------------------------------------------------------------------- 1 | import * as crypto from 'crypto' 2 | 3 | let secret_key = "InmbuvP6Z8"; 4 | 5 | export default class UToken { 6 | public userid:string; 7 | public exp:number; 8 | 9 | constructor (userid?:string) { 10 | this.userid = userid; 11 | this.refresh(); 12 | } 13 | 14 | public refresh() { 15 | this.exp = new Date().getTime() + 1000 * 60 * 60; 16 | } 17 | 18 | public isValid() { 19 | if (this.userid && this.exp) { 20 | return true; 21 | } 22 | return false; 23 | } 24 | 25 | public isOutOfDate() { 26 | let now = new Date().getTime(); 27 | return (now > this.exp); 28 | } 29 | 30 | public encrypt() { 31 | let cipher = crypto.createCipher("aes-256-cbc", secret_key); 32 | let str = JSON.stringify(this); 33 | let crypted = cipher.update(str, 'utf8', 'hex'); 34 | crypted += cipher.final("hex"); 35 | return crypted; 36 | } 37 | 38 | public decrypt(tokenString:string) { 39 | if (tokenString) { 40 | let decipher = crypto.createDecipher("aes-256-cbc", secret_key); 41 | let dec = decipher.update(tokenString, "hex", "utf8"); 42 | dec += decipher.final("utf8"); 43 | let obj = JSON.parse(dec); 44 | this.userid = obj.userid; 45 | this.exp = obj.exp; 46 | } else { 47 | this.userid = null; 48 | this.exp = null; 49 | } 50 | } 51 | } -------------------------------------------------------------------------------- /game-server/app/servers/brnn/handler/brnnHandler.ts: -------------------------------------------------------------------------------- 1 | import GMResponse from '../../../game/GMResponse' 2 | import { Application, BackendSession, ChannelService } from 'pinus' 3 | import DouniuRoom from '../../../game/DouniuRoom'; 4 | import mysqlHelper from '../../../dao/mysqlHelper'; 5 | 6 | export default function (app:Application) { 7 | return new Handler(app); 8 | } 9 | 10 | export class Handler { 11 | private channelService:ChannelService; 12 | constructor (private app:Application) { 13 | this.app = app; 14 | this.channelService = app.get("channelService"); 15 | } 16 | 17 | public async chipIn(msg:{userid:string, gold:number, pkindex:number}, session:BackendSession) { 18 | let userid = msg.userid; 19 | let gold = msg.gold; 20 | let pkindex = msg.pkindex; 21 | let channel = this.channelService.getChannel("brnn", false); 22 | if (!channel) { 23 | return GMResponse(-101, "未找到房间") 24 | } 25 | let room:DouniuRoom = channel["gameRoom"]; 26 | let sqlHelper:mysqlHelper = this.app.get("sqlHelper") 27 | try { 28 | let userinfo:any = await sqlHelper.asyncQueryUserInfo(userid); 29 | let cpr = room.chipIn(userid, gold, pkindex, userinfo.gold); 30 | return GMResponse(1, "ok", cpr); 31 | } catch (error) { 32 | return GMResponse(-105, "下次失败,可能余额不够"); 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /game-server/app/servers/connector/remote/authRemoter.ts: -------------------------------------------------------------------------------- 1 | import {Application, RemoterClass, FrontendSession} from 'pinus'; 2 | 3 | export default function (app: Application) { 4 | return new AuthRemoter(app); 5 | } 6 | 7 | // UserRpc的命名空间自动合并 8 | declare global { 9 | interface UserRpc { 10 | connector: { 11 | // 一次性定义一个类自动合并到UserRpc中 12 | authRemoter: RemoterClass; 13 | }; 14 | } 15 | } 16 | 17 | 18 | export class AuthRemoter { 19 | constructor(private app: Application) { 20 | 21 | } 22 | 23 | /** 24 | * 25 | * @param username 26 | * @param password 27 | */ 28 | public async auth(username: string , password: string) { 29 | return true; 30 | } 31 | 32 | // 私有方法不会加入到RPC提示里 33 | private async privateMethod(testarg:string,arg2:number){ 34 | 35 | } 36 | } -------------------------------------------------------------------------------- /game-server/dist/app.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | const pinus_1 = require("pinus"); 4 | const preload_1 = require("./preload"); 5 | const mysqlHelper_1 = require("./app/dao/mysqlHelper"); 6 | /** 7 | * 替换全局Promise 8 | * 自动解析sourcemap 9 | * 捕获全局错误 10 | */ 11 | preload_1.preload(); 12 | /** 13 | * Init app for client. 14 | */ 15 | var app = pinus_1.pinus.createApp(); 16 | app.set('name', 'niuniuDemo0'); 17 | // app configuration 18 | app.configure('production|development', 'connector', function () { 19 | app.set('connectorConfig', { 20 | connector: pinus_1.pinus.connectors.hybridconnector, 21 | heartbeat: 3, 22 | useDict: true, 23 | useProtobuf: true 24 | }); 25 | }); 26 | app.configure("production|development", "gate", function () { 27 | app.set("connectorConfig", { 28 | connector: pinus_1.pinus.connectors.hybridconnector, 29 | useProtobuf: true 30 | }); 31 | }); 32 | app.loadConfig("mysql", app.getBase() + "/config/mysql.json"); 33 | app.configure("production|development", function () { 34 | let sqlHelper = new mysqlHelper_1.default(app); 35 | app.set("sqlHelper", sqlHelper); 36 | }); 37 | // start app 38 | app.start(); 39 | process.on('uncaughtException', function (err) { 40 | console.error(' Caught exception: ' + err.stack); 41 | }); 42 | //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vYXBwLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7O0FBQUEsaUNBQThCO0FBQzlCLHVDQUFvQztBQUNwQyx1REFBK0M7QUFFL0M7Ozs7R0FJRztBQUNILGlCQUFPLEVBQUUsQ0FBQztBQUVWOztHQUVHO0FBQ0gsSUFBSSxHQUFHLEdBQUcsYUFBSyxDQUFDLFNBQVMsRUFBRSxDQUFDO0FBQzVCLEdBQUcsQ0FBQyxHQUFHLENBQUMsTUFBTSxFQUFFLGFBQWEsQ0FBQyxDQUFDO0FBRS9CLG9CQUFvQjtBQUNwQixHQUFHLENBQUMsU0FBUyxDQUFDLHdCQUF3QixFQUFFLFdBQVcsRUFBRTtJQUNuRCxHQUFHLENBQUMsR0FBRyxDQUFDLGlCQUFpQixFQUN2QjtRQUNFLFNBQVMsRUFBRyxhQUFLLENBQUMsVUFBVSxDQUFDLGVBQWU7UUFDNUMsU0FBUyxFQUFHLENBQUM7UUFDYixPQUFPLEVBQUcsSUFBSTtRQUNkLFdBQVcsRUFBRyxJQUFJO0tBQ25CLENBQUMsQ0FBQztBQUNQLENBQUMsQ0FBQyxDQUFDO0FBRUgsR0FBRyxDQUFDLFNBQVMsQ0FBQyx3QkFBd0IsRUFBRSxNQUFNLEVBQUU7SUFDOUMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxpQkFBaUIsRUFBRTtRQUN6QixTQUFTLEVBQUUsYUFBSyxDQUFDLFVBQVUsQ0FBQyxlQUFlO1FBQzNDLFdBQVcsRUFBRSxJQUFJO0tBQ2xCLENBQUMsQ0FBQztBQUNMLENBQUMsQ0FBQyxDQUFDO0FBRUgsR0FBRyxDQUFDLFVBQVUsQ0FBQyxPQUFPLEVBQUUsR0FBRyxDQUFDLE9BQU8sRUFBRSxHQUFHLG9CQUFvQixDQUFDLENBQUM7QUFDOUQsR0FBRyxDQUFDLFNBQVMsQ0FBQyx3QkFBd0IsRUFBRTtJQUN0QyxJQUFJLFNBQVMsR0FBRyxJQUFJLHFCQUFXLENBQUMsR0FBRyxDQUFDLENBQUM7SUFDckMsR0FBRyxDQUFDLEdBQUcsQ0FBQyxXQUFXLEVBQUUsU0FBUyxDQUFDLENBQUM7QUFDbEMsQ0FBQyxDQUFDLENBQUE7QUFFRixZQUFZO0FBQ1osR0FBRyxDQUFDLEtBQUssRUFBRSxDQUFDO0FBRVosT0FBTyxDQUFDLEVBQUUsQ0FBQyxtQkFBbUIsRUFBRSxVQUFVLEdBQUc7SUFDM0MsT0FBTyxDQUFDLEtBQUssQ0FBQyxxQkFBcUIsR0FBRyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUM7QUFDbkQsQ0FBQyxDQUFDLENBQUMifQ== -------------------------------------------------------------------------------- /game-server/dist/app/game/GMResponse.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | function default_1(code, msg, data) { 4 | return { 5 | code: code, 6 | msg: msg, 7 | data: data ? data : "" 8 | }; 9 | } 10 | exports.default = default_1; 11 | ; 12 | //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiR01SZXNwb25zZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL2FwcC9nYW1lL0dNUmVzcG9uc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFDQSxtQkFBd0IsSUFBSSxFQUFFLEdBQUcsRUFBRSxJQUFTO0lBQ3hDLE9BQU87UUFDSCxJQUFJLEVBQUUsSUFBSTtRQUNWLEdBQUcsRUFBRSxHQUFHO1FBQ1IsSUFBSSxFQUFFLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFO0tBRXpCLENBQUM7QUFDTixDQUFDO0FBUEQsNEJBT0M7QUFBQSxDQUFDIn0= -------------------------------------------------------------------------------- /game-server/dist/app/servers/connector/remote/authRemoter.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { 3 | return new (P || (P = Promise))(function (resolve, reject) { 4 | function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } 5 | function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } 6 | function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } 7 | step((generator = generator.apply(thisArg, _arguments || [])).next()); 8 | }); 9 | }; 10 | Object.defineProperty(exports, "__esModule", { value: true }); 11 | function default_1(app) { 12 | return new AuthRemoter(app); 13 | } 14 | exports.default = default_1; 15 | class AuthRemoter { 16 | constructor(app) { 17 | this.app = app; 18 | } 19 | /** 20 | * 21 | * @param username 22 | * @param password 23 | */ 24 | auth(username, password) { 25 | return __awaiter(this, void 0, void 0, function* () { 26 | return true; 27 | }); 28 | } 29 | // 私有方法不会加入到RPC提示里 30 | privateMethod(testarg, arg2) { 31 | return __awaiter(this, void 0, void 0, function* () { 32 | }); 33 | } 34 | } 35 | exports.AuthRemoter = AuthRemoter; 36 | //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aFJlbW90ZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9hcHAvc2VydmVycy9jb25uZWN0b3IvcmVtb3RlL2F1dGhSZW1vdGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7QUFFQSxtQkFBeUIsR0FBZ0I7SUFDckMsT0FBTyxJQUFJLFdBQVcsQ0FBQyxHQUFHLENBQUMsQ0FBQztBQUNoQyxDQUFDO0FBRkQsNEJBRUM7QUFhRDtJQUNJLFlBQW9CLEdBQWdCO1FBQWhCLFFBQUcsR0FBSCxHQUFHLENBQWE7SUFFcEMsQ0FBQztJQUVEOzs7O09BSUc7SUFDVSxJQUFJLENBQUMsUUFBZ0IsRUFBRyxRQUFnQjs7WUFDakQsT0FBTyxJQUFJLENBQUM7UUFDaEIsQ0FBQztLQUFBO0lBRUQsa0JBQWtCO0lBQ0osYUFBYSxDQUFDLE9BQWMsRUFBQyxJQUFXOztRQUV0RCxDQUFDO0tBQUE7Q0FDSjtBQWxCRCxrQ0FrQkMifQ== -------------------------------------------------------------------------------- /game-server/dist/config/adminServer.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "type": "connector", 4 | "token": "agarxhqb98rpajloaxn34ga8xrunpagkjwlaw3ruxnpaagl29w4rxn" 5 | }, 6 | { 7 | "type": "chat", 8 | "token": "agarxhqb98rpajloaxn34ga8xrunpagkjwlaw3ruxnpaagl29w4rxn" 9 | }, 10 | { 11 | "type": "brnn", 12 | "token": "agarxhqb98rpajloaxn34ga8xrunpagkjwlaw3ruxnpaagl29w4rxn" 13 | }, 14 | { 15 | "type": "jdnn", 16 | "token": "agarxhqb98rpajloaxn34ga8xrunpagkjwlaw3ruxnpaagl29w4rxn" 17 | }, 18 | { 19 | "type": "gate", 20 | "token": "agarxhqb98rpajloaxn34ga8xrunpagkjwlaw3ruxnpaagl29w4rxn" 21 | } 22 | ] -------------------------------------------------------------------------------- /game-server/dist/config/adminUser.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "user-1", 4 | "username": "admin", 5 | "password": "admin", 6 | "level": 1 7 | }, 8 | 9 | { 10 | "id": "user-2", 11 | "username": "monitor", 12 | "password": "monitor", 13 | "level": 2 14 | }, 15 | 16 | { 17 | "id": "user-3", 18 | "username": "test", 19 | "password": "test", 20 | "level": 2 21 | } 22 | ] 23 | -------------------------------------------------------------------------------- /game-server/dist/config/clientProtos.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /game-server/dist/config/dictionary.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /game-server/dist/config/master.json: -------------------------------------------------------------------------------- 1 | { 2 | "development": { 3 | "id": "master-server-1", 4 | "host": "127.0.0.1", 5 | "port": 3005 6 | }, 7 | "production": { 8 | "id": "master-server-1", 9 | "host": "127.0.0.1", 10 | "port": 3005 11 | } 12 | } -------------------------------------------------------------------------------- /game-server/dist/config/mysql.json: -------------------------------------------------------------------------------- 1 | { 2 | "development": { 3 | "connectionLimit": 10, 4 | "host": "127.0.0.1", 5 | "port": "3306", 6 | "database": "chess", 7 | "user": "root", 8 | "password": "123" 9 | }, 10 | "production": { 11 | "connectionLimit": 10, 12 | "host": "127.0.0.1", 13 | "port": "3306", 14 | "database": "chess", 15 | "user": "root", 16 | "password": "123" 17 | } 18 | } -------------------------------------------------------------------------------- /game-server/dist/config/serverProtos.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /game-server/dist/config/servers.json: -------------------------------------------------------------------------------- 1 | { 2 | "development": { 3 | "connector": [ 4 | { 5 | "id": "connector-server-1", 6 | "host": "127.0.0.1", 7 | "port": 3150, 8 | "clientHost": "127.0.0.1", 9 | "clientPort": 3010, 10 | "frontend": true, 11 | "args": " --inspect=10001" 12 | } 13 | ], 14 | "chat": [ 15 | { 16 | "id": "chat-server-1", 17 | "host":"127.0.0.1", 18 | "port": 3104, 19 | "args": " --inspect=10002" 20 | } 21 | ], 22 | "brnn": [ 23 | { 24 | "id": "brnn-server-1", 25 | "host": "127.0.0.1", 26 | "port": 3105, 27 | "args": " --inspect=10003" 28 | } 29 | ], 30 | "jdnn": [ 31 | { 32 | "id": "jdnn-server-1", 33 | "host": "127.0.0.1", 34 | "port": 3106, 35 | "args": " --inspect=10004" 36 | } 37 | ], 38 | "gate": [ 39 | { 40 | "id": "gate-server-1", 41 | "host": "127.0.0.1", 42 | "clientPort": 3101, 43 | "frontend": true, 44 | "args": " --inspect=10005" 45 | } 46 | ] 47 | }, 48 | "production": { 49 | "connector": [ 50 | { 51 | "id": "connector-server-1", 52 | "host": "127.0.0.1", 53 | "port": 3150, 54 | "clientHost": "127.0.0.1", 55 | "clientPort": 3010, 56 | "frontend": true, 57 | "args": " --inspect=10002" 58 | } 59 | ] 60 | } 61 | } -------------------------------------------------------------------------------- /game-server/dist/logs/con-log-chat-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.338] [INFO] pinus - [chat-server-1 application.js] application inited: "chat-server-1" 2 | [2019-02-15T14:14:44.392] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter before start... 3 | [2019-02-15T14:14:44.393] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 4 | [2019-02-15T14:14:44.401] [INFO] pinus-admin - [chat-server-1 consoleService.js] try to connect master: "chat", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.509] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 6 | [2019-02-15T14:14:44.511] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" finish start 7 | [2019-02-15T14:14:44.512] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" startup in 125 ms 8 | [2019-02-15T14:14:44.513] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"connector-server-1","host":"127.0.0.1","port":3150,"clientHost":"127.0.0.1","clientPort":3010,"frontend":"true","args":" --inspect=10001","serverType":"connector","remoterPaths":[{"namespace":"sys","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/frontend"},{"namespace":"user","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/remote"}],"handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/handler"],"pid":52664}} 9 | [2019-02-15T14:14:44.527] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"gate-server-1","host":"127.0.0.1","clientPort":3101,"frontend":"true","args":" --inspect=10005","serverType":"gate","handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/gate/handler"],"pid":52668}} 10 | [2019-02-15T14:14:44.541] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"jdnn-server-1","host":"127.0.0.1","port":3106,"args":" --inspect=10004","serverType":"jdnn","remoterPaths":[{"namespace":"sys","serverType":"jdnn","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/backend"}],"handlerPaths":[],"pid":52667}} 11 | -------------------------------------------------------------------------------- /game-server/dist/logs/con-log-jdnn-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.375] [INFO] pinus - [jdnn-server-1 application.js] application inited: "jdnn-server-1" 2 | [2019-02-15T14:14:44.429] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter before start... 3 | [2019-02-15T14:14:44.430] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 4 | [2019-02-15T14:14:44.440] [INFO] pinus-admin - [jdnn-server-1 consoleService.js] try to connect master: "jdnn", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.555] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 6 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" finish start 7 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" startup in 136 ms 8 | -------------------------------------------------------------------------------- /game-server/dist/logs/forward-log-chat-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.338] [INFO] pinus - [chat-server-1 application.js] application inited: "chat-server-1" 2 | [2019-02-15T14:14:44.392] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter before start... 3 | [2019-02-15T14:14:44.393] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 4 | [2019-02-15T14:14:44.401] [INFO] pinus-admin - [chat-server-1 consoleService.js] try to connect master: "chat", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.509] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 6 | [2019-02-15T14:14:44.511] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" finish start 7 | [2019-02-15T14:14:44.512] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" startup in 125 ms 8 | [2019-02-15T14:14:44.513] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"connector-server-1","host":"127.0.0.1","port":3150,"clientHost":"127.0.0.1","clientPort":3010,"frontend":"true","args":" --inspect=10001","serverType":"connector","remoterPaths":[{"namespace":"sys","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/frontend"},{"namespace":"user","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/remote"}],"handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/handler"],"pid":52664}} 9 | [2019-02-15T14:14:44.527] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"gate-server-1","host":"127.0.0.1","clientPort":3101,"frontend":"true","args":" --inspect=10005","serverType":"gate","handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/gate/handler"],"pid":52668}} 10 | [2019-02-15T14:14:44.541] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"jdnn-server-1","host":"127.0.0.1","port":3106,"args":" --inspect=10004","serverType":"jdnn","remoterPaths":[{"namespace":"sys","serverType":"jdnn","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/backend"}],"handlerPaths":[],"pid":52667}} 11 | -------------------------------------------------------------------------------- /game-server/dist/logs/forward-log-jdnn-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.375] [INFO] pinus - [jdnn-server-1 application.js] application inited: "jdnn-server-1" 2 | [2019-02-15T14:14:44.429] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter before start... 3 | [2019-02-15T14:14:44.430] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 4 | [2019-02-15T14:14:44.440] [INFO] pinus-admin - [jdnn-server-1 consoleService.js] try to connect master: "jdnn", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.555] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 6 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" finish start 7 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" startup in 136 ms 8 | -------------------------------------------------------------------------------- /game-server/dist/logs/pinus-chat-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.338] [INFO] pinus - [chat-server-1 application.js] application inited: "chat-server-1" 2 | [2019-02-15T14:14:44.392] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter before start... 3 | [2019-02-15T14:14:44.393] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 4 | [2019-02-15T14:14:44.401] [INFO] pinus-admin - [chat-server-1 consoleService.js] try to connect master: "chat", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.509] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 6 | [2019-02-15T14:14:44.511] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" finish start 7 | [2019-02-15T14:14:44.512] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" startup in 125 ms 8 | [2019-02-15T14:14:44.513] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"connector-server-1","host":"127.0.0.1","port":3150,"clientHost":"127.0.0.1","clientPort":3010,"frontend":"true","args":" --inspect=10001","serverType":"connector","remoterPaths":[{"namespace":"sys","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/frontend"},{"namespace":"user","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/remote"}],"handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/handler"],"pid":52664}} 9 | [2019-02-15T14:14:44.527] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"gate-server-1","host":"127.0.0.1","clientPort":3101,"frontend":"true","args":" --inspect=10005","serverType":"gate","handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/gate/handler"],"pid":52668}} 10 | [2019-02-15T14:14:44.541] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"jdnn-server-1","host":"127.0.0.1","port":3106,"args":" --inspect=10004","serverType":"jdnn","remoterPaths":[{"namespace":"sys","serverType":"jdnn","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/backend"}],"handlerPaths":[],"pid":52667}} 11 | -------------------------------------------------------------------------------- /game-server/dist/logs/pinus-jdnn-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.375] [INFO] pinus - [jdnn-server-1 application.js] application inited: "jdnn-server-1" 2 | [2019-02-15T14:14:44.429] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter before start... 3 | [2019-02-15T14:14:44.430] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 4 | [2019-02-15T14:14:44.440] [INFO] pinus-admin - [jdnn-server-1 consoleService.js] try to connect master: "jdnn", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.555] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 6 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" finish start 7 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" startup in 136 ms 8 | -------------------------------------------------------------------------------- /game-server/dist/logs/pinus-rpc-chat-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.338] [INFO] pinus - [chat-server-1 application.js] application inited: "chat-server-1" 2 | [2019-02-15T14:14:44.392] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter before start... 3 | [2019-02-15T14:14:44.393] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 4 | [2019-02-15T14:14:44.401] [INFO] pinus-admin - [chat-server-1 consoleService.js] try to connect master: "chat", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.509] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 6 | [2019-02-15T14:14:44.511] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" finish start 7 | [2019-02-15T14:14:44.512] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" startup in 125 ms 8 | [2019-02-15T14:14:44.513] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"connector-server-1","host":"127.0.0.1","port":3150,"clientHost":"127.0.0.1","clientPort":3010,"frontend":"true","args":" --inspect=10001","serverType":"connector","remoterPaths":[{"namespace":"sys","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/frontend"},{"namespace":"user","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/remote"}],"handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/handler"],"pid":52664}} 9 | [2019-02-15T14:14:44.527] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"gate-server-1","host":"127.0.0.1","clientPort":3101,"frontend":"true","args":" --inspect=10005","serverType":"gate","handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/gate/handler"],"pid":52668}} 10 | [2019-02-15T14:14:44.541] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"jdnn-server-1","host":"127.0.0.1","port":3106,"args":" --inspect=10004","serverType":"jdnn","remoterPaths":[{"namespace":"sys","serverType":"jdnn","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/backend"}],"handlerPaths":[],"pid":52667}} 11 | -------------------------------------------------------------------------------- /game-server/dist/logs/pinus-rpc-jdnn-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.375] [INFO] pinus - [jdnn-server-1 application.js] application inited: "jdnn-server-1" 2 | [2019-02-15T14:14:44.429] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter before start... 3 | [2019-02-15T14:14:44.430] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 4 | [2019-02-15T14:14:44.440] [INFO] pinus-admin - [jdnn-server-1 consoleService.js] try to connect master: "jdnn", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.555] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 6 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" finish start 7 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" startup in 136 ms 8 | -------------------------------------------------------------------------------- /game-server/dist/logs/rpc-debug-chat-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.338] [INFO] pinus - [chat-server-1 application.js] application inited: "chat-server-1" 2 | [2019-02-15T14:14:44.392] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter before start... 3 | [2019-02-15T14:14:44.393] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 4 | [2019-02-15T14:14:44.401] [INFO] pinus-admin - [chat-server-1 consoleService.js] try to connect master: "chat", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.509] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 6 | [2019-02-15T14:14:44.511] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" finish start 7 | [2019-02-15T14:14:44.512] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" startup in 125 ms 8 | [2019-02-15T14:14:44.513] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"connector-server-1","host":"127.0.0.1","port":3150,"clientHost":"127.0.0.1","clientPort":3010,"frontend":"true","args":" --inspect=10001","serverType":"connector","remoterPaths":[{"namespace":"sys","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/frontend"},{"namespace":"user","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/remote"}],"handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/handler"],"pid":52664}} 9 | [2019-02-15T14:14:44.527] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"gate-server-1","host":"127.0.0.1","clientPort":3101,"frontend":"true","args":" --inspect=10005","serverType":"gate","handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/gate/handler"],"pid":52668}} 10 | [2019-02-15T14:14:44.541] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"jdnn-server-1","host":"127.0.0.1","port":3106,"args":" --inspect=10004","serverType":"jdnn","remoterPaths":[{"namespace":"sys","serverType":"jdnn","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/backend"}],"handlerPaths":[],"pid":52667}} 11 | -------------------------------------------------------------------------------- /game-server/dist/logs/rpc-debug-jdnn-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.375] [INFO] pinus - [jdnn-server-1 application.js] application inited: "jdnn-server-1" 2 | [2019-02-15T14:14:44.429] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter before start... 3 | [2019-02-15T14:14:44.430] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 4 | [2019-02-15T14:14:44.440] [INFO] pinus-admin - [jdnn-server-1 consoleService.js] try to connect master: "jdnn", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.555] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 6 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" finish start 7 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" startup in 136 ms 8 | -------------------------------------------------------------------------------- /game-server/dist/logs/rpc-log-chat-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.338] [INFO] pinus - [chat-server-1 application.js] application inited: "chat-server-1" 2 | [2019-02-15T14:14:44.392] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter before start... 3 | [2019-02-15T14:14:44.393] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 4 | [2019-02-15T14:14:44.401] [INFO] pinus-admin - [chat-server-1 consoleService.js] try to connect master: "chat", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.509] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" enter after start... 6 | [2019-02-15T14:14:44.511] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" finish start 7 | [2019-02-15T14:14:44.512] [INFO] pinus - [chat-server-1 application.js] "chat-server-1" startup in 125 ms 8 | [2019-02-15T14:14:44.513] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"connector-server-1","host":"127.0.0.1","port":3150,"clientHost":"127.0.0.1","clientPort":3010,"frontend":"true","args":" --inspect=10001","serverType":"connector","remoterPaths":[{"namespace":"sys","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/frontend"},{"namespace":"user","serverType":"connector","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/remote"}],"handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/connector/handler"],"pid":52664}} 9 | [2019-02-15T14:14:44.527] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"gate-server-1","host":"127.0.0.1","clientPort":3101,"frontend":"true","args":" --inspect=10005","serverType":"gate","handlerPaths":["/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app/servers/gate/handler"],"pid":52668}} 10 | [2019-02-15T14:14:44.541] [DEBUG] pinus - [chat-server-1 monitorwatcher.js] [chat-server-1] receive addServer signal: {"action":"addServer","server":{"main":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/dist/app.js","env":"development","id":"jdnn-server-1","host":"127.0.0.1","port":3106,"args":" --inspect=10004","serverType":"jdnn","remoterPaths":[{"namespace":"sys","serverType":"jdnn","path":"/Users/aker/Learn/niuniuDemo0/game-server/game-server/node_modules/pinus/dist/lib/common/remote/backend"}],"handlerPaths":[],"pid":52667}} 11 | -------------------------------------------------------------------------------- /game-server/dist/logs/rpc-log-jdnn-server-1.log: -------------------------------------------------------------------------------- 1 | [2019-02-15T14:14:44.375] [INFO] pinus - [jdnn-server-1 application.js] application inited: "jdnn-server-1" 2 | [2019-02-15T14:14:44.429] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter before start... 3 | [2019-02-15T14:14:44.430] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 4 | [2019-02-15T14:14:44.440] [INFO] pinus-admin - [jdnn-server-1 consoleService.js] try to connect master: "jdnn", "127.0.0.1", 3005 5 | [2019-02-15T14:14:44.555] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" enter after start... 6 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" finish start 7 | [2019-02-15T14:14:44.556] [INFO] pinus - [jdnn-server-1 application.js] "jdnn-server-1" startup in 136 ms 8 | -------------------------------------------------------------------------------- /game-server/dist/preload.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | const bluebird_1 = require("bluebird"); 4 | // 支持注解 5 | require("reflect-metadata"); 6 | /** 7 | * 替换全局Promise 8 | * 自动解析sourcemap 9 | * 捕获全局错误 10 | */ 11 | function preload() { 12 | // 使用bluebird输出完整的promise调用链 13 | global.Promise = bluebird_1.Promise; 14 | // 开启长堆栈 15 | bluebird_1.Promise.config({ 16 | // Enable warnings 17 | warnings: true, 18 | // Enable long stack traces 19 | longStackTraces: true, 20 | // Enable cancellation 21 | cancellation: true, 22 | // Enable monitoring 23 | monitoring: true 24 | }); 25 | // 自动解析ts的sourcemap 26 | require('source-map-support').install({ 27 | handleUncaughtExceptions: false 28 | }); 29 | // 捕获普通异常 30 | process.on('uncaughtException', function (err) { 31 | console.error('Caught exception: ' + err.stack); 32 | }); 33 | // 捕获async异常 34 | process.on('unhandledRejection', (reason, p) => { 35 | console.error('Caught Unhandled Rejection at:' + p + 'reason:' + reason.stack); 36 | }); 37 | } 38 | exports.preload = preload; 39 | //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJlbG9hZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3ByZWxvYWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSx1Q0FBaUM7QUFDakMsT0FBTztBQUNQLDRCQUEwQjtBQUUxQjs7OztHQUlHO0FBQ0g7SUFDSSw0QkFBNEI7SUFDNUIsTUFBTSxDQUFDLE9BQU8sR0FBRyxrQkFBTyxDQUFDO0lBQ3pCLFFBQVE7SUFDUixrQkFBTyxDQUFDLE1BQU0sQ0FBQztRQUNYLGtCQUFrQjtRQUNsQixRQUFRLEVBQUUsSUFBSTtRQUNkLDJCQUEyQjtRQUMzQixlQUFlLEVBQUUsSUFBSTtRQUNyQixzQkFBc0I7UUFDdEIsWUFBWSxFQUFFLElBQUk7UUFDbEIsb0JBQW9CO1FBQ3BCLFVBQVUsRUFBRSxJQUFJO0tBQ25CLENBQUMsQ0FBQztJQUVILG1CQUFtQjtJQUNuQixPQUFPLENBQUMsb0JBQW9CLENBQUMsQ0FBQyxPQUFPLENBQUM7UUFDbEMsd0JBQXdCLEVBQUUsS0FBSztLQUNsQyxDQUFDLENBQUM7SUFFSCxTQUFTO0lBQ1QsT0FBTyxDQUFDLEVBQUUsQ0FBQyxtQkFBbUIsRUFBRSxVQUFVLEdBQUc7UUFDekMsT0FBTyxDQUFDLEtBQUssQ0FBQyxvQkFBb0IsR0FBRyxHQUFHLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDcEQsQ0FBQyxDQUFDLENBQUM7SUFFSCxZQUFZO0lBQ1osT0FBTyxDQUFDLEVBQUUsQ0FBQyxvQkFBb0IsRUFBRSxDQUFDLE1BQU0sRUFBRSxDQUFDLEVBQUUsRUFBRTtRQUMzQyxPQUFPLENBQUMsS0FBSyxDQUFDLGdDQUFnQyxHQUFHLENBQUMsR0FBRyxTQUFTLEdBQUcsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO0lBQ25GLENBQUMsQ0FBQyxDQUFDO0FBQ1AsQ0FBQztBQTdCRCwwQkE2QkMifQ== -------------------------------------------------------------------------------- /game-server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "niuniudemo0", 3 | "version": "0.0.1", 4 | "private": false, 5 | "bin": { 6 | "$": "./dist/bin/app.js" 7 | }, 8 | "main": "./dist/app", 9 | "scripts": { 10 | "start": "npm run build && node dist/app", 11 | "build": "node_modules/.bin/tsc", 12 | "watch": "node_modules/.bin/tsc -w -p ../app", 13 | "debug": "nodemon --watch ./dist --inspect=0.0.0.0:9222 --nolazy ./dist/app.js", 14 | "nodemon": "cd ./dist && nodemon --watch ./dist --inspect=0.0.0.0:9222 --nolazy app.js" 15 | }, 16 | "dependencies": { 17 | "@types/bluebird": "^3.5.19", 18 | "@types/mysql": "^2.15.5", 19 | "@types/node": "^8.5.2", 20 | "bluebird": "^3.5.1", 21 | "crc": "0.2.0", 22 | "mysql": "2.16.0", 23 | "pinus": "1.3.10", 24 | "reflect-metadata": "^0.1.10", 25 | "source-map-support": "^0.5.0" 26 | }, 27 | "devDependencies": { 28 | "nodemon": "^1.18.10", 29 | "ts-node": "^8.0.2", 30 | "tslint": "^5.9.1", 31 | "typescript": "^2.9.2" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /game-server/preload.ts: -------------------------------------------------------------------------------- 1 | import {Promise} from 'bluebird'; 2 | // 支持注解 3 | import 'reflect-metadata'; 4 | 5 | /** 6 | * 替换全局Promise 7 | * 自动解析sourcemap 8 | * 捕获全局错误 9 | */ 10 | export function preload() { 11 | // 使用bluebird输出完整的promise调用链 12 | global.Promise = Promise; 13 | // 开启长堆栈 14 | Promise.config({ 15 | // Enable warnings 16 | warnings: true, 17 | // Enable long stack traces 18 | longStackTraces: true, 19 | // Enable cancellation 20 | cancellation: true, 21 | // Enable monitoring 22 | monitoring: true 23 | }); 24 | 25 | // 自动解析ts的sourcemap 26 | require('source-map-support').install({ 27 | handleUncaughtExceptions: false 28 | }); 29 | 30 | // 捕获普通异常 31 | process.on('uncaughtException', function (err) { 32 | console.error('Caught exception: ' + err.stack); 33 | }); 34 | 35 | // 捕获async异常 36 | process.on('unhandledRejection', (reason, p) => { 37 | console.error('Caught Unhandled Rejection at:' + p + 'reason:' + reason.stack); 38 | }); 39 | } -------------------------------------------------------------------------------- /game-server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | // types option has been previously configured 4 | "types": [ 5 | // add node as an option 6 | "node" 7 | ], 8 | "module": "commonjs", //指定生成哪个模块系统代码 9 | "target": "es2016", 10 | "lib": [ 11 | "es2015", 12 | "es2016", 13 | "esnext.asynciterable" 14 | ], 15 | "noImplicitAny": false, //在表达式和声明上有隐含的'any'类型时报错。 16 | "noImplicitThis": false, 17 | "inlineSourceMap": true, 18 | 19 | 20 | "rootDirs": ["."], //仅用来控制输出的目录结构--outDir。 21 | "outDir":"./dist", //重定向输出目录。 22 | "experimentalDecorators":true, 23 | "emitDecoratorMetadata": true, 24 | "moduleResolution": "node", 25 | "watch":false //在监视模式下运行编译器。会监视输出文件,在它们改变时重新编译。 26 | }, 27 | "include":[ 28 | "./**/*.ts" 29 | ], 30 | "exclude": [ 31 | "./dist/**/*.*" 32 | ] 33 | } -------------------------------------------------------------------------------- /npm-install.sh: -------------------------------------------------------------------------------- 1 | cd ./game-server && npm install -d 2 | echo '============ game-server npm installed ============' --------------------------------------------------------------------------------