psu_proto: Pass the process state to send_0202.

This commit is contained in:
Loïc Hoguin 2010-09-22 00:25:30 +02:00
parent 38157769c2
commit c565e398b7
3 changed files with 7 additions and 5 deletions

View File

@ -59,5 +59,6 @@ init(Socket) ->
egs_game_server_exit_mon ! {link, self()}, egs_game_server_exit_mon ! {link, self()},
timer:send_interval(5000, {egs, keepalive}), timer:send_interval(5000, {egs, keepalive}),
TmpGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1), TmpGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1),
psu_proto:send_0202(Socket, TmpGID), State = #state{socket=Socket, gid=TmpGID},
egs_network:recv(<< >>, egs_login, #state{socket=Socket, gid=TmpGID}). psu_proto:send_0202(State),
egs_network:recv(<< >>, egs_login, State).

View File

@ -36,5 +36,6 @@ on_exit(_Pid) ->
%% @doc Initialize the game state and start receiving messages. %% @doc Initialize the game state and start receiving messages.
init(Socket) -> init(Socket) ->
TmpGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1), TmpGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1),
psu_proto:send_0202(Socket, TmpGID), State = #state{socket=Socket, gid=TmpGID},
egs_network:recv(<< >>, egs_login, #state{socket=Socket, gid=TmpGID}). psu_proto:send_0202(State),
egs_network:recv(<< >>, egs_login, State).

View File

@ -1194,7 +1194,7 @@ send_0201(CharUser, State) ->
%% @doc Hello command. Sent when a client connects to the game or login server. %% @doc Hello command. Sent when a client connects to the game or login server.
%% @todo Can contain an error message if 0:1024 is setup similar to this: 0:32, 3:32/little, 0:48, Len:16/little, Error/binary, 0:Padding. %% @todo Can contain an error message if 0:1024 is setup similar to this: 0:32, 3:32/little, 0:48, Len:16/little, Error/binary, 0:Padding.
send_0202(DestSocket, SessionID) -> send_0202(#state{socket=DestSocket, gid=SessionID}) ->
packet_send(DestSocket, << 16#020203bf:32, 16#ffff:16, 0:272, SessionID:32/little, 0:1024 >>). packet_send(DestSocket, << 16#020203bf:32, 16#ffff:16, 0:272, SessionID:32/little, 0:1024 >>).
%% @doc Make the client load a new map. %% @doc Make the client load a new map.