├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── bin ├── StartMultiServer.bat ├── StartSingleServer.bat ├── config.json ├── config_tcp_game.json ├── config_tcp_gate.json └── config_tcp_manager.json ├── cofig └── gameproto │ ├── all-build.bat │ ├── buildgo.bat │ ├── gamecode.proto │ ├── login.proto │ ├── msgs │ ├── build.bat │ ├── protos.proto │ └── share.proto │ └── share.proto └── src ├── GAServer ├── app │ └── app.go ├── config │ └── serviceConfig.go ├── data-structures │ ├── binary-tree │ │ ├── bst.go │ │ └── bst_test.go │ ├── graph │ │ ├── README.md │ │ ├── directed_graph.go │ │ ├── graph.go │ │ ├── graph_test.go │ │ └── undirected_graph.go │ ├── hash-tables │ │ ├── ht.go │ │ └── ht_test.go │ ├── heap │ │ ├── heap.go │ │ ├── heap_test.go │ │ └── util.go │ ├── linked-list │ │ ├── linked_list.go │ │ └── linked_list_test.go │ ├── list │ │ ├── list.go │ │ └── list_test.go │ ├── matrix │ │ ├── README.md │ │ ├── matrix.go │ │ └── matrix_test.go │ ├── priority-queue │ │ ├── priority_queue.go │ │ └── priority_queue_test.go │ ├── queue │ │ ├── queue.go │ │ └── queue_test.go │ └── stack │ │ ├── stack.go │ │ └── stack_test.go ├── db │ ├── dbclient.go │ └── dbclient_test.go ├── example │ ├── messages │ │ ├── build.bat │ │ ├── protos.pb.go │ │ └── protos.proto │ └── service │ │ └── server │ │ └── main.go ├── gateframework │ ├── agent.go │ └── gate.go ├── log │ ├── example_test.go │ ├── log.go │ └── loggroup.go ├── module │ └── module.go ├── network │ ├── agent.go │ ├── conn.go │ ├── processor.go │ ├── tcp_client.go │ ├── tcp_conn.go │ ├── tcp_msg.go │ ├── tcp_server.go │ ├── ws_client.go │ ├── ws_conn.go │ └── ws_server.go ├── service │ ├── service.go │ ├── serviceData.go │ └── service_test.go └── util │ ├── deepcopy.go │ ├── example_test.go │ ├── map.go │ ├── rand.go │ ├── semaphore.go │ ├── stack.go │ └── tools.go ├── Robot ├── agent │ ├── agent.go │ └── robot.go ├── robotMachine │ └── main.go └── robotTest │ ├── agent.go │ ├── r_test.go │ ├── robot.go │ └── robotTest.go ├── Server ├── center │ ├── centerserver.go │ └── serviceNode.go ├── cluster │ ├── cluster.go │ ├── regcenter.go │ └── remoteclient.go ├── config │ └── config.go ├── db │ ├── dbmgr.go │ └── gameMD.go ├── game │ ├── gameserver.go │ ├── module_test.go │ ├── player.go │ ├── playerChatModule.go │ ├── playerModuleBase.go │ └── playerShopModule.go ├── gate │ ├── agentActor.go │ ├── gameproto.go │ └── gateserver.go ├── login │ └── loginserver.go ├── server.go └── session │ ├── UnloginData.go │ ├── playerSession.go │ ├── sessionManager.go │ ├── session_test.go │ └── sessionserver.go └── gameproto ├── gamecode.pb.go ├── login.pb.go ├── msgs ├── protos.pb.go └── share.pb.go └── share.pb.go /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/README.md -------------------------------------------------------------------------------- /bin/StartMultiServer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/bin/StartMultiServer.bat -------------------------------------------------------------------------------- /bin/StartSingleServer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/bin/StartSingleServer.bat -------------------------------------------------------------------------------- /bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/bin/config.json -------------------------------------------------------------------------------- /bin/config_tcp_game.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/bin/config_tcp_game.json -------------------------------------------------------------------------------- /bin/config_tcp_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/bin/config_tcp_gate.json -------------------------------------------------------------------------------- /bin/config_tcp_manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/bin/config_tcp_manager.json -------------------------------------------------------------------------------- /cofig/gameproto/all-build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/cofig/gameproto/all-build.bat -------------------------------------------------------------------------------- /cofig/gameproto/buildgo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/cofig/gameproto/buildgo.bat -------------------------------------------------------------------------------- /cofig/gameproto/gamecode.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/cofig/gameproto/gamecode.proto -------------------------------------------------------------------------------- /cofig/gameproto/login.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/cofig/gameproto/login.proto -------------------------------------------------------------------------------- /cofig/gameproto/msgs/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/cofig/gameproto/msgs/build.bat -------------------------------------------------------------------------------- /cofig/gameproto/msgs/protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/cofig/gameproto/msgs/protos.proto -------------------------------------------------------------------------------- /cofig/gameproto/msgs/share.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/cofig/gameproto/msgs/share.proto -------------------------------------------------------------------------------- /cofig/gameproto/share.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/cofig/gameproto/share.proto -------------------------------------------------------------------------------- /src/GAServer/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/app/app.go -------------------------------------------------------------------------------- /src/GAServer/config/serviceConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/config/serviceConfig.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/binary-tree/bst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/binary-tree/bst.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/binary-tree/bst_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/binary-tree/bst_test.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/graph/README.md -------------------------------------------------------------------------------- /src/GAServer/data-structures/graph/directed_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/graph/directed_graph.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/graph/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/graph/graph.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/graph/graph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/graph/graph_test.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/graph/undirected_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/graph/undirected_graph.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/hash-tables/ht.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/hash-tables/ht.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/hash-tables/ht_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/hash-tables/ht_test.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/heap/heap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/heap/heap.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/heap/heap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/heap/heap_test.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/heap/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/heap/util.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/linked-list/linked_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/linked-list/linked_list.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/linked-list/linked_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/linked-list/linked_list_test.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/list/list.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/list/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/list/list_test.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/matrix/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GAServer/data-structures/matrix/matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/matrix/matrix.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/matrix/matrix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/matrix/matrix_test.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/priority-queue/priority_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/priority-queue/priority_queue.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/priority-queue/priority_queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/priority-queue/priority_queue_test.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/queue/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/queue/queue.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/queue/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/queue/queue_test.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/stack/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/stack/stack.go -------------------------------------------------------------------------------- /src/GAServer/data-structures/stack/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/data-structures/stack/stack_test.go -------------------------------------------------------------------------------- /src/GAServer/db/dbclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/db/dbclient.go -------------------------------------------------------------------------------- /src/GAServer/db/dbclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/db/dbclient_test.go -------------------------------------------------------------------------------- /src/GAServer/example/messages/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/example/messages/build.bat -------------------------------------------------------------------------------- /src/GAServer/example/messages/protos.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/example/messages/protos.pb.go -------------------------------------------------------------------------------- /src/GAServer/example/messages/protos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/example/messages/protos.proto -------------------------------------------------------------------------------- /src/GAServer/example/service/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/example/service/server/main.go -------------------------------------------------------------------------------- /src/GAServer/gateframework/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/gateframework/agent.go -------------------------------------------------------------------------------- /src/GAServer/gateframework/gate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/gateframework/gate.go -------------------------------------------------------------------------------- /src/GAServer/log/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/log/example_test.go -------------------------------------------------------------------------------- /src/GAServer/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/log/log.go -------------------------------------------------------------------------------- /src/GAServer/log/loggroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/log/loggroup.go -------------------------------------------------------------------------------- /src/GAServer/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/module/module.go -------------------------------------------------------------------------------- /src/GAServer/network/agent.go: -------------------------------------------------------------------------------- 1 | package network 2 | 3 | type Agent interface { 4 | Run() 5 | OnClose() 6 | } 7 | -------------------------------------------------------------------------------- /src/GAServer/network/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/network/conn.go -------------------------------------------------------------------------------- /src/GAServer/network/processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/network/processor.go -------------------------------------------------------------------------------- /src/GAServer/network/tcp_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/network/tcp_client.go -------------------------------------------------------------------------------- /src/GAServer/network/tcp_conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/network/tcp_conn.go -------------------------------------------------------------------------------- /src/GAServer/network/tcp_msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/network/tcp_msg.go -------------------------------------------------------------------------------- /src/GAServer/network/tcp_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/network/tcp_server.go -------------------------------------------------------------------------------- /src/GAServer/network/ws_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/network/ws_client.go -------------------------------------------------------------------------------- /src/GAServer/network/ws_conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/network/ws_conn.go -------------------------------------------------------------------------------- /src/GAServer/network/ws_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/network/ws_server.go -------------------------------------------------------------------------------- /src/GAServer/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/service/service.go -------------------------------------------------------------------------------- /src/GAServer/service/serviceData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/service/serviceData.go -------------------------------------------------------------------------------- /src/GAServer/service/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/service/service_test.go -------------------------------------------------------------------------------- /src/GAServer/util/deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/util/deepcopy.go -------------------------------------------------------------------------------- /src/GAServer/util/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/util/example_test.go -------------------------------------------------------------------------------- /src/GAServer/util/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/util/map.go -------------------------------------------------------------------------------- /src/GAServer/util/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/util/rand.go -------------------------------------------------------------------------------- /src/GAServer/util/semaphore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/util/semaphore.go -------------------------------------------------------------------------------- /src/GAServer/util/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/util/stack.go -------------------------------------------------------------------------------- /src/GAServer/util/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/GAServer/util/tools.go -------------------------------------------------------------------------------- /src/Robot/agent/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Robot/agent/agent.go -------------------------------------------------------------------------------- /src/Robot/agent/robot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Robot/agent/robot.go -------------------------------------------------------------------------------- /src/Robot/robotMachine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Robot/robotMachine/main.go -------------------------------------------------------------------------------- /src/Robot/robotTest/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Robot/robotTest/agent.go -------------------------------------------------------------------------------- /src/Robot/robotTest/r_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Robot/robotTest/r_test.go -------------------------------------------------------------------------------- /src/Robot/robotTest/robot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Robot/robotTest/robot.go -------------------------------------------------------------------------------- /src/Robot/robotTest/robotTest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Robot/robotTest/robotTest.go -------------------------------------------------------------------------------- /src/Server/center/centerserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/center/centerserver.go -------------------------------------------------------------------------------- /src/Server/center/serviceNode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/center/serviceNode.go -------------------------------------------------------------------------------- /src/Server/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/cluster/cluster.go -------------------------------------------------------------------------------- /src/Server/cluster/regcenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/cluster/regcenter.go -------------------------------------------------------------------------------- /src/Server/cluster/remoteclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/cluster/remoteclient.go -------------------------------------------------------------------------------- /src/Server/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/config/config.go -------------------------------------------------------------------------------- /src/Server/db/dbmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/db/dbmgr.go -------------------------------------------------------------------------------- /src/Server/db/gameMD.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/db/gameMD.go -------------------------------------------------------------------------------- /src/Server/game/gameserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/game/gameserver.go -------------------------------------------------------------------------------- /src/Server/game/module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/game/module_test.go -------------------------------------------------------------------------------- /src/Server/game/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/game/player.go -------------------------------------------------------------------------------- /src/Server/game/playerChatModule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/game/playerChatModule.go -------------------------------------------------------------------------------- /src/Server/game/playerModuleBase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/game/playerModuleBase.go -------------------------------------------------------------------------------- /src/Server/game/playerShopModule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/game/playerShopModule.go -------------------------------------------------------------------------------- /src/Server/gate/agentActor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/gate/agentActor.go -------------------------------------------------------------------------------- /src/Server/gate/gameproto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/gate/gameproto.go -------------------------------------------------------------------------------- /src/Server/gate/gateserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/gate/gateserver.go -------------------------------------------------------------------------------- /src/Server/login/loginserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/login/loginserver.go -------------------------------------------------------------------------------- /src/Server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/server.go -------------------------------------------------------------------------------- /src/Server/session/UnloginData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/session/UnloginData.go -------------------------------------------------------------------------------- /src/Server/session/playerSession.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/session/playerSession.go -------------------------------------------------------------------------------- /src/Server/session/sessionManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/session/sessionManager.go -------------------------------------------------------------------------------- /src/Server/session/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/session/session_test.go -------------------------------------------------------------------------------- /src/Server/session/sessionserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/Server/session/sessionserver.go -------------------------------------------------------------------------------- /src/gameproto/gamecode.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/gameproto/gamecode.pb.go -------------------------------------------------------------------------------- /src/gameproto/login.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/gameproto/login.pb.go -------------------------------------------------------------------------------- /src/gameproto/msgs/protos.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/gameproto/msgs/protos.pb.go -------------------------------------------------------------------------------- /src/gameproto/msgs/share.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/gameproto/msgs/share.pb.go -------------------------------------------------------------------------------- /src/gameproto/share.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicsea/ga_server/HEAD/src/gameproto/share.pb.go --------------------------------------------------------------------------------