From 226090610a3a08d95a01432bc93203f7367dee44 Mon Sep 17 00:00:00 2001 From: AlKabir <7501421-frrleone@users.noreply.gitlab.com> Date: Thu, 29 Oct 2020 15:25:19 -0500 Subject: [PATCH 1/8] Make different mobs drop different assetts on death (not just lootbags) --- server/src/events/entity_manipulation.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index cb175c4c20..3782bf73e2 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -421,7 +421,11 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc let _ = state .create_object( comp::Pos(pos.0 + Vec3::unit_z() * 0.25), - object::Body::Pouch, + match old_body{ + Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch, + Some(common::comp::Body::Golem(_)) => object::Body::Chest, + _ => object::Body::Pumpkin, + }, ) .with(item) .build(); From 36573b17b2daf1cc11f08f90980e6f931a90633b Mon Sep 17 00:00:00 2001 From: AlKabir <7501421-frrleone@users.noreply.gitlab.com> Date: Thu, 29 Oct 2020 16:40:32 -0500 Subject: [PATCH 2/8] Make different mobs drop different assetts on death (not just lootbags) cargo fmt --- server/src/events/entity_manipulation.rs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index 3782bf73e2..553166751c 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -419,14 +419,11 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc let pos = state.ecs().read_storage::().get(entity).cloned(); if let Some(pos) = pos { let _ = state - .create_object( - comp::Pos(pos.0 + Vec3::unit_z() * 0.25), - match old_body{ - Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch, - Some(common::comp::Body::Golem(_)) => object::Body::Chest, - _ => object::Body::Pumpkin, - }, - ) + .create_object(comp::Pos(pos.0 + Vec3::unit_z() * 0.25), match old_body { + Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch, + Some(common::comp::Body::Golem(_)) => object::Body::Chest, + _ => object::Body::Pumpkin, + }) .with(item) .build(); } else { From 362e84c631b15b9bb07276530d2c437f2e4c1a5e Mon Sep 17 00:00:00 2001 From: AlKabir <7501421-frrleone@users.noreply.gitlab.com> Date: Thu, 29 Oct 2020 15:25:19 -0500 Subject: [PATCH 3/8] Make different mobs drop different assetts on death (not just lootbags) --- server/src/events/entity_manipulation.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index 56eaa8cd58..9c5d467569 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -435,7 +435,11 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc let _ = state .create_object( comp::Pos(pos.0 + Vec3::unit_z() * 0.25), - object::Body::Pouch, + match old_body{ + Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch, + Some(common::comp::Body::Golem(_)) => object::Body::Chest, + _ => object::Body::Pumpkin, + }, ) .with(item) .build(); From 568743d75d156d22a5d8b1a2d93f02d311f8367c Mon Sep 17 00:00:00 2001 From: AlKabir <7501421-frrleone@users.noreply.gitlab.com> Date: Thu, 29 Oct 2020 16:40:32 -0500 Subject: [PATCH 4/8] Make different mobs drop different assetts on death (not just lootbags) cargo fmt --- server/src/events/entity_manipulation.rs | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index 9c5d467569..0b1b0b30da 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -433,14 +433,11 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc let pos = state.ecs().read_storage::().get(entity).cloned(); if let Some(pos) = pos { let _ = state - .create_object( - comp::Pos(pos.0 + Vec3::unit_z() * 0.25), - match old_body{ - Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch, - Some(common::comp::Body::Golem(_)) => object::Body::Chest, - _ => object::Body::Pumpkin, - }, - ) + .create_object(comp::Pos(pos.0 + Vec3::unit_z() * 0.25), match old_body { + Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch, + Some(common::comp::Body::Golem(_)) => object::Body::Chest, + _ => object::Body::Pumpkin, + }) .with(item) .build(); } else { From f5e551105751baebab85e91378bca59ff017e66d Mon Sep 17 00:00:00 2001 From: AlKabir <7501421-frrleone@users.noreply.gitlab.com> Date: Sat, 7 Nov 2020 23:34:20 -0600 Subject: [PATCH 5/8] added two meat assets for mobs to drop --- assets/voxygen/voxel/object/meat_drop.vox | Bin 0 -> 3312 bytes assets/voxygen/voxel/object/steak.vox | Bin 0 -> 27338 bytes common/src/comp/body/object.rs | 8 +++++++- server/src/events/entity_manipulation.rs | 4 +++- voxygen/src/scene/figure/load.rs | 2 ++ 5 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 assets/voxygen/voxel/object/meat_drop.vox create mode 100644 assets/voxygen/voxel/object/steak.vox diff --git a/assets/voxygen/voxel/object/meat_drop.vox b/assets/voxygen/voxel/object/meat_drop.vox new file mode 100644 index 0000000000000000000000000000000000000000..33e19adb7c5732e303d1729c479e1df85dd3d241 GIT binary patch literal 3312 zcmXBX&21&Q6^3CR{@x#{d$gO40b8(PV0K2q0n9)~qZjr79>^GX0F{DLPy_~Q;RFO{ zpcHC%wX{-D3fE7SrT*?qp2JIiJY-dO|KsOhfBUbL(qDi4`Zq}by-DepuiyRx`_IAW z9d-KkpWnXzXAAiGA*WPRT;pprbZ6%+_oN%-K5G zI)n;l9c^r=aMsbrhPlyM8yn_MCv9w)om+Np4IAczIH|04iggG}E|>DDT&jN6cW~B~ z!-l2E-^%M(eFw^i95yUiuwupB$|ax6r8W7poPN=-STT1x$#?maynfNISTPSe$`ARY zynfNISTP^OsZb@?`K^D>Z-If?^O8L;4I6gs7#QgBkyjIJ+r10(e>OK(?AGnp4d)%s zyJN=?k1g)p!?}0t8||apM__Dp55hg@*fF^W$vqf2Ffg!VM=yi7@x4YT>P`5QLO=FjGD*f5(v zo4;YhZ2oNih7Ged8YRz3@|+ADm^>%Rb24yX@|+~k$!Pg9F!g*%Cv6;_m*hD~o|A#& zsDD7uOH$9Ijzc{MCiP10@o=99Cg+~q+u{BWOzvrNPX`W62c)q7u>X!7!~VnmJ9Z5F z5Bu-fG3-C=zhlR+|FHj#9mD>^{yTOIHRu%HAL0GsHEkVj^$7Lo*fG>2)T3j^P?u1T zjvd4MBh;f~$54+@myR7nP5NFJchCJE?)kt{+ojwz&zEQPvu892Yi-^O%{kXgzNwc| ztM^3}Cv4a-H~F)ClRwL0#fA-Ymp{pM!ip7}cst1rI?4^giWQr9JIWoz57j$fpTc@! zy)aLhCyWc@LaxhoYj$&Yxh~h``u6=#=D9U@#zOi{zin-?`k8{n@~!dW{&G}nve#k0 zVoYvobyhPhSerVXoBa}wZ7=2-)*Rd3y74Dtv7C(Ugbf=e^CljX@o5`Bj6WKSPjxZJd6XBa8|2{r$^NKl;bY{&U@a)_?n0Xr_sh7_2^4 z@l|{kU&Xg!i}<3kh%e%c`1aLVd={T|X7O2kn{E=H#3%7dU=sJ|n#7ZM5>MhO{eM}X ztA$pRt|nLw-mUmp`C0i{`C0kd?eVknv+}d@v+}cB=4a(+07Je3f_7d>3FtAu`G4W!Oy)2T8#=_6S&%)1MDt;Dz z7Je3f7Jl~f@w4!=@U!r<@UxY4;b-Az;b-Az;b$-NUYX6!_B)aIR(gJBerA4VerA65 z4CO6?T%VtxuTM`; X*T=`l>%+st_5S|;dUtncY)bzFU5_A8 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/object/steak.vox b/assets/voxygen/voxel/object/steak.vox new file mode 100644 index 0000000000000000000000000000000000000000..9e20e1dec137ef7ed8dd174aa2167678729daa51 GIT binary patch literal 27338 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 z for super::Body { @@ -210,6 +214,8 @@ impl Body { Body::FireworkYellow => "firework_yellow", Body::MultiArrow => "multi_arrow", Body::BoltNature => "bolt_nature", + Body::MeatDrop => "meat_drop", + Body::Steak => "steak", } } } diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index 0b1b0b30da..2062cbe826 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -436,7 +436,9 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc .create_object(comp::Pos(pos.0 + Vec3::unit_z() * 0.25), match old_body { Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch, Some(common::comp::Body::Golem(_)) => object::Body::Chest, - _ => object::Body::Pumpkin, + Some(common::comp::Body::BipedLarge(_)) => object::Body::MeatDrop, + Some(common::comp::Body::QuadrupedLow(_)) => object::Body::MeatDrop, + _ => object::Body::Steak, }) .with(item) .build(); diff --git a/voxygen/src/scene/figure/load.rs b/voxygen/src/scene/figure/load.rs index 751af13c1a..124194e6d5 100644 --- a/voxygen/src/scene/figure/load.rs +++ b/voxygen/src/scene/figure/load.rs @@ -3649,6 +3649,8 @@ fn mesh_object(obj: &object::Body) -> BoneMeshes { Body::TrainingDummy => ("object.training_dummy", Vec3::new(-7.0, -5.0, 0.0)), Body::MultiArrow => ("weapon.projectile.multi-arrow", Vec3::new(-4.0, -9.5, -5.0)), Body::BoltNature => ("weapon.projectile.nature-bolt", Vec3::new(-6.0, -6.0, -6.0)), + Body::MeatDrop => ("object.meat_drop", Vec3::new(0.0, 0.0, 0.0)), + Body::Steak => ("object.steak", Vec3::new(0.0, 0.0, -1.0)), }; load_mesh(name, offset) } From 1cfa96e830f556f269b78b17188714289147ec3f Mon Sep 17 00:00:00 2001 From: AlKabir <7501421-frrleone@users.noreply.gitlab.com> Date: Sat, 7 Nov 2020 23:37:15 -0600 Subject: [PATCH 6/8] changed to an or operand --- server/src/events/entity_manipulation.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/events/entity_manipulation.rs b/server/src/events/entity_manipulation.rs index 2062cbe826..bc4ed8c6ba 100644 --- a/server/src/events/entity_manipulation.rs +++ b/server/src/events/entity_manipulation.rs @@ -436,8 +436,8 @@ pub fn handle_destroy(server: &mut Server, entity: EcsEntity, cause: HealthSourc .create_object(comp::Pos(pos.0 + Vec3::unit_z() * 0.25), match old_body { Some(common::comp::Body::Humanoid(_)) => object::Body::Pouch, Some(common::comp::Body::Golem(_)) => object::Body::Chest, - Some(common::comp::Body::BipedLarge(_)) => object::Body::MeatDrop, - Some(common::comp::Body::QuadrupedLow(_)) => object::Body::MeatDrop, + Some(common::comp::Body::BipedLarge(_)) + | Some(common::comp::Body::QuadrupedLow(_)) => object::Body::MeatDrop, _ => object::Body::Steak, }) .with(item) From 13b76e1891d43fa33417526d6536a7d45a26db12 Mon Sep 17 00:00:00 2001 From: AlKabir <7501421-frrleone@users.noreply.gitlab.com> Date: Sat, 7 Nov 2020 23:52:18 -0600 Subject: [PATCH 7/8] improved the steak asset --- assets/voxygen/voxel/object/steak.vox | Bin 27338 -> 27338 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/assets/voxygen/voxel/object/steak.vox b/assets/voxygen/voxel/object/steak.vox index 9e20e1dec137ef7ed8dd174aa2167678729daa51..2556308b7087ba520952d64ac6ce2d70cf8ff084 100644 GIT binary patch delta 705 zcmWlVy-~wJ5JvZZPm<|E70>`NxdI@j1405dK)?(g5Rsb>$ecSPAf^d;_RRCQx9@Is zbEmVO&icCUS0Z9?cmHtvaw+(|1LfvKfU20OJUIlU%BDsS+~`3L3%! zae)gQI7G;9Nm0;9Nd_kyz>~vdl0`Ntg)cmK;mIV6Y*HHE_~v3{Kte&&)4`>|2M%)V zNQxfZZsPF7VQ>gYsENTdhi4o(1SHg@zc6&653$IWUBh>w*q^ayIdahe$kG^qN`>(8~-r>`~E!s=Fj6lHgrN_ delta 705 zcmWmAJ&x2s5QgFIuCD4C&yU0%d;<Q-EF2+Zn_k&411+p@4MAkuE0b;iWqxfBK7@o7{oN3 z!*3jW>06RH_L0MHv?5bq>Q-EF#bN4GUs&q4_{A?CQ=hWTmb#tz6OTt|=E>o*43=zX z3ug;5&JIAL%+}#HAH6vo6S;XgmU+AI7tdaJOr*Zd+m*X=h$|=ebgM($9C{-#)p_)H aA8;Sve~&Ny?en|%HR8vg_WUpZe*O<`&N Date: Sun, 8 Nov 2020 00:35:11 -0600 Subject: [PATCH 8/8] centering assets --- voxygen/src/scene/figure/load.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voxygen/src/scene/figure/load.rs b/voxygen/src/scene/figure/load.rs index 124194e6d5..9ca1f4c3fa 100644 --- a/voxygen/src/scene/figure/load.rs +++ b/voxygen/src/scene/figure/load.rs @@ -3649,8 +3649,8 @@ fn mesh_object(obj: &object::Body) -> BoneMeshes { Body::TrainingDummy => ("object.training_dummy", Vec3::new(-7.0, -5.0, 0.0)), Body::MultiArrow => ("weapon.projectile.multi-arrow", Vec3::new(-4.0, -9.5, -5.0)), Body::BoltNature => ("weapon.projectile.nature-bolt", Vec3::new(-6.0, -6.0, -6.0)), - Body::MeatDrop => ("object.meat_drop", Vec3::new(0.0, 0.0, 0.0)), - Body::Steak => ("object.steak", Vec3::new(0.0, 0.0, -1.0)), + Body::MeatDrop => ("object.meat_drop", Vec3::new(-3.5, -8.0, 0.0)), + Body::Steak => ("object.steak", Vec3::new(-3.5, -6.0, 0.0)), }; load_mesh(name, offset) }