From 8a12b7ed36c77479e40e2f9de22653a1b68ad84c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Tue, 1 Jun 2010 19:37:02 +0200 Subject: [PATCH] game: Improve weapon equip/unequip handling. Handle melee half-correctly. --- p/packet0105_1.bin | Bin 0 -> 16 bytes src/egs_game.erl | 30 ++++++++++++++++++++++++------ 2 files changed, 24 insertions(+), 6 deletions(-) create mode 100644 p/packet0105_1.bin diff --git a/p/packet0105_1.bin b/p/packet0105_1.bin new file mode 100644 index 0000000000000000000000000000000000000000..14e05f1ba6272006e1196c76f43dd3fcfb2ff99f GIT binary patch literal 16 XcmZ3<%fNAnk%8fO;09Gz1_lNIB1!{v literal 0 HcmV?d00001 diff --git a/src/egs_game.erl b/src/egs_game.erl index b53a827..a71b361 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -480,15 +480,33 @@ broadcast(Command, GID, Packet) handle(16#0102, _, _, _, _) -> ignore; -%% @doc Weapon change handler. Fake it. +%% @doc Weapon equip, unequip, item drop, and more... handler. Do what we can. +%% Melee uses a format similar to: AAAA--BBCCCC----DDDDDDDDEE----FF with +%% AAAA the attack sound effect, BB the range, CCCC and DDDDDDDD unknown but related to angular range or similar, EE number of targets and FF the model. +%% Bullets and tech weapons formats are unknown but likely use a slightly different format. %% @todo Others probably want to see that you changed your weapon. +%% @todo Apparently B is always ItemID+1. Not sure why. +%% @todo Currently use a separate file for the data sent for the weapons. handle(16#0105, CSocket, GID, _, Orig) -> - log(GID, "weapon change (and more probably)"), - << _:384, Rest/bits >> = Orig, - Packet = << 16#01050300:32, 0:64, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, - 0:64, GID:32/little-unsigned-integer, Rest/binary >>, - egs_proto:packet_send(CSocket, Packet); + << _:384, A:32/little-unsigned-integer, ItemID:8, Action:8, B:16, C:32/little-unsigned-integer, _/bits >> = Orig, + case Action of + 1 -> % equip weapon + log(GID, "0105 - equip weapon"), + {ok, File} = file:read_file("p/packet0105_1.bin"), + Packet = << 16#01050300:32, 0:64, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, + 0:64, GID:32/little-unsigned-integer, A:32/little-unsigned-integer, ItemID, Action, B:16/little-unsigned-integer, C:32/little-unsigned-integer, + File/binary >>, + egs_proto:packet_send(CSocket, Packet); + 2 -> % unequip weapon + log(GID, "0105 - unequip weapon"), + Packet = << 16#01050300:32, 0:64, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, + 0:64, GID:32/little-unsigned-integer, A:32/little-unsigned-integer, ItemID, Action, B:16/little-unsigned-integer, C:32/little-unsigned-integer >>, + egs_proto:packet_send(CSocket, Packet); + _ -> + log(GID, "0105 - ignored"), + ignored + end; %% @doc Character death handler. Abort mission and redirect to 4th floor for now. %% @todo Recover from death correctly.