├── .gitattributes ├── .gitmodules ├── Makefile ├── README.md ├── client ├── simpleclient.lua ├── simplemessage.lua └── simplesocket.lua ├── config ├── README.md ├── config_auth ├── config_chat ├── config_db ├── config_gate ├── config_hall ├── config_locator ├── config_login ├── config_public ├── config_test ├── config_test1 ├── config_xpnn ├── config_xpnn21 ├── config_xpnn22 └── config_xpnn23 ├── logic ├── README.md ├── agent │ ├── agent_ctrl.lua │ ├── agent_db.lua │ └── agent_impl.lua ├── area │ ├── area_ctrl.lua │ ├── area_impl.lua │ └── area_logic.lua ├── auth │ ├── auth_ctrl.lua │ ├── auth_db.lua │ ├── auth_impl.lua │ └── auth_logic.lua ├── bank │ ├── bank_ctrl.lua │ ├── bank_db.lua │ └── bank_impl.lua ├── cache │ ├── cache_db.lua │ └── cache_logic.lua ├── cash │ ├── cash_ctrl.lua │ ├── cash_db.lua │ └── cash_impl.lua ├── chat │ ├── chat_ctrl.lua │ ├── chat_impl.lua │ └── chat_logic.lua ├── common │ ├── cluster_mgr.lua │ ├── db_helper.lua │ ├── db_mgr.lua │ └── db_module.lua ├── config │ ├── cluster_config.lua │ ├── create_player_config.lua │ ├── create_role_config.lua │ ├── db_config.lua │ ├── game_config.lua │ ├── game_room_config.lua │ ├── game_type_config.lua │ ├── global_config.lua │ ├── hall_config.lua │ ├── locator_server_config.lua │ ├── mysql_config.lua │ ├── nickname_config.lua │ ├── redis_config.lua │ ├── xpnn_config.lua │ ├── xpnn_desk_config.lua │ └── xpnn_module.lua ├── desk │ ├── desk_const.lua │ ├── desk_ctrl.lua │ ├── desk_db.lua │ └── desk_impl.lua ├── fd │ └── fd_db.lua ├── game │ └── cd_ctrl.lua ├── gate │ ├── client_msg.lua │ ├── gate_mgr.lua │ ├── gate_msg.lua │ └── socket_msg.lua ├── hall │ ├── hall_ctrl.lua │ ├── hall_db.lua │ ├── hall_impl.lua │ └── hall_logic.lua ├── heartbeat │ ├── heartbeat_ctrl.lua │ └── heartbeat_impl.lua ├── locator │ ├── locator_ctrl.lua │ ├── locator_impl.lua │ └── locator_xxx.lua ├── login │ ├── login_ctrl.lua │ ├── login_impl.lua │ └── login_logic.lua ├── offline │ ├── README.md │ ├── charge_offline_ctrl.lua │ └── player_offline_ctrl.lua ├── player │ ├── player_ctrl.lua │ ├── player_db.lua │ └── player_impl.lua ├── push │ ├── push_ctrl.lua │ ├── push_db.lua │ └── push_impl.lua ├── role │ ├── role_ctrl.lua │ ├── role_db.lua │ ├── role_impl.lua │ └── role_logic.lua ├── room │ ├── room_ctrl.lua │ ├── room_db.lua │ ├── room_impl.lua │ └── room_logic.lua └── xpnn │ ├── xpnn_const.lua │ ├── xpnn_ctrl.lua │ ├── xpnn_db.lua │ ├── xpnn_impl.lua │ └── xpnn_logic.lua ├── lualib ├── README.md ├── class.lua ├── cluster_monitor.lua ├── command_base.lua ├── config_db.lua ├── config_helper.lua ├── connector.lua ├── context.lua ├── dispatcher.lua ├── guid.lua ├── logger.lua ├── protobuf_helper.lua ├── random.lua ├── redis_mq.lua ├── requester.lua ├── secret.lua ├── service_base.lua ├── share_memory.lua ├── sky_crypt.lua ├── sproto_helper.lua ├── timer.lua ├── utils.lua └── xproto_helper.lua ├── preload ├── db_define.lua ├── error_code.lua ├── game_define.lua ├── luaext.lua ├── module_define.lua ├── preload.lua ├── proto_map.lua ├── rpc_error.lua ├── server_define.lua ├── service_define.lua └── system_define.lua ├── proto ├── README.md ├── sproto │ ├── spb │ │ ├── area.spb │ │ ├── auth.spb │ │ ├── bank.spb │ │ ├── cash.spb │ │ ├── chat.spb │ │ ├── ddz.spb │ │ ├── desk.spb │ │ ├── gate.spb │ │ ├── hall.spb │ │ ├── login.spb │ │ ├── lrnn.spb │ │ ├── lrsh.spb │ │ ├── message.spb │ │ ├── package.spb │ │ ├── player.spb │ │ ├── push.spb │ │ ├── room.spb │ │ ├── xpnn.spb │ │ └── zjh.spb │ ├── sproto │ │ ├── area.sproto │ │ ├── auth.sproto │ │ ├── bank.sproto │ │ ├── cash.sproto │ │ ├── chat.sproto │ │ ├── ddz.sproto │ │ ├── desk.sproto │ │ ├── gate.sproto │ │ ├── hall.sproto │ │ ├── login.sproto │ │ ├── lrnn.sproto │ │ ├── lrsh.sproto │ │ ├── message.sproto │ │ ├── package.sproto │ │ ├── player.sproto │ │ ├── push.sproto │ │ ├── room.sproto │ │ ├── xpnn.sproto │ │ └── zjh.sproto │ └── sproto_gen │ │ ├── lualib │ │ ├── print_r.lua │ │ ├── sproto.lua │ │ ├── sprotoloader.lua │ │ └── sprotoparser.lua │ │ ├── sproto_gen_linux.lua │ │ └── sproto_gen_win.lua └── xproto │ ├── xpb │ └── package.xpb │ └── xproto │ └── package.xproto ├── service ├── README.md ├── agent.lua ├── area.lua ├── area_logic_svc.lua ├── auth.lua ├── auth_logic_svc.lua ├── authserver │ └── main.lua ├── chat.lua ├── chat_logic_svc.lua ├── chatserver │ └── main.lua ├── cluster_monitord.lua ├── dbserver │ └── main.lua ├── desk.lua ├── gameserver │ └── xpnn │ │ └── main.lua ├── gateserver │ └── main.lua ├── hall.lua ├── hall_logic_svc.lua ├── hallserver │ └── main.lua ├── heartbeat.lua ├── http.lua ├── httpServer.lua ├── httpServerAgent.lua ├── httpwatchdog.lua ├── locator.lua ├── locatorserver │ └── main.lua ├── loggerd.lua ├── login.lua ├── login_logic_svc.lua ├── loginserver │ └── main.lua ├── master_db.lua ├── master_db_svc.lua ├── mysql_mgr.lua ├── mysql_svc.lua ├── room.lua ├── share_memoryd.lua ├── test │ ├── main.lua │ ├── main1.lua │ ├── test_share_memory.lua │ └── test_share_memory1.lua ├── watchdog.lua └── wswatchdog.lua ├── sql └── create.sql ├── test ├── client_json_msg.lua ├── json.lua ├── test_binary.lua ├── test_ext.lua ├── test_table_func.lua └── test_xpnn_logic.lua ├── tool ├── client.sh ├── killnode.sh ├── restart.sh ├── run.sh ├── run_all.sh ├── run_auth.sh ├── run_chat.sh ├── run_client.sh ├── run_db.sh ├── run_gate.sh ├── run_hall.sh ├── run_locator.sh ├── run_login.sh ├── run_redis.sh ├── run_test.sh ├── run_test1.sh ├── run_xpnn.sh ├── stop.sh └── stop_game.sh └── 详细设计文档.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/README.md -------------------------------------------------------------------------------- /client/simpleclient.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/client/simpleclient.lua -------------------------------------------------------------------------------- /client/simplemessage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/client/simplemessage.lua -------------------------------------------------------------------------------- /client/simplesocket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/client/simplesocket.lua -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config_auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_auth -------------------------------------------------------------------------------- /config/config_chat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_chat -------------------------------------------------------------------------------- /config/config_db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_db -------------------------------------------------------------------------------- /config/config_gate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_gate -------------------------------------------------------------------------------- /config/config_hall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_hall -------------------------------------------------------------------------------- /config/config_locator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_locator -------------------------------------------------------------------------------- /config/config_login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_login -------------------------------------------------------------------------------- /config/config_public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_public -------------------------------------------------------------------------------- /config/config_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_test -------------------------------------------------------------------------------- /config/config_test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_test1 -------------------------------------------------------------------------------- /config/config_xpnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_xpnn -------------------------------------------------------------------------------- /config/config_xpnn21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_xpnn21 -------------------------------------------------------------------------------- /config/config_xpnn22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_xpnn22 -------------------------------------------------------------------------------- /config/config_xpnn23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/config/config_xpnn23 -------------------------------------------------------------------------------- /logic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/README.md -------------------------------------------------------------------------------- /logic/agent/agent_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/agent/agent_ctrl.lua -------------------------------------------------------------------------------- /logic/agent/agent_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/agent/agent_db.lua -------------------------------------------------------------------------------- /logic/agent/agent_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/agent/agent_impl.lua -------------------------------------------------------------------------------- /logic/area/area_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/area/area_ctrl.lua -------------------------------------------------------------------------------- /logic/area/area_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/area/area_impl.lua -------------------------------------------------------------------------------- /logic/area/area_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/area/area_logic.lua -------------------------------------------------------------------------------- /logic/auth/auth_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/auth/auth_ctrl.lua -------------------------------------------------------------------------------- /logic/auth/auth_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/auth/auth_db.lua -------------------------------------------------------------------------------- /logic/auth/auth_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/auth/auth_impl.lua -------------------------------------------------------------------------------- /logic/auth/auth_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/auth/auth_logic.lua -------------------------------------------------------------------------------- /logic/bank/bank_ctrl.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/bank/bank_db.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/bank/bank_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/bank/bank_impl.lua -------------------------------------------------------------------------------- /logic/cache/cache_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/cache/cache_db.lua -------------------------------------------------------------------------------- /logic/cache/cache_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/cache/cache_logic.lua -------------------------------------------------------------------------------- /logic/cash/cash_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/cash/cash_ctrl.lua -------------------------------------------------------------------------------- /logic/cash/cash_db.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/cash/cash_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/cash/cash_impl.lua -------------------------------------------------------------------------------- /logic/chat/chat_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/chat/chat_ctrl.lua -------------------------------------------------------------------------------- /logic/chat/chat_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/chat/chat_impl.lua -------------------------------------------------------------------------------- /logic/chat/chat_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/chat/chat_logic.lua -------------------------------------------------------------------------------- /logic/common/cluster_mgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/common/cluster_mgr.lua -------------------------------------------------------------------------------- /logic/common/db_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/common/db_helper.lua -------------------------------------------------------------------------------- /logic/common/db_mgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/common/db_mgr.lua -------------------------------------------------------------------------------- /logic/common/db_module.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/common/db_module.lua -------------------------------------------------------------------------------- /logic/config/cluster_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/cluster_config.lua -------------------------------------------------------------------------------- /logic/config/create_player_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/create_player_config.lua -------------------------------------------------------------------------------- /logic/config/create_role_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/create_role_config.lua -------------------------------------------------------------------------------- /logic/config/db_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/db_config.lua -------------------------------------------------------------------------------- /logic/config/game_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/game_config.lua -------------------------------------------------------------------------------- /logic/config/game_room_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/game_room_config.lua -------------------------------------------------------------------------------- /logic/config/game_type_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/game_type_config.lua -------------------------------------------------------------------------------- /logic/config/global_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/global_config.lua -------------------------------------------------------------------------------- /logic/config/hall_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/hall_config.lua -------------------------------------------------------------------------------- /logic/config/locator_server_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/locator_server_config.lua -------------------------------------------------------------------------------- /logic/config/mysql_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/mysql_config.lua -------------------------------------------------------------------------------- /logic/config/nickname_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/nickname_config.lua -------------------------------------------------------------------------------- /logic/config/redis_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/redis_config.lua -------------------------------------------------------------------------------- /logic/config/xpnn_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/xpnn_config.lua -------------------------------------------------------------------------------- /logic/config/xpnn_desk_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/xpnn_desk_config.lua -------------------------------------------------------------------------------- /logic/config/xpnn_module.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/config/xpnn_module.lua -------------------------------------------------------------------------------- /logic/desk/desk_const.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/desk/desk_const.lua -------------------------------------------------------------------------------- /logic/desk/desk_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/desk/desk_ctrl.lua -------------------------------------------------------------------------------- /logic/desk/desk_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/desk/desk_db.lua -------------------------------------------------------------------------------- /logic/desk/desk_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/desk/desk_impl.lua -------------------------------------------------------------------------------- /logic/fd/fd_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/fd/fd_db.lua -------------------------------------------------------------------------------- /logic/game/cd_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/game/cd_ctrl.lua -------------------------------------------------------------------------------- /logic/gate/client_msg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/gate/client_msg.lua -------------------------------------------------------------------------------- /logic/gate/gate_mgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/gate/gate_mgr.lua -------------------------------------------------------------------------------- /logic/gate/gate_msg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/gate/gate_msg.lua -------------------------------------------------------------------------------- /logic/gate/socket_msg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/gate/socket_msg.lua -------------------------------------------------------------------------------- /logic/hall/hall_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/hall/hall_ctrl.lua -------------------------------------------------------------------------------- /logic/hall/hall_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/hall/hall_db.lua -------------------------------------------------------------------------------- /logic/hall/hall_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/hall/hall_impl.lua -------------------------------------------------------------------------------- /logic/hall/hall_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/hall/hall_logic.lua -------------------------------------------------------------------------------- /logic/heartbeat/heartbeat_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/heartbeat/heartbeat_ctrl.lua -------------------------------------------------------------------------------- /logic/heartbeat/heartbeat_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/heartbeat/heartbeat_impl.lua -------------------------------------------------------------------------------- /logic/locator/locator_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/locator/locator_ctrl.lua -------------------------------------------------------------------------------- /logic/locator/locator_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/locator/locator_impl.lua -------------------------------------------------------------------------------- /logic/locator/locator_xxx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/locator/locator_xxx.lua -------------------------------------------------------------------------------- /logic/login/login_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/login/login_ctrl.lua -------------------------------------------------------------------------------- /logic/login/login_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/login/login_impl.lua -------------------------------------------------------------------------------- /logic/login/login_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/login/login_logic.lua -------------------------------------------------------------------------------- /logic/offline/README.md: -------------------------------------------------------------------------------- 1 | # 离线数据处理流程 -------------------------------------------------------------------------------- /logic/offline/charge_offline_ctrl.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/offline/player_offline_ctrl.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/player/player_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/player/player_ctrl.lua -------------------------------------------------------------------------------- /logic/player/player_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/player/player_db.lua -------------------------------------------------------------------------------- /logic/player/player_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/player/player_impl.lua -------------------------------------------------------------------------------- /logic/push/push_ctrl.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/push/push_db.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/push/push_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/push/push_impl.lua -------------------------------------------------------------------------------- /logic/role/role_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/role/role_ctrl.lua -------------------------------------------------------------------------------- /logic/role/role_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/role/role_db.lua -------------------------------------------------------------------------------- /logic/role/role_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/role/role_impl.lua -------------------------------------------------------------------------------- /logic/role/role_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/role/role_logic.lua -------------------------------------------------------------------------------- /logic/room/room_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/room/room_ctrl.lua -------------------------------------------------------------------------------- /logic/room/room_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/room/room_db.lua -------------------------------------------------------------------------------- /logic/room/room_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/room/room_impl.lua -------------------------------------------------------------------------------- /logic/room/room_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/room/room_logic.lua -------------------------------------------------------------------------------- /logic/xpnn/xpnn_const.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/xpnn/xpnn_const.lua -------------------------------------------------------------------------------- /logic/xpnn/xpnn_ctrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/xpnn/xpnn_ctrl.lua -------------------------------------------------------------------------------- /logic/xpnn/xpnn_db.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logic/xpnn/xpnn_impl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/xpnn/xpnn_impl.lua -------------------------------------------------------------------------------- /logic/xpnn/xpnn_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/logic/xpnn/xpnn_logic.lua -------------------------------------------------------------------------------- /lualib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/README.md -------------------------------------------------------------------------------- /lualib/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/class.lua -------------------------------------------------------------------------------- /lualib/cluster_monitor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/cluster_monitor.lua -------------------------------------------------------------------------------- /lualib/command_base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/command_base.lua -------------------------------------------------------------------------------- /lualib/config_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/config_db.lua -------------------------------------------------------------------------------- /lualib/config_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/config_helper.lua -------------------------------------------------------------------------------- /lualib/connector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/connector.lua -------------------------------------------------------------------------------- /lualib/context.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/context.lua -------------------------------------------------------------------------------- /lualib/dispatcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/dispatcher.lua -------------------------------------------------------------------------------- /lualib/guid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/guid.lua -------------------------------------------------------------------------------- /lualib/logger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/logger.lua -------------------------------------------------------------------------------- /lualib/protobuf_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/protobuf_helper.lua -------------------------------------------------------------------------------- /lualib/random.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/random.lua -------------------------------------------------------------------------------- /lualib/redis_mq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/redis_mq.lua -------------------------------------------------------------------------------- /lualib/requester.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/requester.lua -------------------------------------------------------------------------------- /lualib/secret.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/secret.lua -------------------------------------------------------------------------------- /lualib/service_base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/service_base.lua -------------------------------------------------------------------------------- /lualib/share_memory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/share_memory.lua -------------------------------------------------------------------------------- /lualib/sky_crypt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/sky_crypt.lua -------------------------------------------------------------------------------- /lualib/sproto_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/sproto_helper.lua -------------------------------------------------------------------------------- /lualib/timer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/timer.lua -------------------------------------------------------------------------------- /lualib/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/lualib/utils.lua -------------------------------------------------------------------------------- /lualib/xproto_helper.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preload/db_define.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/db_define.lua -------------------------------------------------------------------------------- /preload/error_code.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/error_code.lua -------------------------------------------------------------------------------- /preload/game_define.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/game_define.lua -------------------------------------------------------------------------------- /preload/luaext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/luaext.lua -------------------------------------------------------------------------------- /preload/module_define.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/module_define.lua -------------------------------------------------------------------------------- /preload/preload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/preload.lua -------------------------------------------------------------------------------- /preload/proto_map.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/proto_map.lua -------------------------------------------------------------------------------- /preload/rpc_error.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/rpc_error.lua -------------------------------------------------------------------------------- /preload/server_define.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/server_define.lua -------------------------------------------------------------------------------- /preload/service_define.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/service_define.lua -------------------------------------------------------------------------------- /preload/system_define.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/preload/system_define.lua -------------------------------------------------------------------------------- /proto/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proto/sproto/spb/area.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/area.spb -------------------------------------------------------------------------------- /proto/sproto/spb/auth.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/auth.spb -------------------------------------------------------------------------------- /proto/sproto/spb/bank.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/bank.spb -------------------------------------------------------------------------------- /proto/sproto/spb/cash.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/cash.spb -------------------------------------------------------------------------------- /proto/sproto/spb/chat.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/chat.spb -------------------------------------------------------------------------------- /proto/sproto/spb/ddz.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/ddz.spb -------------------------------------------------------------------------------- /proto/sproto/spb/desk.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/desk.spb -------------------------------------------------------------------------------- /proto/sproto/spb/gate.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/gate.spb -------------------------------------------------------------------------------- /proto/sproto/spb/hall.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/hall.spb -------------------------------------------------------------------------------- /proto/sproto/spb/login.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/login.spb -------------------------------------------------------------------------------- /proto/sproto/spb/lrnn.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/lrnn.spb -------------------------------------------------------------------------------- /proto/sproto/spb/lrsh.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/lrsh.spb -------------------------------------------------------------------------------- /proto/sproto/spb/message.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/message.spb -------------------------------------------------------------------------------- /proto/sproto/spb/package.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/package.spb -------------------------------------------------------------------------------- /proto/sproto/spb/player.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/player.spb -------------------------------------------------------------------------------- /proto/sproto/spb/push.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/push.spb -------------------------------------------------------------------------------- /proto/sproto/spb/room.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/room.spb -------------------------------------------------------------------------------- /proto/sproto/spb/xpnn.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/xpnn.spb -------------------------------------------------------------------------------- /proto/sproto/spb/zjh.spb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/spb/zjh.spb -------------------------------------------------------------------------------- /proto/sproto/sproto/area.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/area.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/auth.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/auth.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/bank.sproto: -------------------------------------------------------------------------------- 1 | .bank{ 2 | 3 | } -------------------------------------------------------------------------------- /proto/sproto/sproto/cash.sproto: -------------------------------------------------------------------------------- 1 | .cash{ 2 | 3 | } -------------------------------------------------------------------------------- /proto/sproto/sproto/chat.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/chat.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/ddz.sproto: -------------------------------------------------------------------------------- 1 | .ddz{ 2 | 3 | } -------------------------------------------------------------------------------- /proto/sproto/sproto/desk.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/desk.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/gate.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/gate.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/hall.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/hall.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/login.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/login.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/lrnn.sproto: -------------------------------------------------------------------------------- 1 | .lrnn{ 2 | 3 | } -------------------------------------------------------------------------------- /proto/sproto/sproto/lrsh.sproto: -------------------------------------------------------------------------------- 1 | #两人梭哈 2 | 3 | .lrsh{ 4 | 5 | } -------------------------------------------------------------------------------- /proto/sproto/sproto/message.sproto: -------------------------------------------------------------------------------- 1 | .message{ 2 | 3 | } -------------------------------------------------------------------------------- /proto/sproto/sproto/package.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/package.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/player.sproto: -------------------------------------------------------------------------------- 1 | .player{ 2 | 3 | } -------------------------------------------------------------------------------- /proto/sproto/sproto/push.sproto: -------------------------------------------------------------------------------- 1 | .push{ 2 | 3 | } -------------------------------------------------------------------------------- /proto/sproto/sproto/room.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/room.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/xpnn.sproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto/xpnn.sproto -------------------------------------------------------------------------------- /proto/sproto/sproto/zjh.sproto: -------------------------------------------------------------------------------- 1 | .zjh{ 2 | 3 | } -------------------------------------------------------------------------------- /proto/sproto/sproto_gen/lualib/print_r.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto_gen/lualib/print_r.lua -------------------------------------------------------------------------------- /proto/sproto/sproto_gen/lualib/sproto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto_gen/lualib/sproto.lua -------------------------------------------------------------------------------- /proto/sproto/sproto_gen/lualib/sprotoloader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto_gen/lualib/sprotoloader.lua -------------------------------------------------------------------------------- /proto/sproto/sproto_gen/lualib/sprotoparser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto_gen/lualib/sprotoparser.lua -------------------------------------------------------------------------------- /proto/sproto/sproto_gen/sproto_gen_linux.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto_gen/sproto_gen_linux.lua -------------------------------------------------------------------------------- /proto/sproto/sproto_gen/sproto_gen_win.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/sproto/sproto_gen/sproto_gen_win.lua -------------------------------------------------------------------------------- /proto/xproto/xpb/package.xpb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proto/xproto/xproto/package.xproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/proto/xproto/xproto/package.xproto -------------------------------------------------------------------------------- /service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/README.md -------------------------------------------------------------------------------- /service/agent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/agent.lua -------------------------------------------------------------------------------- /service/area.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/area.lua -------------------------------------------------------------------------------- /service/area_logic_svc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/area_logic_svc.lua -------------------------------------------------------------------------------- /service/auth.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/auth.lua -------------------------------------------------------------------------------- /service/auth_logic_svc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/auth_logic_svc.lua -------------------------------------------------------------------------------- /service/authserver/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/authserver/main.lua -------------------------------------------------------------------------------- /service/chat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/chat.lua -------------------------------------------------------------------------------- /service/chat_logic_svc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/chat_logic_svc.lua -------------------------------------------------------------------------------- /service/chatserver/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/chatserver/main.lua -------------------------------------------------------------------------------- /service/cluster_monitord.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/cluster_monitord.lua -------------------------------------------------------------------------------- /service/dbserver/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/dbserver/main.lua -------------------------------------------------------------------------------- /service/desk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/desk.lua -------------------------------------------------------------------------------- /service/gameserver/xpnn/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/gameserver/xpnn/main.lua -------------------------------------------------------------------------------- /service/gateserver/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/gateserver/main.lua -------------------------------------------------------------------------------- /service/hall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/hall.lua -------------------------------------------------------------------------------- /service/hall_logic_svc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/hall_logic_svc.lua -------------------------------------------------------------------------------- /service/hallserver/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/hallserver/main.lua -------------------------------------------------------------------------------- /service/heartbeat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/heartbeat.lua -------------------------------------------------------------------------------- /service/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/http.lua -------------------------------------------------------------------------------- /service/httpServer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/httpServer.lua -------------------------------------------------------------------------------- /service/httpServerAgent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/httpServerAgent.lua -------------------------------------------------------------------------------- /service/httpwatchdog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/httpwatchdog.lua -------------------------------------------------------------------------------- /service/locator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/locator.lua -------------------------------------------------------------------------------- /service/locatorserver/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/locatorserver/main.lua -------------------------------------------------------------------------------- /service/loggerd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/loggerd.lua -------------------------------------------------------------------------------- /service/login.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/login.lua -------------------------------------------------------------------------------- /service/login_logic_svc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/login_logic_svc.lua -------------------------------------------------------------------------------- /service/loginserver/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/loginserver/main.lua -------------------------------------------------------------------------------- /service/master_db.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/master_db.lua -------------------------------------------------------------------------------- /service/master_db_svc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/master_db_svc.lua -------------------------------------------------------------------------------- /service/mysql_mgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/mysql_mgr.lua -------------------------------------------------------------------------------- /service/mysql_svc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/mysql_svc.lua -------------------------------------------------------------------------------- /service/room.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/room.lua -------------------------------------------------------------------------------- /service/share_memoryd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/share_memoryd.lua -------------------------------------------------------------------------------- /service/test/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/test/main.lua -------------------------------------------------------------------------------- /service/test/main1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/test/main1.lua -------------------------------------------------------------------------------- /service/test/test_share_memory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/test/test_share_memory.lua -------------------------------------------------------------------------------- /service/test/test_share_memory1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/test/test_share_memory1.lua -------------------------------------------------------------------------------- /service/watchdog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/watchdog.lua -------------------------------------------------------------------------------- /service/wswatchdog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/service/wswatchdog.lua -------------------------------------------------------------------------------- /sql/create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/sql/create.sql -------------------------------------------------------------------------------- /test/client_json_msg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/test/client_json_msg.lua -------------------------------------------------------------------------------- /test/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/test/json.lua -------------------------------------------------------------------------------- /test/test_binary.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/test/test_binary.lua -------------------------------------------------------------------------------- /test/test_ext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/test/test_ext.lua -------------------------------------------------------------------------------- /test/test_table_func.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/test/test_table_func.lua -------------------------------------------------------------------------------- /test/test_xpnn_logic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/test/test_xpnn_logic.lua -------------------------------------------------------------------------------- /tool/client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/client.sh -------------------------------------------------------------------------------- /tool/killnode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/killnode.sh -------------------------------------------------------------------------------- /tool/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/restart.sh -------------------------------------------------------------------------------- /tool/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run.sh -------------------------------------------------------------------------------- /tool/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_all.sh -------------------------------------------------------------------------------- /tool/run_auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_auth.sh -------------------------------------------------------------------------------- /tool/run_chat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_chat.sh -------------------------------------------------------------------------------- /tool/run_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_client.sh -------------------------------------------------------------------------------- /tool/run_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_db.sh -------------------------------------------------------------------------------- /tool/run_gate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_gate.sh -------------------------------------------------------------------------------- /tool/run_hall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_hall.sh -------------------------------------------------------------------------------- /tool/run_locator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_locator.sh -------------------------------------------------------------------------------- /tool/run_login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_login.sh -------------------------------------------------------------------------------- /tool/run_redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_redis.sh -------------------------------------------------------------------------------- /tool/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_test.sh -------------------------------------------------------------------------------- /tool/run_test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_test1.sh -------------------------------------------------------------------------------- /tool/run_xpnn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/run_xpnn.sh -------------------------------------------------------------------------------- /tool/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/stop.sh -------------------------------------------------------------------------------- /tool/stop_game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/tool/stop_game.sh -------------------------------------------------------------------------------- /详细设计文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/najsword/serverOne/HEAD/详细设计文档.pdf --------------------------------------------------------------------------------