diff --git a/src/egs_game.erl b/src/egs_game.erl index 88345e6..eb67544 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -549,10 +549,10 @@ event({npc_shop_buy, ShopItemIndex, QuantityOrColor}, Client=#client{gid=GID}) - UCS2Name/binary, 0:NamePadding, RarityInt:8, Category:8, SellPrice:32/little, (psu_game:build_item_constants(Constants))/binary >>); %% @todo Currently send the normal items shop for all shops, differentiate. -event({npc_shop_enter, ShopID}, #client{gid=GID}) -> +event({npc_shop_enter, ShopID}, Client=#client{gid=GID}) -> log("npc shop enter ~p", [ShopID]), egs_users:shop_enter(GID, ShopID), - psu_game:send_010a(egs_shops_db:read(ShopID)); + psu_proto:send_010a(egs_shops_db:read(ShopID), Client); event({npc_shop_leave, ShopID}, #client{gid=GID}) -> log("npc shop leave ~p", [ShopID]), diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index cb6dad3..765dc51 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -131,33 +131,6 @@ npc_load(Leader, [{PartyPos, NPCGID}|NPCList], Client) -> send(Packet) -> psu_proto:packet_send(get(socket), Packet). -%% @doc Send a shop listing. -send_010a(ItemsList) -> - GID = get(gid), - NbItems = length(ItemsList), - ItemsBin = build_010a_list(ItemsList, []), - send(<< 16#010a0300:32, 0:64, GID:32/little, 0:64, 16#00011300:32, GID:32/little, 0:64, - GID:32/little, 0:32, 1:16/little, NbItems:8, 2:8, 0:32, ItemsBin/binary >>). - -%% @todo The values set to 0 are unknown. -build_010a_list([], Acc) -> - iolist_to_binary(lists:reverse(Acc)); -build_010a_list([ItemID|Tail], Acc) -> - #psu_item{name=Name, rarity=Rarity, buy_price=SellPrice, data=Data} = egs_items_db:read(ItemID), - UCS2Name = << << X:8, 0:8 >> || X <- Name >>, - NamePadding = 8 * (46 - byte_size(UCS2Name)), - RarityBin = Rarity - 1, - DataBin = build_item_constants(Data), - BinItemID = case element(1, Data) of - psu_clothing_item -> %% Change the ItemID to enable all colors. - << A:8, _:4, B:12, _:8 >> = << ItemID:32 >>, - << A:8, 3:4, B:12, 16#ff:8 >>; - _Any -> - << ItemID:32 >> - end, - Bin = << UCS2Name/binary, 0:NamePadding, RarityBin:8, 0:8, BinItemID/binary, SellPrice:32/little, DataBin/binary >>, - build_010a_list(Tail, [Bin|Acc]). - %% @todo Handle more than just goggles. send_0a0a(Inventory) -> {ok, << _:68608/bits, Rest/bits >>} = file:read_file("p/packet0a0a.bin"), diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 510675a..f08763f 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1194,6 +1194,33 @@ parse_hits(Hits, Acc) -> %~ << D1:32, D2:32, D3:32, D4:32, D5:32 >> = D, parse_hits(Rest, [{hit, FromTargetID, ToTargetID, A, B}|Acc]). +%% @doc Send a shop listing. +%% @todo This packet (and its build_010a_list function) hasn't been reviewed at all yet. +send_010a(ItemsList, #client{socket=Socket, gid=DestGID}) -> + NbItems = length(ItemsList), + ItemsBin = build_010a_list(ItemsList, []), + packet_send(Socket, << 16#010a0300:32, 0:64, DestGID:32/little, 0:64, 16#00011300:32, DestGID:32/little, 0:64, + DestGID:32/little, 0:32, 1:16/little, NbItems:8, 2:8, 0:32, ItemsBin/binary >>). + +%% @todo The values set to 0 are unknown. +build_010a_list([], Acc) -> + iolist_to_binary(lists:reverse(Acc)); +build_010a_list([ItemID|Tail], Acc) -> + #psu_item{name=Name, rarity=Rarity, buy_price=SellPrice, data=Data} = egs_items_db:read(ItemID), + UCS2Name = << << X:8, 0:8 >> || X <- Name >>, + NamePadding = 8 * (46 - byte_size(UCS2Name)), + RarityBin = Rarity - 1, + DataBin = psu_game:build_item_constants(Data), + BinItemID = case element(1, Data) of + psu_clothing_item -> %% Change the ItemID to enable all colors. + << A:8, _:4, B:12, _:8 >> = << ItemID:32 >>, + << A:8, 3:4, B:12, 16#ff:8 >>; + _Any -> + << ItemID:32 >> + end, + Bin = << UCS2Name/binary, 0:NamePadding, RarityBin:8, 0:8, BinItemID/binary, SellPrice:32/little, DataBin/binary >>, + build_010a_list(Tail, [Bin|Acc]). + %% @doc Send character appearance and other information. %% @todo Probably don't pattern match the data like this... send_010d(CharUser, #client{socket=Socket, gid=DestGID, lid=DestLID}) ->