├── CMakeLists.txt ├── README.md ├── customer ├── Player │ ├── aoi.cpp │ ├── aoi.h │ ├── msg.pb.cc │ ├── msg.pb.h │ ├── msg.proto │ ├── player_channel.cpp │ ├── player_channel.h │ ├── player_message.h │ ├── player_protocol.cpp │ ├── player_protocol.h │ ├── player_role.cpp │ ├── player_role.h │ ├── random_first.txt │ └── random_last.txt └── main.cpp └── zinx ├── CMakeLists.txt ├── channel ├── Achannel.cpp └── TcpChannel.cpp ├── include ├── Achannel.h ├── Amessage.h ├── Aprotocol.h ├── Arole.h ├── IdMsgRole.h ├── TcpChannel.h ├── include.h ├── log.h ├── server.h └── zinx.h ├── log.cpp ├── message └── Amessage.cpp ├── protocol └── Aprotocol.cpp ├── role ├── Arole.cpp └── IdMsgRole.cpp └── server.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/README.md -------------------------------------------------------------------------------- /customer/Player/aoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/aoi.cpp -------------------------------------------------------------------------------- /customer/Player/aoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/aoi.h -------------------------------------------------------------------------------- /customer/Player/msg.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/msg.pb.cc -------------------------------------------------------------------------------- /customer/Player/msg.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/msg.pb.h -------------------------------------------------------------------------------- /customer/Player/msg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/msg.proto -------------------------------------------------------------------------------- /customer/Player/player_channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/player_channel.cpp -------------------------------------------------------------------------------- /customer/Player/player_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/player_channel.h -------------------------------------------------------------------------------- /customer/Player/player_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/player_message.h -------------------------------------------------------------------------------- /customer/Player/player_protocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/player_protocol.cpp -------------------------------------------------------------------------------- /customer/Player/player_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/player_protocol.h -------------------------------------------------------------------------------- /customer/Player/player_role.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/player_role.cpp -------------------------------------------------------------------------------- /customer/Player/player_role.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/player_role.h -------------------------------------------------------------------------------- /customer/Player/random_first.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/random_first.txt -------------------------------------------------------------------------------- /customer/Player/random_last.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/Player/random_last.txt -------------------------------------------------------------------------------- /customer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/customer/main.cpp -------------------------------------------------------------------------------- /zinx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/CMakeLists.txt -------------------------------------------------------------------------------- /zinx/channel/Achannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/channel/Achannel.cpp -------------------------------------------------------------------------------- /zinx/channel/TcpChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/channel/TcpChannel.cpp -------------------------------------------------------------------------------- /zinx/include/Achannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/Achannel.h -------------------------------------------------------------------------------- /zinx/include/Amessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/Amessage.h -------------------------------------------------------------------------------- /zinx/include/Aprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/Aprotocol.h -------------------------------------------------------------------------------- /zinx/include/Arole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/Arole.h -------------------------------------------------------------------------------- /zinx/include/IdMsgRole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/IdMsgRole.h -------------------------------------------------------------------------------- /zinx/include/TcpChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/TcpChannel.h -------------------------------------------------------------------------------- /zinx/include/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/include.h -------------------------------------------------------------------------------- /zinx/include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/log.h -------------------------------------------------------------------------------- /zinx/include/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/server.h -------------------------------------------------------------------------------- /zinx/include/zinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/include/zinx.h -------------------------------------------------------------------------------- /zinx/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/log.cpp -------------------------------------------------------------------------------- /zinx/message/Amessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/message/Amessage.cpp -------------------------------------------------------------------------------- /zinx/protocol/Aprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/protocol/Aprotocol.cpp -------------------------------------------------------------------------------- /zinx/role/Arole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/role/Arole.cpp -------------------------------------------------------------------------------- /zinx/role/IdMsgRole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/role/IdMsgRole.cpp -------------------------------------------------------------------------------- /zinx/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marklion/Game_zinx/HEAD/zinx/server.cpp --------------------------------------------------------------------------------