├── .gitignore ├── README.md ├── english-1 ├── pdf │ ├── pomelo-design-motivation.pdf │ └── web-yixin-arch.pdf ├── pomelo-design-motivation.md ├── pomelo-framework-overview.md └── word │ └── Pomelo framework-part 1.docx ├── node-game-server-1 ├── img │ ├── broadcast.png │ ├── divide-process.png │ ├── pomelo-runtime-architecture.png │ └── process-area.png ├── node-game-server-1.html └── node-game-server-1.md ├── node-game-server-2 ├── img │ ├── chatDir.png │ ├── chatFlow.png │ ├── game-server-dir.png │ ├── multi-json-architecture.png │ ├── multi_chat.png │ ├── serverAbstraction.png │ ├── single-json-architecture.png │ └── uberchat.png ├── node-game-server-2.html └── node-game-server-2.md ├── node-game-server-3 ├── Pomelo游戏开发-MarkdownPadPreview.html ├── Pomelo游戏开发.md ├── img │ ├── archMuti.png │ ├── archSimple.png │ ├── areaArch.png │ ├── areaRoute.png │ ├── mutiConnectors.png │ ├── pushMsg.png │ ├── reqResp.png │ └── treasures.png └── pomelo游戏开发.html ├── node-game-server-4 ├── img │ ├── TowerAOI.png │ ├── area.png │ ├── pomelo-sync-use.png │ └── pomelo-sync.png └── node-game-server-4.md ├── node-game-server-5 └── node-game-server-5.md └── node ├── img ├── compile_opt.png ├── function_1.png ├── gc_1.png ├── gc_2.png ├── gc_graph_1.png ├── gc_graph_2.png ├── hidden_class_a.png ├── hidden_class_b.png ├── hidden_class_c.png └── tick_1.png └── node.js-V8引擎相关的性能优化.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/README.md -------------------------------------------------------------------------------- /english-1/pdf/pomelo-design-motivation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/english-1/pdf/pomelo-design-motivation.pdf -------------------------------------------------------------------------------- /english-1/pdf/web-yixin-arch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/english-1/pdf/web-yixin-arch.pdf -------------------------------------------------------------------------------- /english-1/pomelo-design-motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/english-1/pomelo-design-motivation.md -------------------------------------------------------------------------------- /english-1/pomelo-framework-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/english-1/pomelo-framework-overview.md -------------------------------------------------------------------------------- /english-1/word/Pomelo framework-part 1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/english-1/word/Pomelo framework-part 1.docx -------------------------------------------------------------------------------- /node-game-server-1/img/broadcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-1/img/broadcast.png -------------------------------------------------------------------------------- /node-game-server-1/img/divide-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-1/img/divide-process.png -------------------------------------------------------------------------------- /node-game-server-1/img/pomelo-runtime-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-1/img/pomelo-runtime-architecture.png -------------------------------------------------------------------------------- /node-game-server-1/img/process-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-1/img/process-area.png -------------------------------------------------------------------------------- /node-game-server-1/node-game-server-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-1/node-game-server-1.html -------------------------------------------------------------------------------- /node-game-server-1/node-game-server-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-1/node-game-server-1.md -------------------------------------------------------------------------------- /node-game-server-2/img/chatDir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/img/chatDir.png -------------------------------------------------------------------------------- /node-game-server-2/img/chatFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/img/chatFlow.png -------------------------------------------------------------------------------- /node-game-server-2/img/game-server-dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/img/game-server-dir.png -------------------------------------------------------------------------------- /node-game-server-2/img/multi-json-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/img/multi-json-architecture.png -------------------------------------------------------------------------------- /node-game-server-2/img/multi_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/img/multi_chat.png -------------------------------------------------------------------------------- /node-game-server-2/img/serverAbstraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/img/serverAbstraction.png -------------------------------------------------------------------------------- /node-game-server-2/img/single-json-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/img/single-json-architecture.png -------------------------------------------------------------------------------- /node-game-server-2/img/uberchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/img/uberchat.png -------------------------------------------------------------------------------- /node-game-server-2/node-game-server-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/node-game-server-2.html -------------------------------------------------------------------------------- /node-game-server-2/node-game-server-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-2/node-game-server-2.md -------------------------------------------------------------------------------- /node-game-server-3/Pomelo游戏开发-MarkdownPadPreview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/Pomelo游戏开发-MarkdownPadPreview.html -------------------------------------------------------------------------------- /node-game-server-3/Pomelo游戏开发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/Pomelo游戏开发.md -------------------------------------------------------------------------------- /node-game-server-3/img/archMuti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/img/archMuti.png -------------------------------------------------------------------------------- /node-game-server-3/img/archSimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/img/archSimple.png -------------------------------------------------------------------------------- /node-game-server-3/img/areaArch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/img/areaArch.png -------------------------------------------------------------------------------- /node-game-server-3/img/areaRoute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/img/areaRoute.png -------------------------------------------------------------------------------- /node-game-server-3/img/mutiConnectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/img/mutiConnectors.png -------------------------------------------------------------------------------- /node-game-server-3/img/pushMsg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/img/pushMsg.png -------------------------------------------------------------------------------- /node-game-server-3/img/reqResp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/img/reqResp.png -------------------------------------------------------------------------------- /node-game-server-3/img/treasures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/img/treasures.png -------------------------------------------------------------------------------- /node-game-server-3/pomelo游戏开发.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-3/pomelo游戏开发.html -------------------------------------------------------------------------------- /node-game-server-4/img/TowerAOI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-4/img/TowerAOI.png -------------------------------------------------------------------------------- /node-game-server-4/img/area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-4/img/area.png -------------------------------------------------------------------------------- /node-game-server-4/img/pomelo-sync-use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-4/img/pomelo-sync-use.png -------------------------------------------------------------------------------- /node-game-server-4/img/pomelo-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-4/img/pomelo-sync.png -------------------------------------------------------------------------------- /node-game-server-4/node-game-server-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-4/node-game-server-4.md -------------------------------------------------------------------------------- /node-game-server-5/node-game-server-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node-game-server-5/node-game-server-5.md -------------------------------------------------------------------------------- /node/img/compile_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/compile_opt.png -------------------------------------------------------------------------------- /node/img/function_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/function_1.png -------------------------------------------------------------------------------- /node/img/gc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/gc_1.png -------------------------------------------------------------------------------- /node/img/gc_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/gc_2.png -------------------------------------------------------------------------------- /node/img/gc_graph_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/gc_graph_1.png -------------------------------------------------------------------------------- /node/img/gc_graph_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/gc_graph_2.png -------------------------------------------------------------------------------- /node/img/hidden_class_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/hidden_class_a.png -------------------------------------------------------------------------------- /node/img/hidden_class_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/hidden_class_b.png -------------------------------------------------------------------------------- /node/img/hidden_class_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/hidden_class_c.png -------------------------------------------------------------------------------- /node/img/tick_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/img/tick_1.png -------------------------------------------------------------------------------- /node/node.js-V8引擎相关的性能优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiecc/game-server-development/HEAD/node/node.js-V8引擎相关的性能优化.md --------------------------------------------------------------------------------