├── .idea ├── libraries │ └── GOPATH__server_.xml ├── misc.xml ├── modules.xml ├── server.iml ├── vcs.xml └── workspace.xml ├── algorithm └── card_algorithm.go ├── base └── skeleton.go ├── conf ├── conf.go ├── json.go ├── mgo_info.json └── server.json ├── game ├── external.go └── internal │ ├── card_base.go │ ├── chanrpc.go │ ├── handler.go │ ├── mgo_init.go │ ├── module.go │ ├── rand_do_something.go │ ├── room.go │ ├── room_data.go │ ├── user_line.go │ └── userdb.go ├── game_test.html ├── gamedata └── reader.go ├── gate ├── external.go ├── internal │ └── module.go └── router.go ├── login ├── external.go └── internal │ ├── handler.go │ ├── module.go │ └── register.go ├── main.go ├── msg └── msg.go └── test_linear.go /.idea/libraries/GOPATH__server_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/.idea/libraries/GOPATH__server_.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/server.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/.idea/server.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /algorithm/card_algorithm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/algorithm/card_algorithm.go -------------------------------------------------------------------------------- /base/skeleton.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/base/skeleton.go -------------------------------------------------------------------------------- /conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/conf/conf.go -------------------------------------------------------------------------------- /conf/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/conf/json.go -------------------------------------------------------------------------------- /conf/mgo_info.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /conf/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/conf/server.json -------------------------------------------------------------------------------- /game/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/external.go -------------------------------------------------------------------------------- /game/internal/card_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/card_base.go -------------------------------------------------------------------------------- /game/internal/chanrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/chanrpc.go -------------------------------------------------------------------------------- /game/internal/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/handler.go -------------------------------------------------------------------------------- /game/internal/mgo_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/mgo_init.go -------------------------------------------------------------------------------- /game/internal/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/module.go -------------------------------------------------------------------------------- /game/internal/rand_do_something.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/rand_do_something.go -------------------------------------------------------------------------------- /game/internal/room.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/room.go -------------------------------------------------------------------------------- /game/internal/room_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/room_data.go -------------------------------------------------------------------------------- /game/internal/user_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/user_line.go -------------------------------------------------------------------------------- /game/internal/userdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game/internal/userdb.go -------------------------------------------------------------------------------- /game_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/game_test.html -------------------------------------------------------------------------------- /gamedata/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/gamedata/reader.go -------------------------------------------------------------------------------- /gate/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/gate/external.go -------------------------------------------------------------------------------- /gate/internal/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/gate/internal/module.go -------------------------------------------------------------------------------- /gate/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/gate/router.go -------------------------------------------------------------------------------- /login/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/login/external.go -------------------------------------------------------------------------------- /login/internal/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/login/internal/handler.go -------------------------------------------------------------------------------- /login/internal/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/login/internal/module.go -------------------------------------------------------------------------------- /login/internal/register.go: -------------------------------------------------------------------------------- 1 | package internal 2 | 3 | //注册 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/main.go -------------------------------------------------------------------------------- /msg/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/msg/msg.go -------------------------------------------------------------------------------- /test_linear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinwhm12/leaf_game/HEAD/test_linear.go --------------------------------------------------------------------------------