egs_game: Handle item_equip(traps) and item_set_trap.

This commit is contained in:
Loïc Hoguin 2010-09-28 23:06:27 +02:00
parent 7b6773099b
commit 9ca3b903c6
3 changed files with 46 additions and 25 deletions

View File

@ -27,7 +27,7 @@
-record(psu_special_item, {}).
-record(psu_striking_weapon_item, {pp, atp, ata, atp_req, shop_element, hand, max_upgrades, attack_label,
attack_sound, hitbox_a, hitbox_b, hitbox_c, hitbox_d, nb_targets, effect, model}).
-record(psu_trap_item, {max_quantity}).
-record(psu_trap_item, {max_quantity, effect, type}).
-record(psu_consumable_item_variables, {quantity}).
-record(psu_parts_item_variables, {}).
@ -1499,50 +1499,50 @@
%% @todo Handle type/race/gender restrictions.
{16#0c010000, #psu_item{name="Damage Trap",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10, effect=0, type=damage}}},
{16#0c010100, #psu_item{name="Burn Trap",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10, effect=2, type=trap}}},
{16#0c010200, #psu_item{name="Freeze Trap",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10, effect=3, type=trap}}},
{16#0c010300, #psu_item{name="Poison Trap",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10, effect=4, type=trap}}},
{16#0c010400, #psu_item{name="Confusion Trap",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10, effect=5, type=trap}}},
{16#0c010500, #psu_item{name="Sleep Trap",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10, effect=6, type=trap}}},
{16#0c010600, #psu_item{name="Virus Trap",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10, effect=8, type=trap}}},
{16#0c010700, #psu_item{name="Shock Trap",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10, effect=16, type=trap}}},
{16#0c010800, #psu_item{name="Silence Trap",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10, effect=9, type=trap}}},
%% @todo Missing 0c010900 and 0c010a00.
{16#0c020000, #psu_item{name="Damage Trap G",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10, effect=1, type=damage_g}}},
{16#0c020100, #psu_item{name="Burn Trap G",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10, effect=2, type=trap_g}}},
{16#0c020200, #psu_item{name="Freeze Trap G",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10, effect=3, type=trap_g}}},
{16#0c020300, #psu_item{name="Poison Trap G",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10, effect=4, type=trap_g}}},
{16#0c020400, #psu_item{name="Confusion Trap G",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10, effect=5, type=trap_g}}},
{16#0c020500, #psu_item{name="Sleep Trap G",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10, effect=6, type=trap_g}}},
{16#0c020600, #psu_item{name="Virus Trap G",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10, effect=8, type=trap_g}}},
{16#0c020700, #psu_item{name="Shock Trap G",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10, effect=16, type=trap_g}}},
{16#0c020800, #psu_item{name="Silence Trap G",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10, effect=9, type=trap_g}}},
{16#0c020900, #psu_item{name="Burn Trap EX",
rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10}}},
rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10, effect=10, type=trap_ex}}},
{16#0c020a00, #psu_item{name="Freeze Trap EX",
rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10}}},
rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10, effect=11, type=trap_ex}}},
{16#0c020b00, #psu_item{name="Stun Trap EX",
rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10}}},
rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10, effect=12, type=trap_ex}}},
%% Special items.

View File

@ -128,6 +128,7 @@ raw(16#0404, << _:352, Data/bits >>, _State) ->
psu_game:send_1205(EventID, BlockID, Value);
%% @todo Used in the tutorial. Not sure what it does. Give an item (the PA) maybe?
%% @todo Probably should ignore that until more is known.
raw(16#0a09, _Data, #state{gid=GID}) ->
psu_game:send(<< 16#0a090300:32, 0:32, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#00003300:32, 0:32 >>);
@ -386,8 +387,7 @@ event({item_equip, ItemIndex, TargetGID, TargetLID, A, B}, #state{gid=GID}) ->
psu_game:send(<< 16#01050300:32, 0:64, TargetGID:32/little, 0:64, 16#00011300:32, GID:32/little, 0:64,
TargetGID:32/little, TargetLID:32/little, ItemIndex:8, 1:8, Category:8, A:8, B:32/little >>);
{ItemID, Variables} when element(1, Variables) =:= psu_striking_weapon_item_variables ->
ItemInfo = proplists:get_value(ItemID, ?ITEMS),
#psu_item{data=Constants} = ItemInfo,
#psu_item{data=Constants} = proplists:get_value(ItemID, ?ITEMS),
#psu_striking_weapon_item{attack_sound=Sound, hitbox_a=HitboxA, hitbox_b=HitboxB,
hitbox_c=HitboxC, hitbox_d=HitboxD, nb_targets=NbTargets, effect=Effect, model=Model} = Constants,
<< Category:8, _:24 >> = << ItemID:32 >>,
@ -398,11 +398,32 @@ event({item_equip, ItemIndex, TargetGID, TargetLID, A, B}, #state{gid=GID}) ->
psu_game:send(<< 16#01050300:32, 0:64, TargetGID:32/little, 0:64, 16#00011300:32, GID:32/little, 0:64,
TargetGID:32/little, TargetLID:32/little, ItemIndex:8, 1:8, Category:8, A:8, B:32/little,
SoundInt:32/little, HitboxA:16, HitboxB:16, HitboxC:16, HitboxD:16, SoundType:4, NbTargets:4, 0:8, Effect:8, Model:8 >>);
{ItemID, Variables} when element(1, Variables) =:= psu_trap_item_variables ->
#psu_item{data=#psu_trap_item{effect=Effect, type=Type}} = proplists:get_value(ItemID, ?ITEMS),
<< Category:8, _:24 >> = << ItemID:32 >>,
Bin = case Type of
damage -> << Effect:8, 16#0c0a05:24, 16#20140500:32, 16#0001c800:32, 16#10000000:32 >>;
damage_g -> << Effect:8, 16#2c0505:24, 16#0c000600:32, 16#00049001:32, 16#10000000:32 >>;
trap -> << Effect:8, 16#0d0a05:24, 16#61140000:32, 16#0001c800:32, 16#10000000:32 >>;
trap_g -> << Effect:8, 16#4d0505:24, 16#4d000000:32, 16#00049001:32, 16#10000000:32 >>;
trap_ex -> << Effect:8, 16#490a05:24, 16#4500000f:32, 16#4b055802:32, 16#10000000:32 >>
end,
psu_game:send(<< 16#01050300:32, 0:64, TargetGID:32/little, 0:64, 16#00011300:32, GID:32/little, 0:64,
TargetGID:32/little, TargetLID:32/little, ItemIndex:8, 1:8, Category:8, A:8, B:32/little, Bin/binary >>);
undefined ->
%% @todo Shouldn't be needed later when NPCs are handled correctly.
ignore
end;
%% @todo Remove the trap set from the inventory.
event({item_set_trap, ItemIndex, TargetGID, TargetLID, A, B}, #state{gid=GID}) ->
{ok, User} = egs_user_model:read(GID),
Inventory = (User#egs_user_model.character)#characters.inventory,
{ItemID, _Variables} = lists:nth(ItemIndex + 1, Inventory),
<< Category:8, _:24 >> = << ItemID:32 >>,
psu_game:send(<< 16#01050300:32, 0:64, TargetGID:32/little, 0:64, 16#00011300:32, GID:32/little, 0:64,
TargetGID:32/little, TargetLID:32/little, ItemIndex:8, 9:8, Category:8, A:8, B:32/little >>);
%% @todo A and B are unknown.
%% @see item_equip
event({item_unequip, ItemIndex, TargetGID, TargetLID, A, B}, #state{gid=GID}) ->

View File

@ -85,7 +85,7 @@ parse(Size, 16#0105, Channel, Data) ->
5 -> item_drop;
7 -> ignore; %% @todo item_learn_pa;
8 -> ignore; %% @todo item_use;
9 -> ?ASSERT(), ignore; %% @todo
9 -> item_set_trap;
18 -> ignore; %% @todo item_unlearn_pa;
_ -> log("unknown 0105 EventID ~p", [EventID])
end,