├── .gitignore ├── Gameproto └── SocketGameProtocol.pb.go ├── README.md ├── app.log ├── app ├── controllers │ ├── gamecontroller.go │ ├── roomcontroller.go │ └── usercontroller.go └── tserver │ ├── client.go │ ├── cmd.go │ ├── controller.go │ ├── eventcenter.go │ ├── list.go │ ├── protomessage.go │ ├── room.go │ ├── server.go │ ├── serverpro.go │ ├── tconn.go │ └── udpserver.go ├── config └── config.go ├── gitBatcommit.bat ├── gitcommit.sh ├── go.mod ├── go.sum ├── logs └── log.json ├── main.go └── manager ├── tick.go ├── utils.go └── workPool.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/.gitignore -------------------------------------------------------------------------------- /Gameproto/SocketGameProtocol.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/Gameproto/SocketGameProtocol.pb.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/README.md -------------------------------------------------------------------------------- /app.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app.log -------------------------------------------------------------------------------- /app/controllers/gamecontroller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/controllers/gamecontroller.go -------------------------------------------------------------------------------- /app/controllers/roomcontroller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/controllers/roomcontroller.go -------------------------------------------------------------------------------- /app/controllers/usercontroller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/controllers/usercontroller.go -------------------------------------------------------------------------------- /app/tserver/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/client.go -------------------------------------------------------------------------------- /app/tserver/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/cmd.go -------------------------------------------------------------------------------- /app/tserver/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/controller.go -------------------------------------------------------------------------------- /app/tserver/eventcenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/eventcenter.go -------------------------------------------------------------------------------- /app/tserver/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/list.go -------------------------------------------------------------------------------- /app/tserver/protomessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/protomessage.go -------------------------------------------------------------------------------- /app/tserver/room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/room.go -------------------------------------------------------------------------------- /app/tserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/server.go -------------------------------------------------------------------------------- /app/tserver/serverpro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/serverpro.go -------------------------------------------------------------------------------- /app/tserver/tconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/tconn.go -------------------------------------------------------------------------------- /app/tserver/udpserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/app/tserver/udpserver.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/config/config.go -------------------------------------------------------------------------------- /gitBatcommit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/gitBatcommit.bat -------------------------------------------------------------------------------- /gitcommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/gitcommit.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/go.sum -------------------------------------------------------------------------------- /logs/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/logs/log.json -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/main.go -------------------------------------------------------------------------------- /manager/tick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/manager/tick.go -------------------------------------------------------------------------------- /manager/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/manager/utils.go -------------------------------------------------------------------------------- /manager/workPool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Rachel/TGameServer/HEAD/manager/workPool.go --------------------------------------------------------------------------------