psu_proto: Review and move send_0230 to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-10-19 18:37:05 +02:00
parent b9f407bb1e
commit 94e902d07e
3 changed files with 6 additions and 7 deletions

View File

@ -764,7 +764,7 @@ event({unicube_select, Selection, EntryID}, State=#state{gid=GID}) ->
cancel -> ignore;
16#ffffffff ->
log("uni selection (my room)"),
psu_game:send_0230(),
psu_proto:send_0230(State),
% 0220
{ok, User} = egs_user_model:read(GID),
User2 = User#egs_user_model{area=#psu_area{questid=1120000, zoneid=0, mapid=100}, entryid=0},
@ -772,7 +772,7 @@ event({unicube_select, Selection, EntryID}, State=#state{gid=GID}) ->
psu_game:char_load(User2, State);
_UniID ->
log("uni selection (reload)"),
psu_game:send_0230(),
psu_proto:send_0230(State),
% 0220
{ok, User} = egs_user_model:read(GID),
case User#egs_user_model.partypid of

View File

@ -289,11 +289,6 @@ send_0222() ->
send_022c(A, B) ->
send(<< (header(16#022c))/binary, A:16/little-unsigned-integer, B:16/little-unsigned-integer >>).
%% @todo Not sure. Sent when going to or from room.
send_0230() ->
GID = get(gid),
send(<< 16#02300300:32, 0:32, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, 0:64 >>).
%% @todo Figure out what the other things are.
send_0233(Users) ->
NbUsers = length(Users),

View File

@ -1328,6 +1328,10 @@ send_0228(Type, Duration, Message, #state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#02280300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64,
TypeInt:32/little, Duration:32/little, UCS2Message/binary, 0:16 >>).
%% @todo Not sure. Sent when going to or from room. Possibly when changing universes too?
send_0230(#state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#02300300:32, 16#ffff:16, 0:16, 16#00011300:32, DestGID:32/little, 0:64, 16#00011300:32, DestGID:32/little, 0:64 >>).
%% @doc Forward the player to a website. The website will open when the player closes the game. Used for login issues mostly.
send_0231(URL, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->
URLBin = list_to_binary(URL),