psu_proto: Move system_game_server_request to events.

This commit is contained in:
Loïc Hoguin 2010-09-19 17:31:46 +02:00
parent 8a88d63e48
commit 7197e5df21
2 changed files with 26 additions and 10 deletions

View File

@ -43,16 +43,6 @@ cast(_Command, _Data, _State) ->
%% Raw commands. %% Raw commands.
%% @todo Move all of them to events. %% @todo Move all of them to events.
%% Game server info request handler.
%% @todo Remove the dependency on network.hrl through configuration files.
raw(16#0217, _Data, #state{socket=Socket, gid=GID}) ->
IP = ?GAME_IP,
Port = ?GAME_PORT,
Packet = << 16#02160300:32, 0:192, GID:32/little-unsigned-integer, 0:64, IP/binary, Port:32/little-unsigned-integer >>,
psu_proto:packet_send(Socket, Packet),
ssl:close(Socket),
closed;
%% @doc Authentication request handler. Currently always succeed. %% @doc Authentication request handler. Currently always succeed.
%% Use the temporary session ID as the GID for now. %% Use the temporary session ID as the GID for now.
%% Use username and password as a folder name for saving character data. %% Use username and password as a folder name for saving character data.
@ -106,6 +96,16 @@ event({system_client_version_info, _Language, _Platform, Version}, #state{socket
closed closed
end; end;
%% Game server info request handler.
%% @todo Remove the dependency on network.hrl through configuration files.
event(system_game_server_request, #state{socket=Socket, gid=GID}) ->
IP = ?GAME_IP,
Port = ?GAME_PORT,
Packet = << 16#02160300:32, 0:192, GID:32/little-unsigned-integer, 0:64, IP/binary, Port:32/little-unsigned-integer >>,
psu_proto:packet_send(Socket, Packet),
ssl:close(Socket),
closed;
%% @doc Authenticate the user by pattern matching its saved state against the key received. %% @doc Authenticate the user by pattern matching its saved state against the key received.
%% If the user is authenticated, send him the character flags list. %% If the user is authenticated, send him the character flags list.
%% @todo Remove the put calls when all the send_xxxx are moved out of psu_game and into psu_proto. %% @todo Remove the put calls when all the send_xxxx are moved out of psu_game and into psu_proto.

View File

@ -241,6 +241,22 @@ parse(Size, 16#020d, Channel, Data) ->
?ASSERT_EQ(VarK, 0), ?ASSERT_EQ(VarK, 0),
{system_key_auth_request, AuthGID, AuthKey}; {system_key_auth_request, AuthGID, AuthKey};
parse(Size, 16#0217, Channel, Data) ->
<< LID:16/little, VarA:16/little, VarB:32/little, VarC:32/little, VarD:32/little, VarE:32/little, VarF:32/little, VarG:32/little, VarH:32/little, VarI:32/little >> = Data,
?ASSERT_EQ(Size, 44),
?ASSERT_EQ(Channel, 2),
?ASSERT_EQ(LID, 16#ffff),
?ASSERT_EQ(VarA, 0),
?ASSERT_EQ(VarB, 0),
?ASSERT_EQ(VarC, 0),
?ASSERT_EQ(VarD, 0),
?ASSERT_EQ(VarE, 0),
?ASSERT_EQ(VarF, 0),
?ASSERT_EQ(VarG, 0),
?ASSERT_EQ(VarH, 0),
?ASSERT_EQ(VarI, 0),
system_game_server_request;
parse(Size, 16#021c, Channel, Data) -> parse(Size, 16#021c, Channel, Data) ->
<< _LID:16/little, VarA:16/little, VarB:32/little, VarC:32/little, VarD:32/little, VarE:32/little, VarF:32/little, VarG:32/little, VarH:32/little, VarI:32/little >> = Data, << _LID:16/little, VarA:16/little, VarB:32/little, VarC:32/little, VarD:32/little, VarE:32/little, VarF:32/little, VarG:32/little, VarH:32/little, VarI:32/little >> = Data,
?ASSERT_EQ(Size, 44), ?ASSERT_EQ(Size, 44),