From 10eb51f7c47fc5aef0765415ce547870eb997340 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 19 Jun 2010 22:04:42 +0200 Subject: [PATCH] game: Better weapon equip handling. Mostly temporary though. --- p/packet0105_1.bin | Bin 16 -> 0 bytes p/packet0105_armor.bin | Bin 0 -> 20 bytes p/packet0105_dagger.bin | Bin 0 -> 20 bytes p/packet0105_mgun.bin | Bin 0 -> 20 bytes p/packet0105_rcsm.bin | Bin 0 -> 20 bytes p/packet0105_saber.bin | Bin 0 -> 20 bytes p/packet0105_sword.bin | Bin 0 -> 20 bytes p/packet0105_twindaggers.bin | Bin 0 -> 20 bytes p/packet0105_twinguns.bin | Bin 0 -> 20 bytes src/egs_game.erl | 47 +++++++++++++++++++++++++++-------- 10 files changed, 37 insertions(+), 10 deletions(-) delete mode 100644 p/packet0105_1.bin create mode 100644 p/packet0105_armor.bin create mode 100644 p/packet0105_dagger.bin create mode 100644 p/packet0105_mgun.bin create mode 100644 p/packet0105_rcsm.bin create mode 100644 p/packet0105_saber.bin create mode 100644 p/packet0105_sword.bin create mode 100644 p/packet0105_twindaggers.bin create mode 100644 p/packet0105_twinguns.bin diff --git a/p/packet0105_1.bin b/p/packet0105_1.bin deleted file mode 100644 index 14e05f1ba6272006e1196c76f43dd3fcfb2ff99f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16 XcmZ3<%fNAnk%8fO;09Gz1_lNIB1!{v diff --git a/p/packet0105_armor.bin b/p/packet0105_armor.bin new file mode 100644 index 0000000000000000000000000000000000000000..40ce89efabc215a2c89d931d28510eaff5abc088 GIT binary patch literal 20 TcmZSPVgNxf2>AJbKZpSU6;cB! literal 0 HcmV?d00001 diff --git a/p/packet0105_dagger.bin b/p/packet0105_dagger.bin new file mode 100644 index 0000000000000000000000000000000000000000..251ed8f5cc26ccb7089638c2dd1f934e4ef6714a GIT binary patch literal 20 acmZ3<%D{1mk%8fO;09Gz1_mw$AOHX_v;%ek literal 0 HcmV?d00001 diff --git a/p/packet0105_mgun.bin b/p/packet0105_mgun.bin new file mode 100644 index 0000000000000000000000000000000000000000..f44ca17f9c4f6d71a3aff4ac9254cce925321bc1 GIT binary patch literal 20 ZcmZ3f$iNWCc7nl$MTVV`fq{ns2mmGA0&f5S literal 0 HcmV?d00001 diff --git a/p/packet0105_rcsm.bin b/p/packet0105_rcsm.bin new file mode 100644 index 0000000000000000000000000000000000000000..884abff1e10815dd9a1c5314188fd4261fec778a GIT binary patch literal 20 ZcmZ2k%D}+E&cF~V%Aml=z`)7?1OOcb0lokL literal 0 HcmV?d00001 diff --git a/p/packet0105_saber.bin b/p/packet0105_saber.bin new file mode 100644 index 0000000000000000000000000000000000000000..1be9e9425d70be36cf3f7aff494f951e3f9afc93 GIT binary patch literal 20 acmZ3<%)oJok%8fO;09Gz1_n+BAOHX_i34*0 literal 0 HcmV?d00001 diff --git a/p/packet0105_sword.bin b/p/packet0105_sword.bin new file mode 100644 index 0000000000000000000000000000000000000000..696496b9bda47f058c38c7ef5a01f74a026f55b2 GIT binary patch literal 20 acmZ3<&cJbqk%8fO;09Gz1_m|;AOHX_#shQ! literal 0 HcmV?d00001 diff --git a/p/packet0105_twindaggers.bin b/p/packet0105_twindaggers.bin new file mode 100644 index 0000000000000000000000000000000000000000..fd7dcc94ff33c5ffd1ccd4b8bf526358729421ee GIT binary patch literal 20 acmZ1}&A@Spk%8fO;09Gz1_o{hAOHX{TLX;% literal 0 HcmV?d00001 diff --git a/p/packet0105_twinguns.bin b/p/packet0105_twinguns.bin new file mode 100644 index 0000000000000000000000000000000000000000..7f07b40d381b9b6bf896bd93be8fad0825a7d8d0 GIT binary patch literal 20 ZcmZ3f&%hAJc7nl$MTVV`fq{bo2mmJ10(k%c literal 0 HcmV?d00001 diff --git a/src/egs_game.erl b/src/egs_game.erl index 57d8a82..8eecb97 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -557,23 +557,50 @@ handle(16#0102, _, _, _, _) -> %% @todo Currently use a separate file for the data sent for the weapons. handle(16#0105, CSocket, GID, _, Orig) -> - << _:384, A:32/little-unsigned-integer, ItemID:8, Action:8, B:16, C:32/little-unsigned-integer, _/bits >> = Orig, + << _:384, A:32/little-unsigned-integer, ItemID:8, Action:8, _:8, B:8, C:32/little-unsigned-integer, _/bits >> = Orig, + log(GID, "0105 action ~b item ~b (~b ~b ~b)", [Action, ItemID, A, B, C]), + Category = case ItemID of + % units would be 8, traps would be 12 + 19 -> 2; % armor + Y when Y =:= 5; Y =:= 6; Y =:= 7 -> 0; % clothes + _ -> 1 % weapons + end, case Action of - 1 -> % equip weapon - log(GID, "0105 - equip weapon"), - {ok, File} = file:read_file("p/packet0105_1.bin"), + 1 -> % equip item + Filename = case ItemID of + % weapons + 16 -> "p/packet0105_sword.bin"; + 13 -> "p/packet0105_twindaggers.bin"; + 15 -> "p/packet0105_dagger.bin"; + 9 -> "p/packet0105_rcsm.bin"; + 14 -> "p/packet0105_saber.bin"; + 8 -> "p/packet0105_mgun.bin"; + X when X =:= 17; X =:= 18 -> + "p/packet0105_twinguns.bin"; + % armor + 19 -> "p/packet0105_armor.bin"; + % clothes + X when X =:= 5; X =:= 6; X =:= 7 -> + none; + _ -> % default: do nothing + none + end, + case Filename of + none -> File = << >>; + _ -> {ok, File} = file:read_file(Filename) + end, 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, + 0:64, GID:32/little-unsigned-integer, A:32/little-unsigned-integer, ItemID, Action, Category, B, C:32/little-unsigned-integer, File/binary >>, egs_proto:packet_send(CSocket, Packet); - 2 -> % unequip weapon - log(GID, "0105 - unequip weapon"), + 2 -> % unequip item 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 >>, + 0:64, GID:32/little-unsigned-integer, A:32/little-unsigned-integer, ItemID, Action, Category, B, C:32/little-unsigned-integer >>, egs_proto:packet_send(CSocket, Packet); + 5 -> % drop item + ignore; _ -> - log(GID, "0105 - ignored action ~b", [Action]), - ignored + ignore end; %% @doc Shop listing request. Currently return the normal item shop for everything.