From 7384868c571e5c4dabd783de66ee25d10ba0e636 Mon Sep 17 00:00:00 2001 From: Snowram Date: Tue, 27 Apr 2021 23:11:45 +0200 Subject: [PATCH 1/8] Adds flame wyvern npc --- assets/common/npc_names.ron | 4 + .../voxel/bird_large_central_manifest.ron | 52 +++++++++++ .../voxel/bird_large_lateral_manifest.ron | 84 ++++++++++++++++++ .../voxel/npc/wyvern_flame/male/beak.vox | Bin 0 -> 1624 bytes .../voxel/npc/wyvern_flame/male/chest.vox | Bin 0 -> 11124 bytes .../voxel/npc/wyvern_flame/male/foot_r.vox | Bin 0 -> 1960 bytes .../voxel/npc/wyvern_flame/male/head.vox | Bin 0 -> 2704 bytes .../voxel/npc/wyvern_flame/male/leg_r.vox | Bin 0 -> 2248 bytes .../voxel/npc/wyvern_flame/male/neck.vox | Bin 0 -> 2132 bytes .../npc/wyvern_flame/male/tail_front.vox | Bin 0 -> 2276 bytes .../voxel/npc/wyvern_flame/male/tail_rear.vox | Bin 0 -> 2508 bytes .../voxel/npc/wyvern_flame/male/wing_in_r.vox | Bin 0 -> 3484 bytes .../npc/wyvern_flame/male/wing_mid_r.vox | Bin 0 -> 2116 bytes .../npc/wyvern_flame/male/wing_out_r.vox | Bin 0 -> 2240 bytes common/src/comp/body.rs | 5 +- common/src/comp/body/bird_large.rs | 10 ++- common/src/comp/inventory/loadout_builder.rs | 22 +++++ voxygen/anim/src/bird_large/fly.rs | 4 +- voxygen/anim/src/bird_large/idle.rs | 20 +---- voxygen/anim/src/bird_large/mod.rs | 13 +++ 20 files changed, 193 insertions(+), 21 deletions(-) create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/beak.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/chest.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/foot_r.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/head.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/leg_r.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/neck.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/tail_front.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/tail_rear.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/wing_in_r.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/wing_mid_r.vox create mode 100644 assets/voxygen/voxel/npc/wyvern_flame/male/wing_out_r.vox diff --git a/assets/common/npc_names.ron b/assets/common/npc_names.ron index 0339622c22..2056193f41 100644 --- a/assets/common/npc_names.ron +++ b/assets/common/npc_names.ron @@ -1120,6 +1120,10 @@ keyword: "roc", generic: "Roc" ), + wyvern_flame: ( + keyword: "wyvern_flame", + generic: "Flame Wyvern" + ), ) ), quadruped_low: ( diff --git a/assets/voxygen/voxel/bird_large_central_manifest.ron b/assets/voxygen/voxel/bird_large_central_manifest.ron index a706aa79cf..6617997b69 100644 --- a/assets/voxygen/voxel/bird_large_central_manifest.ron +++ b/assets/voxygen/voxel/bird_large_central_manifest.ron @@ -155,4 +155,56 @@ central: ("npc.roc.male.tail_rear"), ) ), + (FlameWyvern, Male): ( + head: ( + offset: (-5.5, -5.0, 0.0), + central: ("npc.wyvern_flame.male.head"), + ), + beak: ( + offset: (-2.5, 0.0, -5.0), + central: ("npc.wyvern_flame.male.beak"), + ), + neck: ( + offset: (-2.5, 0.0, -3.5), + central: ("npc.wyvern_flame.male.neck"), + ), + chest: ( + offset: (-6.5, -12.0, -9.0), + central: ("npc.wyvern_flame.male.chest"), + ), + tail_front: ( + offset: (-2.5, -12.0, -7.0), + central: ("npc.wyvern_flame.male.tail_front"), + ), + tail_rear: ( + offset: (-4.5, -29.0, -8.0), + central: ("npc.wyvern_flame.male.tail_rear"), + ) + ), + (FlameWyvern, Female): ( + head: ( + offset: (-5.5, -5.0, 0.0), + central: ("npc.wyvern_flame.male.head"), + ), + beak: ( + offset: (-2.5, 0.0, -5.0), + central: ("npc.wyvern_flame.male.beak"), + ), + neck: ( + offset: (-2.5, 0.0, -3.5), + central: ("npc.wyvern_flame.male.neck"), + ), + chest: ( + offset: (-6.5, -12.0, -9.0), + central: ("npc.wyvern_flame.male.chest"), + ), + tail_front: ( + offset: (-2.5, -12.0, -7.0), + central: ("npc.wyvern_flame.male.tail_front"), + ), + tail_rear: ( + offset: (-4.5, -29.0, -8.0), + central: ("npc.wyvern_flame.male.tail_rear"), + ) + ), }) diff --git a/assets/voxygen/voxel/bird_large_lateral_manifest.ron b/assets/voxygen/voxel/bird_large_lateral_manifest.ron index fadf7ddb56..e0de44612f 100644 --- a/assets/voxygen/voxel/bird_large_lateral_manifest.ron +++ b/assets/voxygen/voxel/bird_large_lateral_manifest.ron @@ -251,4 +251,88 @@ lateral: ("npc.roc.male.foot_r"), ) ), + (FlameWyvern, Male): ( + wing_in_l: ( + offset: (-24.0, -9.0, -4.0), + lateral: ("npc.wyvern_flame.male.wing_in_r"), + ), + wing_in_r: ( + offset: (0.0, -9.0, -4.0), + lateral: ("npc.wyvern_flame.male.wing_in_r"), + ), + wing_mid_l: ( + offset: (-17.0, -27.0, -2.0), + lateral: ("npc.wyvern_flame.male.wing_mid_r"), + ), + wing_mid_r: ( + offset: (0.0, -27.0, -2.0), + lateral: ("npc.wyvern_flame.male.wing_mid_r"), + ), + wing_out_l: ( + offset: (-33.0, -31.0, -2.0), + lateral: ("npc.wyvern_flame.male.wing_out_r"), + ), + wing_out_r: ( + offset: (0.0, -31.0, -2.0), + lateral: ("npc.wyvern_flame.male.wing_out_r"), + ), + leg_l: ( + offset: (-3.0, -4.5, -5.5), + lateral: ("npc.wyvern_flame.male.leg_r"), + ), + leg_r: ( + offset: (-3.0, -4.5, -5.5), + lateral: ("npc.wyvern_flame.male.leg_r"), + ), + foot_l: ( + offset: (-3.5, -6.5, -13.0), + lateral: ("npc.wyvern_flame.male.foot_r"), + ), + foot_r: ( + offset: (-3.5, -6.5, -13.0), + lateral: ("npc.wyvern_flame.male.foot_r"), + ) + ), + (FlameWyvern, Female): ( + wing_in_l: ( + offset: (-24.0, -9.0, -4.0), + lateral: ("npc.wyvern_flame.male.wing_in_r"), + ), + wing_in_r: ( + offset: (0.0, -9.0, -4.0), + lateral: ("npc.wyvern_flame.male.wing_in_r"), + ), + wing_mid_l: ( + offset: (-17.0, -27.0, -2.0), + lateral: ("npc.wyvern_flame.male.wing_mid_r"), + ), + wing_mid_r: ( + offset: (0.0, -27.0, -2.0), + lateral: ("npc.wyvern_flame.male.wing_mid_r"), + ), + wing_out_l: ( + offset: (-33.0, -31.0, -2.0), + lateral: ("npc.wyvern_flame.male.wing_out_r"), + ), + wing_out_r: ( + offset: (0.0, -31.0, -2.0), + lateral: ("npc.wyvern_flame.male.wing_out_r"), + ), + leg_l: ( + offset: (-3.0, -4.5, -5.5), + lateral: ("npc.wyvern_flame.male.leg_r"), + ), + leg_r: ( + offset: (-3.0, -4.5, -5.5), + lateral: ("npc.wyvern_flame.male.leg_r"), + ), + foot_l: ( + offset: (-3.5, -6.5, -13.0), + lateral: ("npc.wyvern_flame.male.foot_r"), + ), + foot_r: ( + offset: (-3.5, -6.5, -13.0), + lateral: ("npc.wyvern_flame.male.foot_r"), + ) + ), }) \ No newline at end of file diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/beak.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/beak.vox new file mode 100644 index 0000000000000000000000000000000000000000..63c35a0b70c476a3451924e012d003a8283cbe15 GIT binary patch literal 1624 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 F{{=f`wt)Zu literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/foot_r.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/foot_r.vox new file mode 100644 index 0000000000000000000000000000000000000000..eb019aae7fca2e50339bfe36c8f28b13ccc5570a GIT binary patch literal 1960 zcmXYwdrVYk8phB0F6YcJG_C1h8#iW4m9!{muz*F7iy&7KiUT4l2s-Q{OqJRUBBZ4j zMQpi5O3^mO4s$uOx?L@_MRx6KO^kNkZ2L!TccmA)$<}nYX`9{HYLjQ5X?Budp7(ja z_j|uD=gg_uwB=W0hGA^XE2*FuqqbpGmuxMJj~V`Gjr;!3mb$GayJRdijE{-wF@l=N zcq1sZ8InY4Gi+Msq_E7eB+4>Fn%=O@Ns|a7ZRS)>EMmC0Mg);W5lt*&xXqyH<{FVi z5lt-SMjY3OjAKT%V%|efbWG!kDS|?YkR(cpu&G5zXc3k~5lwGe%q(U^5lu{6@UGlP z6w&miiLxM;p!-}e@re;Q@ zW=7Ri(_&^x-iaB}F>lk`oD)+Q`wbNors5eYsA4Kq*pwsNvDPuK zRYYnPRa!ZkwXo5eMt<{Y;p6>Fkd3r(--wL79&3(L)C;dT^} zcC0s!y>aY|$=?1_&`J3gxHc;|_t{5(Vb{J9z6@7BaLzS#2u2GdIM!+SUIpXe-hrDx&4V^f$Z zsmE7c!(cZ)IL7vCKD^e|g}**fj)}BPyuY{*-<&>;cUycoT$F=zW5@AzR{$@S7UFbs zBi_%=$8XnW;^vh(3>W9(sr74cbzLUB`RO>Z;cmHoR6Ni4fxx&2=0D#6u6iTOz|BIECrgE;riJI zytqFJ)8XfE_kK^db9t=;HVdU&y%v?W( zU9DSiFqnhGmwYI#%SL`2d)g8H^dAU}orLei>p1h#XE2T}Aig*s_tor#aWsn6E&H*ox(-YF9n`cvh1%`` zY&m}m%Nw3X=FrSD{yf5L-?N# zA#q6&7Nz!~V$;ibXo(lcdf&s|T_^F%@MR3_xro;CS1}ZrL3MUL&JXE1cyEKf&mQVw=xSE8fYkETaAqdlb_mr@7elyspc zB?F&l4WKb&9e%p|J-^a>_~V~0U}Ss(ojnJ!w|hT!x9moBT{SjsD#jD*vyqXt2AQde qSXfxV{QNxT=H@UpHHH5Eegpymc)eZ}6civKApwgPEsFhrjsF2crUMrM literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/head.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/head.vox new file mode 100644 index 0000000000000000000000000000000000000000..db59b238e13dce477f186ef5187d58aa9fd3f603 GIT binary patch literal 2704 zcmXAqeNa^A8O85?zwhqy)&AA7<1|K@R0T5_!61m@7a)ERToh4JQD{+#8Z#imB*vhK zi9oefO{bb&SXLXGYB7!4nrfVJG_}*@kJz-5G_*5~rtKu1c5F2>r)S$`esiAZocDR} z-S^%dYL>0~)_~`EOXij@rFb17&#Nw9y&#fm_z9D*5!&9W+STQih6O+0^F2>E@4h1< zL?trf-M2)gd-n}dnN*^spH#|EXyp$ZZ5lsxS#D#c&VSiYK=@Ub2 zm}?`v=LkJwh>g%o^An2bG8XpxXaX_3@aL$y?=#jr49NE*%%ZA8)-k+4)pUsy3Htw<`%j2PCI zIQqhgxOB`MujQB#%ihr!fr!X}dj`yiAvRz}UxY+hhIlU_-V42y~lxE5y-&e7K zctXW|5|9w_BzvNziU-tCs#hu|l^Rk?4Qi!$mTJ(l59s?^#e`OIsTJQxmC%|wv8)~a zAe9?6D2?J7GAG8Uq-F1n;ycM%%gi#fDrs0-){ee#ysl&Bm=WVR$KKHw0keSDB$}9j zbHvdXA!bB{)UYOoSoSXEg;iXKxjv;4lA+?Br(+@F`BdTwDp5+uwbC&|6X@|5EHh$=wVL0LzT-6RG@fCd{i6xE%L}+@%5|^qCYa)CXbHo=eCWs>e@g;lWNRX-(YvOxBEFiv5CBC4N zXBL&t_0<3WuYjMsCr9wY_#!st7vWz6XKPSkL`(B=eBsmh^5{NXnEw95EX%`#HPg^M=Lwux{uHinoQF5-i|}Zm1v|@UVr0ik{NeBpe6jAE_*+{A zZnah8XKM;jQ<956^|zpRbrHTey&tEV7USx7Id{AfN87g{-jI*K99@sj>Z!QVwH(Ll zC*#w^Zgkb<;j5ENfJ-mq-l5637yk~>U}rhT zj?Ti37jy7h%j0N?PQ<J8h_?<$@r#qKIM6s9S9`L7bK~&-v22VE<>2PA z>G;n(3vl=C-MG}BhtJ+xga_A3(YbXYet$E8haVmUt`q}j_zZd`0u7UJ>ufz<-8C5_ zLoeaL3tMrpGm2eJvk`lx09)5j#QwG!*jPIi_ik6>!AF&NG**R=ZujBr>!ld|U>1f> zRpH9D5^QbG!I6RG*w>STb0fR4VZ%%;UOE|d8*{Ow>S-M8--5o8#ppk~9T#q$!lvd` z*b^(k{;Q3ss4Yh6`W#fX%timm5xm&jfpL3hW9=JzkzZ4U37u6){_Y~0_w7W^w#8V; zXFBmn3r=;`V`yJ9k|$~~W71<-IwKd23ySb;#az5lyBG)Rm!o%c6xj#5FsCkxCs)^? z?b>w|Y}tmPkN=F;ffHyv{yN_H@Dq54#t&QpTo+I z9;`Zl7gOq=M`7>Jk-Me^-o}^FdGTXZB}d`mA;MqJK*ppwaNo#*x8_aQ$CqMH-v?-U zeh}H?7a=RJ3rm;%0FRB2;?UlAv3=7Cyw-OOJzK7zx$=kTZM}f%;yRq~{SA(7JCD}V zS5Y)=E-EIhMPptEYNs~f+39<+vT`Lx_FhKGlzgn5T!MAQ%dxYe1slJ;0^4%ya5e8R zlI88F$t}Pii+ZrWU^c#b_z(U{AK{n3x`h5?C(+iq2irS#VRO@FRM%Ex*|IV`Gp`s0 xMKe*DmyNNpF^rCm;_~IoICJIZB2=VQWz3CPOIO1;0{e*r>yaPa^D literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/leg_r.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/leg_r.vox new file mode 100644 index 0000000000000000000000000000000000000000..6038ee9e9e289b3ac50b65be60847a7c584155f1 GIT binary patch literal 2248 zcmXYxeN0y88OERQbFf`Hv%eM>(^4fH3N~24BFKjzpCS}r5K%!;*bt~%8xSEaRTQ!1 zBRYn58J71`R@dpEE3(;XO^kLfYyYV0Chf|Wtft%2E?eBR$+gR6C;8>N@9VwK^IYdS z@B3D7+Vc3A5MpC)aXCdy`$AL|Z!LKAVZ+OjIPwVDQoFVIh+)C&aVdl{BC3suC@UhG z7%O7Rv34S6oQNt<#I#4%GOCF*GOCC+GGeIG%9yf}_sW>DGHR*P(Q}+3hP8DvqCC!c zobhBx`7)+`s!}mcq*f87S!)$FL>k3C6!&0nRK!xHrDr)qHI^Q0>F5#dRK!rNQz7Yb zEuuZey;M;7Dx`g?)KM*UOe!5!N^@TwF;t;-L~0#VR85T5QOjN!%^dWpni$rW2ut5; zo)>+q`ONemdXBS>YY^kOhSOo`>5%d`=h5@@r1JHo_H|H76H(GIkBRXGFcW*KCWZ)Y zqEZ`XqDKs|L>T&pvs6tr#2OP4mcFHLInUZqt)=g{wlh2YLBy2 z<+CPA*qD@-*=$5h%WO6xm5nK)i6KIBhA5)7<$2kN)ix-MWj6YT_fie9#xfh%Ac|;W ztPNTs9OsF0^oeowot>1P4Jx9Ed06}Ogo`QRqCz_6bIj+MkG*msNtANT=R!ugu+T0n zH9bv_YKSoO3_Zj9SQ}!Au)N>8u(F(GZCG3Dn2qy}`w;CM&&~179CJD5a?ImJmGB}$ zdd$O`XvtoA%;SZXV$a$rFDSIfJRb9S%;SX(5r%VybA}#kV>oBMptPK`^epGBHz^$F zoHwZ)J?C+M&ImuEh>$+__QQ&3B9za)*;6%DXrKGC*X)TQ!uUaHe4c~P?~l)O@F#`k zob`jsa*iq;Ye!$kMWu`jDI!!{SQ4e;xON<$DJ~?5(s5x;6^5UixS*nHs<7-Wdm_}L zpj3-OLQ{#-i}?JDCZ%CbeYP+!SN#9~2)yo0Oyko%uV5&(1pj{b7XBHX#jdnW{A+9q zGsSiIta}9f>%#jd1aPAnKkDwrZ@*rKiPQ|dx1<1nKX(rAv^3*rVKy#|oy6zeo%nu9 z0nRlw;JutY{CI5!ZeN?jNKp=+U%v*|*JU7(mxj|Dp23%=4r3<&Y0M7v;>(^E43uTy zCq-Gfy*YrH?PcgMN<(l*A%49%1N)0oaBtfxwB~#pXDXh?wZ`>$vpy3K#yYUScnzla z)!+|9`|!n%Z{crUCAisDg`aIpM|E~G{xsTw;jNkY;@nZ3Z7Ic-@A1CV%{bNFj$l(7 z{&K1Ty;Uo5y}ttE^@;d2auEG>Dfnt)BXH>m?w&}*-Qag|p(`I_P09GA|Ed3-$zR_d zL|0%1e%hIavHitZIJFknUrNGj9Z#YounM0~@5AlcA-vq2fwzVN_{Bsgjy12wmB9qy z!V!`Kd~^>+rb{t; zelKQjp2e=#EjTopjiXnZQBs?QyoMxHcI0Ao`XpW&?!l72b=dw!AJVEb5#L*h*zac1 zdU!vQ+Doy4?{wM84xH_+NBD3nVrQz6y8H>0rzWGhAQR7(5{~sF zr!Ih}wpOF->NTYAX-D|uKcjQ(44O~BjyFF11meU39xckl*Q$3y9FJmk%KRZQ z7^>TzM@`Qlwp_e}74QGpNd{!^Pp> zV7&bzI`dvd=Biwj#BWD)N)KvRHsQI|eW)p`!F1movR9;`CNUd3vMR8@sRNDQ*^Kt& zI$TK^LaewO)ye7jW9A?l(%0du`~Tpt^Z|bPt4kOipFmgdA?)orfZZ*-QB_-oO`D4F z?D{OEXRbj;N&*%Z7BD|QkGZ)yOifK;U|;~9ot+2-0?5zLM|^xd7B61>@cS$N3pv#? A`Tzg` literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/neck.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/neck.vox new file mode 100644 index 0000000000000000000000000000000000000000..f3f9e8bcea2afe6b19df52c671decd33b41b36f4 GIT binary patch literal 2132 zcmXYxeN5Ho9mSv5-|yb7O>6eo;$l{+WJAFQ3s?ks5#&{b;sp^E1ifqsw@Pg;BBZ4j zMXbC;%g`>nx4?ao)pa`PifndT6QiBW+CS>rO1rWptLe71%NAE{a(ZZblTXfh4(Itj z-#kC=t=YWwhoeG>O?f316p`x@qPk>T;RA~cek}RUw`{H3R`Re}Ooh-=2q{Ha5&E!H z^h7HWl3Iim(Ti$`<=-53gbXR72{%V2QAA4_H&mfyOcJG-DQ1KR#iW*DMKm#5#--t! zXd*42Y3Zrbp(lD#UE(2L85TmtB~e1fv`|q)gj76V#gtTWO>d||v8R|(wPHpuwBq^9 zh}J4@h%n5IiYlr$%!sheEYGkis;PzuhtG2qXHuL=g^a_F%QewNdQ@0>=!x`lFVTdz z8YCOTVbnnUKnvRLY5Hs?<(IX=hSXrJ*}+WJiR^3!p8;}iJe)M3mNJdWA^ z9(>W=g8uSM{Hiz`x3>5&v!fh+#p#&XS%g1s$wWtSD(-Gyjn>>B;Y{V@xZ1P#M|ALlQoT9ztk#1<(q}L{l-CD97)BeuNUF&m3;KHZNvxHqqz6pG2l`* zFvWK;upDS!fg9%2xy^@dlch?~juEM1&IcRH5#>vr293Du<`RRk$wQDWPDw0s&l!8rFPvF?d zUJOr{VdUIC%-jfLck5Oh8qdLz%YKyBWh1{a8C8Kij7*=zb3@%&+PfY*UhPGCO%@V* zsu2InELsnDAi2E^8~IL`p9~<}(}2j~R>aTLAZ^7Xs7OnJzc33=mFD5ux-uMXsKn47 z9}}^NnqrW3KdItW}ui(}9K885HfCq~6@nFp^h+{FVX*qxu z)pc0bA4g5w)2Qtpz}5@5v9jSAWDflnDcb`OO)sEl_9Ilq=OJ(p-~HZ0cxXi~Jl{`- z*!~*aM=Nk>_+12^nMC5UA}mSmL&fHw;gMxN9PfP#`*xqf%fnYNu=f&L%YTlc;0&s> z>v3V|PZ(>zfMEU!WUbCaX~GWpQ@c^Osu@qM=|ydMEv9?tkh3x!wMjYHnO%vF<^Y<0 zyanwk^|+imh3#hE4;L{q7D8vwA?)iufITgHP+eDz z&6|tyBU=Ti^4+RAUNJvP)k|j$P|9{2T DsMj0a literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/tail_front.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/tail_front.vox new file mode 100644 index 0000000000000000000000000000000000000000..50f9a47e85bfa96915ec1182582e8e3d9b04043a GIT binary patch literal 2276 zcmXYxe@xWp9mk(v-(PoHXZF|PVpgkcL%{|MSOobYDj=d14@6WD6gGrIsSSvbmRc0C zR577c zOcJG7qZ%SKb3|zs)0#PYVN_fi<_vT6hAJ(^GgMd;X{)dz+Gfq+TIi@ETIh(7IxeN2 zP*TS>*DhzuKYeW-6gr#}5jw_4%Q4Lkttl8Yp=6=Kw z>1fWvbwXX@>9Fz2Lw#TKR8au9y9hH_H zRhG@U?5MD9-jy9!wjI;-hF&-}@5<&(%uo#xE^DqmpbQNkHhk|<|fX{SvYC!#DTB5kVe@P3@Abm$#=$B7EpiAkb}CdPGm zzQglb^PIRQhF7$q~diZU?1dn10cEeq{MX?U=6 zC7ScTgL7M-!j1ZMc%wEOk4A%NFJ6tQgH`y$;6Z$``#GO&Y!mZ3ZsC zg!?Cxaew@KxY${U(S}rf()Z;5?&Pm;4WKiy96#&Gz-W6h=1#A{%@x8N`c?S$K0WfM13>aJ+F9t_>ss7Z>6EGf9|@rr_3@Rrt@_>v8X`!?-+>hR@#I zhzHjT(9^O3zrQtshaa8*uI2!f{0;_|0u9S>`$8>VIh2g4=!-c1d<#zW1aPQnEyiBX zL`&UL9P3O+ef0|5zf+0_AC=MmMukiW?c?4vsWW4EeUgTbC{i-#g!{pFgZDi{{DV+ YbaWsP2%xaA5KERU!NP?L6Te^aUvStoV*mgE literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/tail_rear.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/tail_rear.vox new file mode 100644 index 0000000000000000000000000000000000000000..87053840e670036ed62664fe000b14abcaf98a64 GIT binary patch literal 2508 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 literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/wing_mid_r.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/wing_mid_r.vox new file mode 100644 index 0000000000000000000000000000000000000000..ef3a0466984660e3bc60a04734f9943bbda3c26f GIT binary patch literal 2116 zcmX}sdr(y883yokzH@f>?0wfO>{6#8%CsoxU;u+47eTHf1Q$e95Ohg#S(TVsM3{sa z6fxm4T8gGq411NvBw9#=v?dy798K&r`6K2cNkco+IB7dcryX0(%+tsG(Vh9t`=0lE z-kqIucDHuRwjYm5lC(L$w30GmSaqYJ*A^dnMfTmAOZ9~$-`#U;fQw-iy` ztO-)sCdm_avdXNo9CWZcgghZ!azt^-QI%Eal4E-I!p)gmj;X9VR*@hFl>|AYl3fzcsWFafhY-G1G zXJd|pjX6?DBO{r}OctJ7$!25TF8s2cc~b1mlaBOcAdQSfkQv$v_$zIX97+EM(=5&B0x#*e^SUUpTo-D(Og12GYn#CNh(SS*w$K3%Iv{d!#Jj z9_dI=2GYn#CZ3zgLe>Q$CN1P1iG|!Fm2{*h18HO=6Pd}vtaTyp&m!)TAY~EvNJn}y zkVZx_k(n9GA`y`nGfxVsi!2*LOL?WDG@`w64m0BuNxH~?D zulBu!!Spix=e^tbS9At@GP3dS(Me2~HsI^7;YWWN`0%6z-1OpCU0wL2qXOgUS$N-F zgnyhrk9S(VI98mCi=(ITO;-RvFDt_NmL|NPSAbuy&%&MSvluSP!!sM#;l_q6cnUIb zX48}S?(|Vi7e0ZR{vLeS-HQH-EWBQlgF9P2nBG}|zLE?CcNODr1v9l1PEvfjjZ_N+)yd)MOXKoW4#jSt6?Fc(h2&9Sxk?>j}f`}Sd69!bO3Zx!SIwF30` zHsQ0I5j^<#1aKt>nB+4USPrzTz^x07c==E=rou1a_;Ws-=<(oC>jq4`lnGzcavbYS zM|1ru+`CY;?!a6-n|ax zmC0ymPQ~WxCvjqAABLyOF>>Jmrf;3Yp0;f`GLeg8SG_2!&p|;`3ab727@0bS=ZCuC z?%jZ$uk|9MHXDgO)rfsEgSMj`NNF#}CO*^Ur~EkA(}?iVHpI@>B7MbUs7z0VwFCm?rhoz(d z*4o{WPDHV`^$=Fn)MHtH47I*zP}en_jtqYU|Fa<^Eh~mItq+x3eu2l9d2q7#Jsj9`7OxCn!@#~P zXsh@oh62;5$!Wl)p+8`({SpENFC%+(KFShz!kgBO`c*C1zqS{36?K^Eoki}-4Adp( zVpmQTI$Hc_{^?e#f29xc`*$y6WNaLrJx6e$ z`w;fF?nO;~4Yq74!BZP^keR&>S!qd_pP$Fv+#F_SXE8ZBiT?h61OfqgJRTGl79ue* M5l*M`(f3#SAMr;D3;+NC literal 0 HcmV?d00001 diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/wing_out_r.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/wing_out_r.vox new file mode 100644 index 0000000000000000000000000000000000000000..d93fe5c6c3d347786ce8cb7a5d964cad2749f432 GIT binary patch literal 2240 zcmXZcYfzNe83*v)v)uRk?)|<<)M-&LgAojZTm-p_5?l~bK~QLMFG|dS2$K+lA|?W( zrD!_EuoqUUO|_5)X-zfGIGWmN@*y^@Bn|CMna!!4J|JaXAos*p{& zW%4Nxx#aRGH+d+PT!JyBKBb^Ic}VV&hlEESR#2Qr9ucYXkVh_9LkbZ}jT0eHyzr&Q zb57u#AVTg$;qxR4e`+G*B*sasBVDraxyYR?{GMb!rwE^uTq(luCQl02l)@*GgPcm? zcad8u!XBjvX;s3fBZ=(fPzk@2T;x`XuvX1HNu(zm+10}DASb!hBJ3uuhIJ&7o(yCm zE7>%{Zzl&iH6q~BuwKi0l1NVmGLnhRWFf0o_-$k-hgJlfS`l`URww*A9eYVn1~QU~ z%w%ESN;b0VM8H8#od|0r;n$LmB#FIbAS0Q$W+n?+$tH<_og9*wc1j|u(X*FyB$1vB zWF!-r$wF4W2-wK37eR+!Olu76BOOVkCj%MDL}s!WM8HZmg9zFUBIYoNsM;t38Y6p2 zM-u7DKt?h#Zzc;_jUs3>ikRKVJ`?*$YhoWsq$dN{jASA+Sxh2mHHoN=)MoaOmUJYM zo(yCp6Pe8-XfcbJ)hwbaiwLSM>>(}bNFqHM$VevEm@Oh|A(fT&q_MJ|bR?0U3|u#o z$tq%ItB5LXBB&xYX-G>tl1NVmn}{08WD_x^owcMU4QWY7l3h&e$zT`J6o&{ZNkwYX zIK;HpA)-2x7$-YLFol#(5mPz&E}T3w##+WnF6Jr4B_c|f2&+iVINmL$6DZLwVo98n z-6E1gGLPWh7QEXcr0@vdZ4r*A1doU$QW9g4${fW}JgJ?ENQz4lR+7r4;NFTz0wuZ? z;Ur2Xxktf072H!1ilcaXp{%$__U(TN91kXE@%e$*ae7@P{`3Al{A+q1`?B-!@9`PT zRW#v?-cj(Eg%3~3fIIE@ac?hvr>n-~x?FtVD8)Z6Uc`GH?KoamfGgu?@MUi|eo$G8 zi)}6Vps*M}*^rC-w-zv3UWgYrt;g++x$qWe^F#gkx~~I6)w%d- zc|PuM_hN2$H3rMG5!zFR-)zrCS9um5?OKD*!tdbxw&!rGbrarh&cl=O0J1fd$`h5g7LOYd^Y&(|KG{q-W^7d zcNKotosIFX3M`%7fZMNR;LX4@2zb}v%h^M?KYtppw&&uV(_Z{?vKuGb*W$+TO5lnE zA5N^qVk851Cf4G=@0H@gyGL+sEDK+}Q-()3i_!1fj6d9o;_=5Pf$RCe49{SAIncHO zcP}^Njl=1fjl7BzFZ*z^-;2W?8!`2I4ty=kalB_8S{qm6;k{}+`lK39mTK|Iy-{3# zs~C$PZ9wEgEw0}zfUh$HXU4bT*l-4}%pSqsz3Wj`la8j=Ol+xr9w)~RV05+$W0wzN z?(PNb>)e5(Qw2DFqaBrv`6zD5Ky9E1W3y-Q%19p^0~@jX(g3pS^N`kGi`ehy(Rr*3 z8U8A4=9w-(6TpT3W<-v4B6hwW>sBm7&ALpqm*yc@S%jAxt8k)u8%FkfvGT+q3Y)xm zc4s|$Zr(!90Y4(2{srCR=h1%dEnNEeGssRYK~-K1b^Tt*PEKQO$6>6fYlM3!hI-$N zXy_Zpj;jx_s`(}4j{E|dy8@84zJ~t!Pf;6Ngba_NG-#n+QHUg424uV5M&dIyI6C?f z0xyNJ(p?5AYY;VCe~4vnFHQ}-kAwTp!8O-!Pv|0oXj9mf8S{itiK!`7|kcwtjMa`M(A sH)|!9mX@%%xQK;?1 4000, bird_large::Species::Phoenix => 6000, bird_large::Species::Roc => 5000, + bird_large::Species::FlameWyvern => 6000, }, Body::Humanoid(_) => 750, _ => 1000, @@ -746,7 +747,9 @@ impl Body { Body::QuadrupedLow(q) => matches!(q.species, quadruped_low::Species::Lavadrake), Body::BirdLarge(b) => matches!( b.species, - bird_large::Species::Phoenix | bird_large::Species::Cockatrice + bird_large::Species::Phoenix + | bird_large::Species::Cockatrice + | bird_large::Species::FlameWyvern ), _ => false, }, diff --git a/common/src/comp/body/bird_large.rs b/common/src/comp/body/bird_large.rs index 8d282c0480..361f87263b 100644 --- a/common/src/comp/body/bird_large.rs +++ b/common/src/comp/body/bird_large.rs @@ -37,6 +37,7 @@ make_case_elim!( Phoenix = 0, Cockatrice = 1, Roc = 2, + FlameWyvern = 3, } ); @@ -48,6 +49,7 @@ pub struct AllSpecies { pub phoenix: SpeciesMeta, pub cockatrice: SpeciesMeta, pub roc: SpeciesMeta, + pub wyvern_flame: SpeciesMeta, } impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies { @@ -59,11 +61,17 @@ impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies Species::Phoenix => &self.phoenix, Species::Cockatrice => &self.cockatrice, Species::Roc => &self.roc, + Species::FlameWyvern => &self.wyvern_flame, } } } -pub const ALL_SPECIES: [Species; 3] = [Species::Phoenix, Species::Cockatrice, Species::Roc]; +pub const ALL_SPECIES: [Species; 3] = [ + Species::Phoenix, + Species::Cockatrice, + Species::Roc, + Species::FlameWyvern, + ]; impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { type IntoIter = std::iter::Copied>; diff --git a/common/src/comp/inventory/loadout_builder.rs b/common/src/comp/inventory/loadout_builder.rs index 052cbb467a..773482a097 100644 --- a/common/src/comp/inventory/loadout_builder.rs +++ b/common/src/comp/inventory/loadout_builder.rs @@ -447,6 +447,28 @@ impl LoadoutBuilder { quadruped_low::Species::Tortoise => { Some("common.items.npc_armor.quadruped_low.shell") }, + Body::BirdLarge(bird_large) => match (bird_large.species, bird_large.body_type) { + (bird_large::Species::Cockatrice, _) => { + main_tool = Some(Item::new_from_asset_expect( + "common.items.npc_weapons.unique.birdlargebreathe", + )); + }, + (bird_large::Species::Phoenix, _) => { + main_tool = Some(Item::new_from_asset_expect( + "common.items.npc_weapons.unique.birdlargefire", + )); + }, + (bird_large::Species::Roc, _) => { + main_tool = Some(Item::new_from_asset_expect( + "common.items.npc_weapons.unique.birdlargebasic", + )); + }, + (bird_large::Species::FlameWyvern, _) => { + main_tool = Some(Item::new_from_asset_expect( + "common.items.npc_weapons.unique.birdlargebreathe", + )); + }, + }, _ => None, }, Body::Theropod(body) => match body.species { diff --git a/voxygen/anim/src/bird_large/fly.rs b/voxygen/anim/src/bird_large/fly.rs index acb32f23f0..a3dc9384f6 100644 --- a/voxygen/anim/src/bird_large/fly.rs +++ b/voxygen/anim/src/bird_large/fly.rs @@ -98,8 +98,8 @@ impl Animation for FlyAnimation { next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_l.orientation = Quaternion::rotation_y(-flap3 * 1.2 - 0.3); - next.wing_out_r.orientation = Quaternion::rotation_y(flap3 * 1.2 + 0.3); + next.wing_out_l.orientation = Quaternion::rotation_y(-flap3 * 0.6 - 0.3) * Quaternion::rotation_x(-flap2 * 1.4); + next.wing_out_r.orientation = Quaternion::rotation_y(flap3 * 0.6 + 0.3) * Quaternion::rotation_x(-flap2 * 1.4); next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); next.tail_front.orientation = diff --git a/voxygen/anim/src/bird_large/idle.rs b/voxygen/anim/src/bird_large/idle.rs index c48f0fcf8f..7030506ad5 100644 --- a/voxygen/anim/src/bird_large/idle.rs +++ b/voxygen/anim/src/bird_large/idle.rs @@ -48,37 +48,23 @@ impl Animation for IdleAnimation { next.chest.orientation = Quaternion::rotation_x(0.0); next.neck.position = Vec3::new(0.0, s_a.neck.0, s_a.neck.1); - next.neck.orientation = Quaternion::rotation_x(0.0); next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); - next.head.orientation = Quaternion::rotation_z(duck_head_look.x) - * Quaternion::rotation_x(-duck_head_look.y.abs() + wave_slow_cos * 0.01); next.beak.position = Vec3::new(0.0, s_a.beak.0, s_a.beak.1); - next.beak.orientation = Quaternion::rotation_x(wave_slow_cos * -0.02 - 0.02); next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); - next.tail_front.orientation = Quaternion::rotation_x(0.6); + next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); - next.tail_rear.orientation = Quaternion::rotation_x(-0.2); next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); - next.wing_in_l.orientation = - Quaternion::rotation_y(-0.8 + wave_slow_cos * 0.06) * Quaternion::rotation_z(0.2); - next.wing_in_r.orientation = - Quaternion::rotation_y(0.8 - wave_slow_cos * 0.06) * Quaternion::rotation_z(-0.2); - next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); - next.wing_mid_l.orientation = Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(0.7); - next.wing_mid_r.orientation = Quaternion::rotation_y(0.1) * Quaternion::rotation_z(-0.7); next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_l.orientation = Quaternion::rotation_y(-0.4) * Quaternion::rotation_z(0.2); - next.wing_out_r.orientation = Quaternion::rotation_y(0.4) * Quaternion::rotation_z(-0.2); next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1, s_a.leg.2); next.leg_l.orientation = Quaternion::rotation_x(0.0); @@ -86,9 +72,9 @@ impl Animation for IdleAnimation { next.leg_r.orientation = Quaternion::rotation_x(0.0); next.foot_l.position = Vec3::new(-s_a.foot.0, s_a.foot.1, s_a.foot.2); - next.foot_l.orientation = Quaternion::rotation_x(0.0); + next.foot_r.position = Vec3::new(s_a.foot.0, s_a.foot.1, s_a.foot.2); - next.foot_r.orientation = Quaternion::rotation_x(0.0); + next } diff --git a/voxygen/anim/src/bird_large/mod.rs b/voxygen/anim/src/bird_large/mod.rs index 432cd57338..46903e43c3 100644 --- a/voxygen/anim/src/bird_large/mod.rs +++ b/voxygen/anim/src/bird_large/mod.rs @@ -165,66 +165,79 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Phoenix, _) => (2.5, 16.0), (Cockatrice, _) => (2.5, 16.0), (Roc, _) => (2.5, 27.5), + (FlameWyvern, _) => (2.5, 23.0), }, neck: match (body.species, body.body_type) { (Phoenix, _) => (2.5, -5.5), (Cockatrice, _) => (5.0, -1.5), (Roc, _) => (9.5, -1.5), + (FlameWyvern, _) => (11.0, -0.5), }, head: match (body.species, body.body_type) { (Phoenix, _) => (6.0, 12.0), (Cockatrice, _) => (8.0, 4.5), (Roc, _) => (17.0, -3.5), + (FlameWyvern, _) => (10.0, -1.5), }, beak: match (body.species, body.body_type) { (Phoenix, _) => (5.0, 3.0), (Cockatrice, _) => (2.0, -3.0), (Roc, _) => (0.0, -3.0), + (FlameWyvern, _) => (-1.0, 2.0), }, tail_front: match (body.species, body.body_type) { (Phoenix, _) => (-9.5, -1.0), (Cockatrice, _) => (-5.0, -2.5), (Roc, _) => (-7.5, -3.5), + (FlameWyvern, _) => (-10.0, -5.0), }, tail_rear: match (body.species, body.body_type) { (Phoenix, _) => (-11.0, 0.0), (Cockatrice, _) => (-8.0, -3.0), (Roc, _) => (-8.0, -3.0), + (FlameWyvern, _) => (-11.0, -1.0), }, wing_in: match (body.species, body.body_type) { (Phoenix, _) => (3.0, 2.5, 2.0), (Cockatrice, _) => (3.5, 7.0, 3.5), (Roc, _) => (5.5, 7.5, -1.0), + (FlameWyvern, _) => (5.5, 5.0, -2.0), }, wing_mid: match (body.species, body.body_type) { (Phoenix, _) => (10.0, 1.0, 0.0), (Cockatrice, _) => (6.0, 0.0, 0.0), (Roc, _) => (12.0, 1.0, -0.5), + (FlameWyvern, _) => (19.0, 15.0, -1.0), }, wing_out: match (body.species, body.body_type) { (Phoenix, _) => (7.0, 2.0, 1.5), (Cockatrice, _) => (4.0, -1.0, 1.0), (Roc, _) => (10.0, -2.0, 0.0), + (FlameWyvern, _) => (1.0, 1.0, 0.0), }, leg: match (body.species, body.body_type) { (Phoenix, _) => (4.0, 1.5, 12.0), (Cockatrice, _) => (3.5, 2.5, 13.0), (Roc, _) => (5.5, -1.5, 17.5), + (FlameWyvern, _) => (5.5, -2.0, 15.5), }, foot: match (body.species, body.body_type) { (Phoenix, _) => (0.5, -0.5, -2.5), (Cockatrice, _) => (0.5, -3.0, -3.0), (Roc, _) => (2.5, -2.5, -5.5), + (FlameWyvern, _) => (0.5, 0.0, -3.5), }, scaler: match (body.species, body.body_type) { (Phoenix, _) => (1.0), (Cockatrice, _) => (1.0), (Roc, _) => (1.0), + (FlameWyvern, _) => (1.0), }, feed: match (body.species, body.body_type) { (Phoenix, _) => (-0.65), (Cockatrice, _) => (-0.5), (Roc, _) => (-0.4), + (FlameWyvern, _) => (-0.65), }, } } From 298c1fbccb4895e96a2f0207a5ee862ae0df7f64 Mon Sep 17 00:00:00 2001 From: Snowram Date: Wed, 28 Apr 2021 01:08:14 +0200 Subject: [PATCH 2/8] More wyvern anim work --- .../voxel/bird_large_lateral_manifest.ron | 16 +++++++------- .../npc/wyvern_flame/male/wing_mid_r.vox | Bin 2116 -> 2460 bytes .../npc/wyvern_flame/male/wing_out_r.vox | Bin 2240 -> 1940 bytes voxygen/anim/src/bird_large/fly.rs | 4 ++-- voxygen/anim/src/bird_large/idle.rs | 20 +++++++++++++++--- voxygen/anim/src/bird_large/mod.rs | 4 ++-- voxygen/anim/src/bird_large/run.rs | 8 +++++-- 7 files changed, 35 insertions(+), 17 deletions(-) diff --git a/assets/voxygen/voxel/bird_large_lateral_manifest.ron b/assets/voxygen/voxel/bird_large_lateral_manifest.ron index e0de44612f..0ea680f5eb 100644 --- a/assets/voxygen/voxel/bird_large_lateral_manifest.ron +++ b/assets/voxygen/voxel/bird_large_lateral_manifest.ron @@ -269,19 +269,19 @@ lateral: ("npc.wyvern_flame.male.wing_mid_r"), ), wing_out_l: ( - offset: (-33.0, -31.0, -2.0), + offset: (-18.0, -27.0, -2.0), lateral: ("npc.wyvern_flame.male.wing_out_r"), ), wing_out_r: ( - offset: (0.0, -31.0, -2.0), + offset: (0.0, -27.0, -2.0), lateral: ("npc.wyvern_flame.male.wing_out_r"), ), leg_l: ( - offset: (-3.0, -4.5, -5.5), + offset: (-3.0, -4.5, -8.0), lateral: ("npc.wyvern_flame.male.leg_r"), ), leg_r: ( - offset: (-3.0, -4.5, -5.5), + offset: (-3.0, -4.5, -8.0), lateral: ("npc.wyvern_flame.male.leg_r"), ), foot_l: ( @@ -311,19 +311,19 @@ lateral: ("npc.wyvern_flame.male.wing_mid_r"), ), wing_out_l: ( - offset: (-33.0, -31.0, -2.0), + offset: (-18.0, -27.0, -2.0), lateral: ("npc.wyvern_flame.male.wing_out_r"), ), wing_out_r: ( - offset: (0.0, -31.0, -2.0), + offset: (0.0, -27.0, -2.0), lateral: ("npc.wyvern_flame.male.wing_out_r"), ), leg_l: ( - offset: (-3.0, -4.5, -5.5), + offset: (-3.0, -4.5, -8.0), lateral: ("npc.wyvern_flame.male.leg_r"), ), leg_r: ( - offset: (-3.0, -4.5, -5.5), + offset: (-3.0, -4.5, -8.0), lateral: ("npc.wyvern_flame.male.leg_r"), ), foot_l: ( diff --git a/assets/voxygen/voxel/npc/wyvern_flame/male/wing_mid_r.vox b/assets/voxygen/voxel/npc/wyvern_flame/male/wing_mid_r.vox index ef3a0466984660e3bc60a04734f9943bbda3c26f..0fb48efc5970deffbd90ae7cfd35e4fd0880fc10 100644 GIT binary patch delta 591 zcmWm7y>1gh6o%p5GqdacncW#D4(yMEB0-UYB1MWQazlZH3!p$CV{ri#4sPgaDN2wpAMPtCY+ zrg#92)!X%Q6%jbE!`<~diRNLiPQ(4~>#B08Y)mGb0wruFon!9)RodmU@w4zuJ43h( z&$TP$#=i?M5?jiRgTDr_{Df}p9_?*aPaTdd6iePH7HQRRx-Fs z4*rXJRA;qpbC_E0idqh3ErTUH|5H8ulr}PC$Q$WRBVB=#9JaETRyx(noo;1_S~ delta 214 zcmW;9I|{;36a>)s-o3#n@rM?XD5S7Rp^(Bt#KuBMz)vAa%o<#Pg$uA$E?C(av=!Wd zg@p^U*U^E)%$#b^%3wK9{G(E8I*Ml~71~NI;&kl%4pM~{FeIxq{txVrItN@g~JOm53u;nP=QKE_(YcvQ^QyX>dV3Nix zF$@cb90fc|-Ye8-lBR$*G1oH(^~}K`M?r7#Y$Ynxy`~1C*Gt>$W>ySBuyDvxz@tR9 z(o~~aX$~vBm^CvHEF5wa@F>@sD%5Mu&05PntohJ}AqW-@If{)Yj}p~JbG^~M*^u9o zhhX8hnsOBID7Tuct!_2UPE!WK!XZZizgskyJKd`t!976;77jUzy=K4Ht%Ny{fnebd wnsXEf-Ti_0qvi~Pg*)n&qd4kr9(aQu^kU&2$j3+BGU$g&^diUf!NbN~+|gY$x~qrH=-%#{++}n{6Fe=`M$5R> zdD;?p#GRI5uk*OqJnhL3&#uI10&IT0+%t;zVrAgEV=iY7an2kJQdrJ1os3 zk2+_lULXV)-H7uDyj06TLEHdQu6r~;|f{K1b75zwHklt7< zg$#M6S5fKV*SZD>5g|qbgA}&bBST*6b@dS-MAYgTw|XSF z88*jG*Ax6sub|`C==k5rWAZ~!9j9J*zt$7TQ=C@-#@)z F^B)1G%wGTi diff --git a/voxygen/anim/src/bird_large/fly.rs b/voxygen/anim/src/bird_large/fly.rs index a3dc9384f6..e3af646f3a 100644 --- a/voxygen/anim/src/bird_large/fly.rs +++ b/voxygen/anim/src/bird_large/fly.rs @@ -98,8 +98,8 @@ impl Animation for FlyAnimation { next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_l.orientation = Quaternion::rotation_y(-flap3 * 0.6 - 0.3) * Quaternion::rotation_x(-flap2 * 1.4); - next.wing_out_r.orientation = Quaternion::rotation_y(flap3 * 0.6 + 0.3) * Quaternion::rotation_x(-flap2 * 1.4); + next.wing_out_l.orientation = Quaternion::rotation_y(-flap3 * 0.6 - 0.3); + next.wing_out_r.orientation = Quaternion::rotation_y(flap3 * 0.6 + 0.3); next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); next.tail_front.orientation = diff --git a/voxygen/anim/src/bird_large/idle.rs b/voxygen/anim/src/bird_large/idle.rs index 7030506ad5..ec9d92a4dc 100644 --- a/voxygen/anim/src/bird_large/idle.rs +++ b/voxygen/anim/src/bird_large/idle.rs @@ -48,23 +48,37 @@ impl Animation for IdleAnimation { next.chest.orientation = Quaternion::rotation_x(0.0); next.neck.position = Vec3::new(0.0, s_a.neck.0, s_a.neck.1); + next.neck.orientation = Quaternion::rotation_x(0.0); next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); + next.head.orientation = Quaternion::rotation_z(duck_head_look.x) + * Quaternion::rotation_x(0.4 -duck_head_look.y.abs() + wave_slow_cos * 0.01); next.beak.position = Vec3::new(0.0, s_a.beak.0, s_a.beak.1); + next.beak.orientation = Quaternion::rotation_x(wave_slow_cos * -0.02 - 0.02); next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); - + next.tail_front.orientation = Quaternion::rotation_x(0.3); next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); + next.tail_rear.orientation = Quaternion::rotation_x(-0.0); next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); + next.wing_in_l.orientation = + Quaternion::rotation_y(-0.8 + wave_slow_cos * 0.06) * Quaternion::rotation_z(0.4); + next.wing_in_r.orientation = + Quaternion::rotation_y(0.8 - wave_slow_cos * 0.06) * Quaternion::rotation_z(-0.4); + next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); + next.wing_mid_l.orientation = Quaternion::rotation_x(0.1)*Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(0.7); + next.wing_mid_r.orientation = Quaternion::rotation_x(0.1)*Quaternion::rotation_y(0.1) * Quaternion::rotation_z(-0.7); next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); + next.wing_out_l.orientation = Quaternion::rotation_x(0.0) * Quaternion::rotation_y(0.1) * Quaternion::rotation_z(0.55); + next.wing_out_r.orientation = Quaternion::rotation_x(0.0) * Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(-0.55); next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1, s_a.leg.2); next.leg_l.orientation = Quaternion::rotation_x(0.0); @@ -72,9 +86,9 @@ impl Animation for IdleAnimation { next.leg_r.orientation = Quaternion::rotation_x(0.0); next.foot_l.position = Vec3::new(-s_a.foot.0, s_a.foot.1, s_a.foot.2); - + next.foot_l.orientation = Quaternion::rotation_x(0.0); next.foot_r.position = Vec3::new(s_a.foot.0, s_a.foot.1, s_a.foot.2); - + next.foot_r.orientation = Quaternion::rotation_x(0.0); next } diff --git a/voxygen/anim/src/bird_large/mod.rs b/voxygen/anim/src/bird_large/mod.rs index 46903e43c3..d30670afa9 100644 --- a/voxygen/anim/src/bird_large/mod.rs +++ b/voxygen/anim/src/bird_large/mod.rs @@ -165,7 +165,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Phoenix, _) => (2.5, 16.0), (Cockatrice, _) => (2.5, 16.0), (Roc, _) => (2.5, 27.5), - (FlameWyvern, _) => (2.5, 23.0), + (FlameWyvern, _) => (2.5, 20.5), }, neck: match (body.species, body.body_type) { (Phoenix, _) => (2.5, -5.5), @@ -213,7 +213,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Phoenix, _) => (7.0, 2.0, 1.5), (Cockatrice, _) => (4.0, -1.0, 1.0), (Roc, _) => (10.0, -2.0, 0.0), - (FlameWyvern, _) => (1.0, 1.0, 0.0), + (FlameWyvern, _) => (16.0, -3.0, 0.0), }, leg: match (body.species, body.body_type) { (Phoenix, _) => (4.0, 1.5, 12.0), diff --git a/voxygen/anim/src/bird_large/run.rs b/voxygen/anim/src/bird_large/run.rs index 7ac8b4c905..e5484b5d21 100644 --- a/voxygen/anim/src/bird_large/run.rs +++ b/voxygen/anim/src/bird_large/run.rs @@ -103,8 +103,12 @@ impl Animation for RunAnimation { next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); - next.wing_in_l.orientation = Quaternion::rotation_y(-0.8) * Quaternion::rotation_z(0.2); - next.wing_in_r.orientation = Quaternion::rotation_y(0.8) * Quaternion::rotation_z(-0.2); + next.wing_in_l.orientation = Quaternion::rotation_x(foot2a * 0.5) + * Quaternion::rotation_y(-0.8) + * Quaternion::rotation_z(0.2); + next.wing_in_r.orientation = Quaternion::rotation_x(foot1a * 0.5) + * Quaternion::rotation_y(0.8) + * Quaternion::rotation_z(-0.2); next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); From be53c407cbc787900d48725c907a31cf733263c4 Mon Sep 17 00:00:00 2001 From: jshipsey Date: Wed, 28 Apr 2021 09:24:43 -0400 Subject: [PATCH 3/8] wyvern walk --- common/src/comp/body/bird_large.rs | 2 +- voxygen/anim/src/bird_large/idle.rs | 18 ++++++++++----- voxygen/anim/src/bird_large/run.rs | 34 ++++++++++++++++++----------- 3 files changed, 35 insertions(+), 19 deletions(-) diff --git a/common/src/comp/body/bird_large.rs b/common/src/comp/body/bird_large.rs index 361f87263b..ca15f548fb 100644 --- a/common/src/comp/body/bird_large.rs +++ b/common/src/comp/body/bird_large.rs @@ -66,7 +66,7 @@ impl<'a, SpeciesMeta> core::ops::Index<&'a Species> for AllSpecies } } -pub const ALL_SPECIES: [Species; 3] = [ +pub const ALL_SPECIES: [Species; 4] = [ Species::Phoenix, Species::Cockatrice, Species::Roc, diff --git a/voxygen/anim/src/bird_large/idle.rs b/voxygen/anim/src/bird_large/idle.rs index ec9d92a4dc..b42dd6b38a 100644 --- a/voxygen/anim/src/bird_large/idle.rs +++ b/voxygen/anim/src/bird_large/idle.rs @@ -52,7 +52,7 @@ impl Animation for IdleAnimation { next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); next.head.orientation = Quaternion::rotation_z(duck_head_look.x) - * Quaternion::rotation_x(0.4 -duck_head_look.y.abs() + wave_slow_cos * 0.01); + * Quaternion::rotation_x(0.4 - duck_head_look.y.abs() + wave_slow_cos * 0.01); next.beak.position = Vec3::new(0.0, s_a.beak.0, s_a.beak.1); next.beak.orientation = Quaternion::rotation_x(wave_slow_cos * -0.02 - 0.02); @@ -72,13 +72,21 @@ impl Animation for IdleAnimation { next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); - next.wing_mid_l.orientation = Quaternion::rotation_x(0.1)*Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(0.7); - next.wing_mid_r.orientation = Quaternion::rotation_x(0.1)*Quaternion::rotation_y(0.1) * Quaternion::rotation_z(-0.7); + next.wing_mid_l.orientation = Quaternion::rotation_x(0.1) + * Quaternion::rotation_y(-0.1) + * Quaternion::rotation_z(0.7); + next.wing_mid_r.orientation = Quaternion::rotation_x(0.1) + * Quaternion::rotation_y(0.1) + * Quaternion::rotation_z(-0.7); next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_l.orientation = Quaternion::rotation_x(0.0) * Quaternion::rotation_y(0.1) * Quaternion::rotation_z(0.55); - next.wing_out_r.orientation = Quaternion::rotation_x(0.0) * Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(-0.55); + next.wing_out_l.orientation = Quaternion::rotation_x(0.0) + * Quaternion::rotation_y(0.1) + * Quaternion::rotation_z(0.55); + next.wing_out_r.orientation = Quaternion::rotation_x(0.0) + * Quaternion::rotation_y(-0.1) + * Quaternion::rotation_z(-0.55); next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1, s_a.leg.2); next.leg_l.orientation = Quaternion::rotation_x(0.0); diff --git a/voxygen/anim/src/bird_large/run.rs b/voxygen/anim/src/bird_large/run.rs index e5484b5d21..47b5b6e3fc 100644 --- a/voxygen/anim/src/bird_large/run.rs +++ b/voxygen/anim/src/bird_large/run.rs @@ -95,20 +95,28 @@ impl Animation for RunAnimation { * Quaternion::rotation_z(shortalt * 0.10); next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); - next.tail_front.orientation = Quaternion::rotation_x(0.6 + short * -0.02); + next.tail_front.orientation = Quaternion::rotation_x(0.3 + short * -0.02); next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); next.tail_rear.orientation = Quaternion::rotation_x(-0.2 + short * -0.1); - next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); - next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); + next.wing_in_l.position = Vec3::new( + -s_a.wing_in.0, + s_a.wing_in.1 + foot1a * 2.0, + s_a.wing_in.2 + speednorm * 1.0 + foot1b * 1.0, + ); + next.wing_in_r.position = Vec3::new( + s_a.wing_in.0, + s_a.wing_in.1 + foot2a * 2.0, + s_a.wing_in.2 + speednorm * 1.0 + foot2b * 1.0, + ); - next.wing_in_l.orientation = Quaternion::rotation_x(foot2a * 0.5) - * Quaternion::rotation_y(-0.8) - * Quaternion::rotation_z(0.2); - next.wing_in_r.orientation = Quaternion::rotation_x(foot1a * 0.5) - * Quaternion::rotation_y(0.8) - * Quaternion::rotation_z(-0.2); + next.wing_in_l.orientation = Quaternion::rotation_x(foot2a * -0.05 + speednorm * -0.3) + * Quaternion::rotation_y(-0.8 + speednorm * 0.55 + foot2b * -0.2) + * Quaternion::rotation_z(0.2 + foot2a * 0.6); + next.wing_in_r.orientation = Quaternion::rotation_x(foot1a * -0.05 + speednorm * -0.3) + * Quaternion::rotation_y(0.8 + speednorm * -0.55 + foot1b * 0.2) + * Quaternion::rotation_z(-0.2 + foot1a * -0.6); next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); @@ -117,10 +125,10 @@ impl Animation for RunAnimation { next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_l.orientation = - Quaternion::rotation_y(-0.2 + short * 0.05) * Quaternion::rotation_z(0.2); - next.wing_out_r.orientation = - Quaternion::rotation_y(0.2 + short * -0.05) * Quaternion::rotation_z(-0.2); + next.wing_out_l.orientation = Quaternion::rotation_y(-0.2 + short * 0.05) + * Quaternion::rotation_z(0.2 + foot2a * 0.3); + next.wing_out_r.orientation = Quaternion::rotation_y(0.2 + short * -0.05) + * Quaternion::rotation_z(-0.2 + foot1a * 0.3); next.leg_l.position = Vec3::new( -s_a.leg.0 + speednorm * 1.5, From cfdcf598449a4696f4167d0ff99043f7f54ee3fc Mon Sep 17 00:00:00 2001 From: Snowram Date: Fri, 30 Apr 2021 12:43:44 +0200 Subject: [PATCH 4/8] Split wyvern anims from the other birdlarge anims --- voxygen/anim/src/bird_large/alpha.rs | 15 +- voxygen/anim/src/bird_large/breathe.rs | 15 +- voxygen/anim/src/bird_large/feed.rs | 15 +- voxygen/anim/src/bird_large/fly.rs | 35 ++-- voxygen/anim/src/bird_large/idle.rs | 132 +++++++++------ voxygen/anim/src/bird_large/mod.rs | 6 + voxygen/anim/src/bird_large/run.rs | 197 +++++++++++++++-------- voxygen/anim/src/bird_large/shockwave.rs | 15 +- voxygen/anim/src/bird_large/shoot.rs | 15 +- voxygen/anim/src/bird_large/stunned.rs | 15 +- voxygen/anim/src/bird_large/swim.rs | 15 +- 11 files changed, 308 insertions(+), 167 deletions(-) diff --git a/voxygen/anim/src/bird_large/alpha.rs b/voxygen/anim/src/bird_large/alpha.rs index d2e718e96a..0f4c77ed3c 100644 --- a/voxygen/anim/src/bird_large/alpha.rs +++ b/voxygen/anim/src/bird_large/alpha.rs @@ -51,12 +51,15 @@ impl Animation for AlphaAnimation { 0.0 } * 1.3; - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06); next.chest.orientation = Quaternion::rotation_x(move1 * 0.5 - move2 * 0.8); diff --git a/voxygen/anim/src/bird_large/breathe.rs b/voxygen/anim/src/bird_large/breathe.rs index 94e6a8891a..8740ac86d3 100644 --- a/voxygen/anim/src/bird_large/breathe.rs +++ b/voxygen/anim/src/bird_large/breathe.rs @@ -51,12 +51,15 @@ impl Animation for BreatheAnimation { let wave_slow_cos = (anim_time * 4.5).cos(); - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.chest.position = Vec3::new( 0.0, diff --git a/voxygen/anim/src/bird_large/feed.rs b/voxygen/anim/src/bird_large/feed.rs index 11b9aec664..71e966add9 100644 --- a/voxygen/anim/src/bird_large/feed.rs +++ b/voxygen/anim/src/bird_large/feed.rs @@ -39,12 +39,15 @@ impl Animation for FeedAnimation { let wave_fast = (anim_time * 9.0).cos(); let beak = (anim_time * 16.0).sin(); - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06 - 1.8); next.chest.orientation = Quaternion::rotation_x(s_a.feed); diff --git a/voxygen/anim/src/bird_large/fly.rs b/voxygen/anim/src/bird_large/fly.rs index e3af646f3a..b39bab980a 100644 --- a/voxygen/anim/src/bird_large/fly.rs +++ b/voxygen/anim/src/bird_large/fly.rs @@ -26,7 +26,7 @@ impl Animation for FlyAnimation { let fast = (anim_time * 4.0).sin(); // Harmonic series hack to get a sine/saw mix - let freq = 8.0; + let freq = if s_a.wyvern {6.0} else {8.0}; let off1 = 0.0; let off2 = -1.7; let off3 = -2.0; @@ -58,12 +58,15 @@ impl Animation for FlyAnimation { 0.0 } * 1.3; - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.neck.position = Vec3::new(0.0, s_a.neck.0, s_a.neck.1); next.neck.orientation = @@ -98,15 +101,21 @@ impl Animation for FlyAnimation { next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_l.orientation = Quaternion::rotation_y(-flap3 * 0.6 - 0.3); - next.wing_out_r.orientation = Quaternion::rotation_y(flap3 * 0.6 + 0.3); + + if s_a.wyvern { + next.wing_out_l.orientation = Quaternion::rotation_y(-flap3 * 0.6 - 0.3); + next.wing_out_r.orientation = Quaternion::rotation_y(flap3 * 0.6 + 0.3); + } else { + next.wing_out_l.orientation = Quaternion::rotation_y(-flap3 * 1.2 - 0.3); + next.wing_out_r.orientation = Quaternion::rotation_y(flap3 * 1.2 + 0.3); + } next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); next.tail_front.orientation = - Quaternion::rotation_x(-flap2 * 0.2 + 0.1) * Quaternion::rotation_z(-tilt * 1.0); + Quaternion::rotation_x(-flap2 * 0.2 + 0.1) * Quaternion::rotation_z(tilt * 1.0); next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); next.tail_rear.orientation = - Quaternion::rotation_x(-flap3 * 0.3 + 0.15) * Quaternion::rotation_z(-tilt * 0.8); + Quaternion::rotation_x(-flap3 * 0.3 + 0.15) * Quaternion::rotation_z(tilt * 0.8); next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1, s_a.leg.2 - flap4 * 1.5); next.leg_l.orientation = Quaternion::rotation_x( @@ -151,10 +160,10 @@ impl Animation for FlyAnimation { next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); next.tail_front.orientation = - Quaternion::rotation_x(0.04 - slow * 0.04) * Quaternion::rotation_z(-tilt * 1.0); + Quaternion::rotation_x(0.04 - slow * 0.04) * Quaternion::rotation_z(tilt * 1.0); next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); next.tail_rear.orientation = - Quaternion::rotation_x(slow * 0.08) * Quaternion::rotation_z(-tilt * 0.8); + Quaternion::rotation_x(slow * 0.08) * Quaternion::rotation_z(tilt * 0.8); next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1, s_a.leg.2 + slow * 0.05); next.leg_l.orientation = Quaternion::rotation_x(-1.2 + slow * -0.05) diff --git a/voxygen/anim/src/bird_large/idle.rs b/voxygen/anim/src/bird_large/idle.rs index b42dd6b38a..505f032398 100644 --- a/voxygen/anim/src/bird_large/idle.rs +++ b/voxygen/anim/src/bird_large/idle.rs @@ -37,58 +37,23 @@ impl Animation for IdleAnimation { ); let wave_slow_cos = (anim_time * 4.5).cos(); - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; - - next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06 + 1.5); - next.chest.orientation = Quaternion::rotation_x(0.0); + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler / 8.0 * 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.neck.position = Vec3::new(0.0, s_a.neck.0, s_a.neck.1); next.neck.orientation = Quaternion::rotation_x(0.0); - next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); - next.head.orientation = Quaternion::rotation_z(duck_head_look.x) - * Quaternion::rotation_x(0.4 - duck_head_look.y.abs() + wave_slow_cos * 0.01); - next.beak.position = Vec3::new(0.0, s_a.beak.0, s_a.beak.1); next.beak.orientation = Quaternion::rotation_x(wave_slow_cos * -0.02 - 0.02); - next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); - next.tail_front.orientation = Quaternion::rotation_x(0.3); - next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); - next.tail_rear.orientation = Quaternion::rotation_x(-0.0); - - next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); - next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); - - next.wing_in_l.orientation = - Quaternion::rotation_y(-0.8 + wave_slow_cos * 0.06) * Quaternion::rotation_z(0.4); - next.wing_in_r.orientation = - Quaternion::rotation_y(0.8 - wave_slow_cos * 0.06) * Quaternion::rotation_z(-0.4); - - next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); - next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); - next.wing_mid_l.orientation = Quaternion::rotation_x(0.1) - * Quaternion::rotation_y(-0.1) - * Quaternion::rotation_z(0.7); - next.wing_mid_r.orientation = Quaternion::rotation_x(0.1) - * Quaternion::rotation_y(0.1) - * Quaternion::rotation_z(-0.7); - - next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_l.orientation = Quaternion::rotation_x(0.0) - * Quaternion::rotation_y(0.1) - * Quaternion::rotation_z(0.55); - next.wing_out_r.orientation = Quaternion::rotation_x(0.0) - * Quaternion::rotation_y(-0.1) - * Quaternion::rotation_z(-0.55); - - next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1, s_a.leg.2); + next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1, s_a.leg.2) / 8.0; next.leg_l.orientation = Quaternion::rotation_x(0.0); next.leg_r.position = Vec3::new(s_a.leg.0, s_a.leg.1, s_a.leg.2); next.leg_r.orientation = Quaternion::rotation_x(0.0); @@ -98,6 +63,83 @@ impl Animation for IdleAnimation { next.foot_r.position = Vec3::new(s_a.foot.0, s_a.foot.1, s_a.foot.2); next.foot_r.orientation = Quaternion::rotation_x(0.0); + if s_a.wyvern { + next.chest.position = + Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06) * s_a.scaler / 8.0; + next.chest.orientation = Quaternion::rotation_x(-0.1); + + next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); + next.head.orientation = Quaternion::rotation_z(duck_head_look.x) + * Quaternion::rotation_x(0.4 - duck_head_look.y.abs() + wave_slow_cos * 0.01); + + next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); + next.tail_front.orientation = Quaternion::rotation_x(0.38); + next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); + next.tail_rear.orientation = Quaternion::rotation_x(-0.1); + + next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); + next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); + + next.wing_in_l.orientation = + Quaternion::rotation_y(-0.8 + wave_slow_cos * 0.06) * Quaternion::rotation_z(0.4); + next.wing_in_r.orientation = + Quaternion::rotation_y(0.8 - wave_slow_cos * 0.06) * Quaternion::rotation_z(-0.4); + + next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); + next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); + next.wing_mid_l.orientation = Quaternion::rotation_x(0.1) + * Quaternion::rotation_y(-0.1) + * Quaternion::rotation_z(0.7); + next.wing_mid_r.orientation = Quaternion::rotation_x(0.1) + * Quaternion::rotation_y(0.1) + * Quaternion::rotation_z(-0.7); + + next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); + next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); + next.wing_out_l.orientation = Quaternion::rotation_x(0.0) + * Quaternion::rotation_y(0.1) + * Quaternion::rotation_z(0.55); + next.wing_out_r.orientation = Quaternion::rotation_x(0.0) + * Quaternion::rotation_y(-0.1) + * Quaternion::rotation_z(-0.55); + } else { + next.chest.position = + Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06 + 1.5) * s_a.scaler + / 8.0; + next.chest.orientation = Quaternion::rotation_x(0.0); + + next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); + next.head.orientation = Quaternion::rotation_z(duck_head_look.x) + * Quaternion::rotation_x(-duck_head_look.y.abs() + wave_slow_cos * 0.01); + + next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); + next.tail_front.orientation = Quaternion::rotation_x(0.6); + next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); + next.tail_rear.orientation = Quaternion::rotation_x(-0.2); + + next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); + next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); + + next.wing_in_l.orientation = + Quaternion::rotation_y(-0.8 + wave_slow_cos * 0.06) * Quaternion::rotation_z(0.2); + next.wing_in_r.orientation = + Quaternion::rotation_y(0.8 - wave_slow_cos * 0.06) * Quaternion::rotation_z(-0.2); + + next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); + next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); + next.wing_mid_l.orientation = + Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(0.7); + next.wing_mid_r.orientation = + Quaternion::rotation_y(0.1) * Quaternion::rotation_z(-0.7); + + next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); + next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); + next.wing_out_l.orientation = + Quaternion::rotation_y(-0.4) * Quaternion::rotation_z(0.2); + next.wing_out_r.orientation = + Quaternion::rotation_y(0.4) * Quaternion::rotation_z(-0.2); + } + next } } diff --git a/voxygen/anim/src/bird_large/mod.rs b/voxygen/anim/src/bird_large/mod.rs index d30670afa9..b8363215e3 100644 --- a/voxygen/anim/src/bird_large/mod.rs +++ b/voxygen/anim/src/bird_large/mod.rs @@ -124,6 +124,7 @@ pub struct SkeletonAttr { foot: (f32, f32, f32), scaler: f32, feed: f32, + wyvern: bool, } impl<'a> std::convert::TryFrom<&'a comp::Body> for SkeletonAttr { @@ -153,6 +154,7 @@ impl Default for SkeletonAttr { foot: (0.0, 0.0, 0.0), scaler: 0.0, feed: 0.0, + wyvern: false, } } } @@ -239,6 +241,10 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Roc, _) => (-0.4), (FlameWyvern, _) => (-0.65), }, + wyvern: match (body.species, body.body_type) { + (FlameWyvern, _) => true, + _ => false, + }, } } } diff --git a/voxygen/anim/src/bird_large/run.rs b/voxygen/anim/src/bird_large/run.rs index 47b5b6e3fc..89278109bd 100644 --- a/voxygen/anim/src/bird_large/run.rs +++ b/voxygen/anim/src/bird_large/run.rs @@ -65,12 +65,15 @@ impl Animation for RunAnimation { 0.0 } * 1.3; - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler* 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); next.head.orientation = Quaternion::rotation_x(-0.1 * speednorm + short * -0.05) @@ -85,67 +88,6 @@ impl Animation for RunAnimation { * Quaternion::rotation_y(tilt * 0.1) * Quaternion::rotation_z(shortalt * -0.1 - tilt * 0.5); - next.chest.position = Vec3::new( - 0.0, - s_a.chest.0, - s_a.chest.1 + short * 0.5 + 0.5 * speednorm, - ); - next.chest.orientation = Quaternion::rotation_x(short * 0.07) - * Quaternion::rotation_y(tilt * 0.8) - * Quaternion::rotation_z(shortalt * 0.10); - - next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); - next.tail_front.orientation = Quaternion::rotation_x(0.3 + short * -0.02); - - next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); - next.tail_rear.orientation = Quaternion::rotation_x(-0.2 + short * -0.1); - - next.wing_in_l.position = Vec3::new( - -s_a.wing_in.0, - s_a.wing_in.1 + foot1a * 2.0, - s_a.wing_in.2 + speednorm * 1.0 + foot1b * 1.0, - ); - next.wing_in_r.position = Vec3::new( - s_a.wing_in.0, - s_a.wing_in.1 + foot2a * 2.0, - s_a.wing_in.2 + speednorm * 1.0 + foot2b * 1.0, - ); - - next.wing_in_l.orientation = Quaternion::rotation_x(foot2a * -0.05 + speednorm * -0.3) - * Quaternion::rotation_y(-0.8 + speednorm * 0.55 + foot2b * -0.2) - * Quaternion::rotation_z(0.2 + foot2a * 0.6); - next.wing_in_r.orientation = Quaternion::rotation_x(foot1a * -0.05 + speednorm * -0.3) - * Quaternion::rotation_y(0.8 + speednorm * -0.55 + foot1b * 0.2) - * Quaternion::rotation_z(-0.2 + foot1a * -0.6); - - next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); - next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); - next.wing_mid_l.orientation = Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(0.7); - next.wing_mid_r.orientation = Quaternion::rotation_y(0.1) * Quaternion::rotation_z(-0.7); - - next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_l.orientation = Quaternion::rotation_y(-0.2 + short * 0.05) - * Quaternion::rotation_z(0.2 + foot2a * 0.3); - next.wing_out_r.orientation = Quaternion::rotation_y(0.2 + short * -0.05) - * Quaternion::rotation_z(-0.2 + foot1a * 0.3); - - next.leg_l.position = Vec3::new( - -s_a.leg.0 + speednorm * 1.5, - s_a.leg.1 + foot1b * -2.3, - s_a.leg.2, - ); - next.leg_l.orientation = Quaternion::rotation_x(-0.2 * speednorm + foot1a * 0.15) - * Quaternion::rotation_y(tilt * 0.5); - - next.leg_r.position = Vec3::new( - s_a.leg.0 + speednorm * -1.5, - s_a.leg.1 + foot2b * -2.3, - s_a.leg.2, - ); - next.leg_r.orientation = Quaternion::rotation_x(-0.2 * speednorm + foot2a * 0.15) - * Quaternion::rotation_y(tilt * 0.5); - next.foot_l.position = Vec3::new( -s_a.foot.0, s_a.foot.1 + foot1b * -1.0, @@ -164,6 +106,127 @@ impl Animation for RunAnimation { * Quaternion::rotation_y(tilt * -1.0) * Quaternion::rotation_z(tilt * -0.5); + if s_a.wyvern { + next.chest.position = Vec3::new( + 0.0, + s_a.chest.0, + s_a.chest.1 + short * 0.5 + speednorm * -2.0, + ) * s_a.scaler + / 8.0; + next.chest.orientation = Quaternion::rotation_x(-0.1 + short * 0.07) + * Quaternion::rotation_y(tilt * 0.8) + * Quaternion::rotation_z(shortalt * 0.10); + + next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); + next.tail_front.orientation = + Quaternion::rotation_x(0.3 + short * -0.02) * Quaternion::rotation_z(tilt * 2.0); + + next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); + next.tail_rear.orientation = + Quaternion::rotation_x(-0.1 + short * -0.1) * Quaternion::rotation_z(tilt * 0.8); + + next.wing_in_l.position = Vec3::new( + -s_a.wing_in.0, + s_a.wing_in.1 + foot1a * 2.0, + s_a.wing_in.2 + speednorm * 1.0 + foot1b * 1.0, + ); + next.wing_in_r.position = Vec3::new( + s_a.wing_in.0, + s_a.wing_in.1 + foot2a * 2.0, + s_a.wing_in.2 + speednorm * 1.0 + foot2b * 1.0, + ); + + next.wing_in_l.orientation = Quaternion::rotation_x(foot2a * -0.05 + speednorm * -0.3) + * Quaternion::rotation_y(-0.8 + speednorm * 0.55 + foot2b * -0.2) + * Quaternion::rotation_z(0.2 + foot2a * 0.6); + next.wing_in_r.orientation = Quaternion::rotation_x(foot1a * -0.05 + speednorm * -0.3) + * Quaternion::rotation_y(0.8 + speednorm * -0.55 + foot1b * 0.2) + * Quaternion::rotation_z(-0.2 + foot1a * -0.6); + + next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); + next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); + next.wing_mid_l.orientation = Quaternion::rotation_x(0.1) + * Quaternion::rotation_y(-0.1) + * Quaternion::rotation_z(0.7); + next.wing_mid_r.orientation = Quaternion::rotation_x(0.1) + * Quaternion::rotation_y(0.1) + * Quaternion::rotation_z(-0.7); + + next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); + next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); + next.wing_out_l.orientation = Quaternion::rotation_y(0.2 + short * 0.05) + * Quaternion::rotation_z(0.3 + foot2a * 0.3); + next.wing_out_r.orientation = Quaternion::rotation_y(-0.2 + short * -0.05) + * Quaternion::rotation_z(-0.3 + foot1a * 0.3); + + next.leg_l.position = Vec3::new( + -s_a.leg.0, + s_a.leg.1 + foot1b * -2.3, + s_a.leg.2, + ) / 8.0; + next.leg_l.orientation = Quaternion::rotation_x(-1.0 * speednorm + foot1a * 0.15) + * Quaternion::rotation_y(tilt * 0.5); + + next.leg_r.position = Vec3::new( + s_a.leg.0, + s_a.leg.1 + foot2b * -2.3, + s_a.leg.2, + ) / 8.0; + next.leg_r.orientation = Quaternion::rotation_x(-1.0 * speednorm + foot2a * 0.15) + * Quaternion::rotation_y(tilt * 0.5); + } else { + next.chest.position = Vec3::new( + 0.0, + s_a.chest.0, + s_a.chest.1 + short * 0.5 + 0.5 * speednorm, + ) * s_a.scaler + / 8.0; + next.chest.orientation = Quaternion::rotation_x(short * 0.07) + * Quaternion::rotation_y(tilt * 0.8) + * Quaternion::rotation_z(shortalt * 0.10); + + next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); + next.tail_front.orientation = Quaternion::rotation_x(0.6 + short * -0.02); + + next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); + next.tail_rear.orientation = Quaternion::rotation_x(-0.2 + short * -0.1); + + next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); + next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); + + next.wing_in_l.orientation = Quaternion::rotation_y(-0.8) * Quaternion::rotation_z(0.2); + next.wing_in_r.orientation = Quaternion::rotation_y(0.8) * Quaternion::rotation_z(-0.2); + + next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); + next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); + next.wing_mid_l.orientation = + Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(0.7); + next.wing_mid_r.orientation = + Quaternion::rotation_y(0.1) * Quaternion::rotation_z(-0.7); + + next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); + next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); + next.wing_out_l.orientation = + Quaternion::rotation_y(-0.2 + short * 0.05) * Quaternion::rotation_z(0.2); + next.wing_out_r.orientation = + Quaternion::rotation_y(0.2 + short * -0.05) * Quaternion::rotation_z(-0.2); + + next.leg_l.position = Vec3::new( + -s_a.leg.0, + s_a.leg.1 + foot1b * -2.3, + s_a.leg.2, + ) / 8.0; + next.leg_l.orientation = Quaternion::rotation_x(-0.2 * speednorm + foot1a * 0.15) + * Quaternion::rotation_y(tilt * 0.5); + + next.leg_r.position = Vec3::new( + s_a.leg.0, + s_a.leg.1 + foot2b * -2.3, + s_a.leg.2, + ) / 8.0; + next.leg_r.orientation = Quaternion::rotation_x(-0.2 * speednorm + foot2a * 0.15) + * Quaternion::rotation_y(tilt * 0.5); + } next } } diff --git a/voxygen/anim/src/bird_large/shockwave.rs b/voxygen/anim/src/bird_large/shockwave.rs index 4bac2d216a..b13f1c8608 100644 --- a/voxygen/anim/src/bird_large/shockwave.rs +++ b/voxygen/anim/src/bird_large/shockwave.rs @@ -38,12 +38,15 @@ impl Animation for ShockwaveAnimation { let wave_slow_cos = (anim_time * 4.5).cos(); - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + movement1abs * 1.5); next.chest.orientation = Quaternion::rotation_x(movement1abs * 1.0 + movement2abs * -1.0); diff --git a/voxygen/anim/src/bird_large/shoot.rs b/voxygen/anim/src/bird_large/shoot.rs index 17bf8b54c9..d85aab489c 100644 --- a/voxygen/anim/src/bird_large/shoot.rs +++ b/voxygen/anim/src/bird_large/shoot.rs @@ -43,12 +43,15 @@ impl Animation for ShootAnimation { let wave_slow_cos = (anim_time * 4.5).cos(); - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.chest.position = Vec3::new( 0.0, diff --git a/voxygen/anim/src/bird_large/stunned.rs b/voxygen/anim/src/bird_large/stunned.rs index 680da225ac..7cc6588862 100644 --- a/voxygen/anim/src/bird_large/stunned.rs +++ b/voxygen/anim/src/bird_large/stunned.rs @@ -37,12 +37,15 @@ impl Animation for StunnedAnimation { let twitch2 = mirror * (twitch * 20.0).sin() * pullback; let movement1abs = movement1base * pullback; - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06); next.chest.orientation = Quaternion::rotation_x(movement1base * 0.5); diff --git a/voxygen/anim/src/bird_large/swim.rs b/voxygen/anim/src/bird_large/swim.rs index 8535b06c47..a1299944f6 100644 --- a/voxygen/anim/src/bird_large/swim.rs +++ b/voxygen/anim/src/bird_large/swim.rs @@ -41,12 +41,15 @@ impl Animation for SwimAnimation { let wave_fast = (anim_time * 6.0).sin(); let wave_fast_cos = (anim_time * 6.0).cos(); - next.head.scale = Vec3::one() * 0.98; - next.neck.scale = Vec3::one() * 1.02; - next.leg_l.scale = Vec3::one() * 0.98; - next.leg_r.scale = Vec3::one() * 0.98; - next.foot_l.scale = Vec3::one() * 1.02; - next.foot_r.scale = Vec3::one() * 1.02; + next.head.scale = Vec3::one() * 0.99; + next.neck.scale = Vec3::one() * 1.01; + next.leg_l.scale = Vec3::one() / 8.0; + next.leg_r.scale = Vec3::one() / 8.0; + next.foot_l.scale = Vec3::one() * 1.01; + next.foot_r.scale = Vec3::one() * 1.01; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; + next.tail_front.scale = Vec3::one() * 1.01; + next.tail_rear.scale = Vec3::one() * 0.99; next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06 + 1.5); next.chest.orientation = Quaternion::rotation_x(0.0); From 7978b1682013396e44fe85128984128aff0c0b8d Mon Sep 17 00:00:00 2001 From: jshipsey Date: Sun, 5 Sep 2021 03:43:22 -0400 Subject: [PATCH 5/8] animation tweaks --- common/src/comp/body/bird_large.rs | 2 +- common/src/comp/inventory/loadout_builder.rs | 25 +----- voxygen/anim/src/bird_large/alpha.rs | 55 ++++++------- voxygen/anim/src/bird_large/breathe.rs | 57 +++++--------- voxygen/anim/src/bird_large/feed.rs | 10 --- voxygen/anim/src/bird_large/fly.rs | 8 +- voxygen/anim/src/bird_large/idle.rs | 13 ++-- voxygen/anim/src/bird_large/run.rs | 36 ++++----- voxygen/anim/src/bird_large/shockwave.rs | 10 --- voxygen/anim/src/bird_large/shoot.rs | 81 ++++++++------------ voxygen/anim/src/bird_large/stunned.rs | 10 --- voxygen/anim/src/bird_large/swim.rs | 4 +- voxygen/src/scene/figure/mod.rs | 4 + 13 files changed, 114 insertions(+), 201 deletions(-) diff --git a/common/src/comp/body/bird_large.rs b/common/src/comp/body/bird_large.rs index ca15f548fb..fdc2dfdec0 100644 --- a/common/src/comp/body/bird_large.rs +++ b/common/src/comp/body/bird_large.rs @@ -71,7 +71,7 @@ pub const ALL_SPECIES: [Species; 4] = [ Species::Cockatrice, Species::Roc, Species::FlameWyvern, - ]; +]; impl<'a, SpeciesMeta: 'a> IntoIterator for &'a AllSpecies { type IntoIter = std::iter::Copied>; diff --git a/common/src/comp/inventory/loadout_builder.rs b/common/src/comp/inventory/loadout_builder.rs index 773482a097..5af8102058 100644 --- a/common/src/comp/inventory/loadout_builder.rs +++ b/common/src/comp/inventory/loadout_builder.rs @@ -352,6 +352,9 @@ fn default_main_tool(body: &Body) -> Item { (bird_large::Species::Roc, _) => Some(Item::new_from_asset_expect( "common.items.npc_weapons.unique.birdlargebasic", )), + (bird_large::Species::FlameWyvern, _) => Some(Item::new_from_asset_expect( + "common.items.npc_weapons.unique.birdlargebreathe", + )), }, _ => None, }; @@ -447,28 +450,6 @@ impl LoadoutBuilder { quadruped_low::Species::Tortoise => { Some("common.items.npc_armor.quadruped_low.shell") }, - Body::BirdLarge(bird_large) => match (bird_large.species, bird_large.body_type) { - (bird_large::Species::Cockatrice, _) => { - main_tool = Some(Item::new_from_asset_expect( - "common.items.npc_weapons.unique.birdlargebreathe", - )); - }, - (bird_large::Species::Phoenix, _) => { - main_tool = Some(Item::new_from_asset_expect( - "common.items.npc_weapons.unique.birdlargefire", - )); - }, - (bird_large::Species::Roc, _) => { - main_tool = Some(Item::new_from_asset_expect( - "common.items.npc_weapons.unique.birdlargebasic", - )); - }, - (bird_large::Species::FlameWyvern, _) => { - main_tool = Some(Item::new_from_asset_expect( - "common.items.npc_weapons.unique.birdlargebreathe", - )); - }, - }, _ => None, }, Body::Theropod(body) => match body.species { diff --git a/voxygen/anim/src/bird_large/alpha.rs b/voxygen/anim/src/bird_large/alpha.rs index 0f4c77ed3c..f6e5cd592d 100644 --- a/voxygen/anim/src/bird_large/alpha.rs +++ b/voxygen/anim/src/bird_large/alpha.rs @@ -7,7 +7,7 @@ use common::states::utils::StageSection; pub struct AlphaAnimation; impl Animation for AlphaAnimation { - type Dependency<'a> = (Option, Vec3, Vec3, bool); + type Dependency<'a> = (Option, f32, f32, Vec3, Vec3, bool); type Skeleton = BirdLargeSkeleton; #[cfg(feature = "use-dyn-lib")] @@ -16,7 +16,7 @@ impl Animation for AlphaAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_large_alpha")] fn update_skeleton_inner<'a>( skeleton: &Self::Skeleton, - (stage_section, orientation, last_ori, on_ground): Self::Dependency<'a>, + (stage_section, global_time, timer, orientation, last_ori, on_ground): Self::Dependency<'a>, anim_time: f32, _rate: &mut f32, s_a: &SkeletonAttr, @@ -34,9 +34,13 @@ impl Animation for AlphaAnimation { let pullback = 1.0 - move3; + let subtract = global_time - timer; + let check = subtract - subtract.trunc(); + let mirror = (check - 0.5).signum(); + let move1 = move1base * pullback; let move2 = move2base * pullback; - + let move1mirror = move1base * pullback * mirror; let ori: Vec2 = Vec2::from(orientation); let last_ori = Vec2::from(last_ori); let tilt = if ::vek::Vec2::new(ori, last_ori) @@ -51,28 +55,25 @@ impl Animation for AlphaAnimation { 0.0 } * 1.3; - next.head.scale = Vec3::one() * 0.99; - next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; - next.foot_l.scale = Vec3::one() * 1.01; - next.foot_r.scale = Vec3::one() * 1.01; - next.chest.scale = Vec3::one() * s_a.scaler * 0.99; - next.tail_front.scale = Vec3::one() * 1.01; - next.tail_rear.scale = Vec3::one() * 0.99; - - next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06); + next.chest.position = Vec3::new( + 0.0, + s_a.chest.0, + s_a.chest.1 + wave_slow_cos * 0.06 + move2 * -6.0, + ); next.chest.orientation = Quaternion::rotation_x(move1 * 0.5 - move2 * 0.8); next.neck.position = Vec3::new(0.0, s_a.neck.0, s_a.neck.1); - next.neck.orientation = Quaternion::rotation_x(move1 * 0.5 - move2 * 0.8) - * Quaternion::rotation_z(move1 * tilt * 1.5); + next.neck.orientation = Quaternion::rotation_x(move1 * 0.5 - move2 * 0.4) + * Quaternion::rotation_z(move1 * tilt * 1.5) + * Quaternion::rotation_y(move1mirror * 0.3); next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); - next.head.orientation = Quaternion::rotation_x(move1 * 0.5 - move2 * 0.8); + next.head.orientation = Quaternion::rotation_x(move1 * -0.2 - move2 * 0.2) + * Quaternion::rotation_y(move1mirror * 0.5); next.beak.position = Vec3::new(0.0, s_a.beak.0, s_a.beak.1); - next.beak.orientation = Quaternion::rotation_x(wave_slow_cos * -0.02 - 0.02); + next.beak.orientation = + Quaternion::rotation_x(wave_slow_cos * -0.02 + move1 * -0.5 + move2 * 0.5); if on_ground { next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); @@ -84,23 +85,25 @@ impl Animation for AlphaAnimation { next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); next.wing_in_l.orientation = - Quaternion::rotation_y(-1.0 + wave_slow_cos * 0.06) * Quaternion::rotation_z(0.2); + Quaternion::rotation_y(-1.0 + wave_slow_cos * 0.06 + move1 * 1.0 + move2 * 0.5) + * Quaternion::rotation_z(0.2); next.wing_in_r.orientation = - Quaternion::rotation_y(1.0 - wave_slow_cos * 0.06) * Quaternion::rotation_z(-0.2); + Quaternion::rotation_y(1.0 - wave_slow_cos * 0.06 + move1 * -1.0 + move2 * -0.5) + * Quaternion::rotation_z(-0.2); next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); - next.wing_mid_l.orientation = - Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(0.7); - next.wing_mid_r.orientation = - Quaternion::rotation_y(0.1) * Quaternion::rotation_z(-0.7); + next.wing_mid_l.orientation = Quaternion::rotation_y(-0.1 + move1 * -0.5) + * Quaternion::rotation_z(0.7 + move1 * -0.7); + next.wing_mid_r.orientation = Quaternion::rotation_y(0.1 + move1 * 0.5) + * Quaternion::rotation_z(-0.7 + move1 * 0.7); next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); next.wing_out_l.orientation = - Quaternion::rotation_y(-0.2) * Quaternion::rotation_z(0.2); + Quaternion::rotation_y(-0.2 + move1 * -0.3) * Quaternion::rotation_z(0.2); next.wing_out_r.orientation = - Quaternion::rotation_y(0.2) * Quaternion::rotation_z(-0.2); + Quaternion::rotation_y(0.2 + move1 * 0.3) * Quaternion::rotation_z(-0.2); } else { } diff --git a/voxygen/anim/src/bird_large/breathe.rs b/voxygen/anim/src/bird_large/breathe.rs index 8740ac86d3..224369283e 100644 --- a/voxygen/anim/src/bird_large/breathe.rs +++ b/voxygen/anim/src/bird_large/breathe.rs @@ -7,6 +7,7 @@ use common::{states::utils::StageSection, util::Dir}; pub struct BreatheAnimation; type BreatheAnimationDependency = ( + Vec3, f32, Vec3, Vec3, @@ -26,7 +27,7 @@ impl Animation for BreatheAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_large_breathe")] fn update_skeleton_inner<'a>( skeleton: &Self::Skeleton, - (global_time, orientation, last_ori, stage_section, timer, look_dir, on_ground): Self::Dependency<'a>, + (velocity,global_time, _orientation, _last_ori, stage_section, timer, look_dir, on_ground): Self::Dependency<'a>, anim_time: f32, _rate: &mut f32, s_a: &SkeletonAttr, @@ -51,16 +52,6 @@ impl Animation for BreatheAnimation { let wave_slow_cos = (anim_time * 4.5).cos(); - next.head.scale = Vec3::one() * 0.99; - next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; - next.foot_l.scale = Vec3::one() * 1.01; - next.foot_r.scale = Vec3::one() * 1.01; - next.chest.scale = Vec3::one() * s_a.scaler * 0.99; - next.tail_front.scale = Vec3::one() * 1.01; - next.tail_rear.scale = Vec3::one() * 0.99; - next.chest.position = Vec3::new( 0.0, s_a.chest.0, @@ -68,7 +59,8 @@ impl Animation for BreatheAnimation { ); next.neck.position = Vec3::new(0.0, s_a.neck.0, s_a.neck.1); - next.neck.orientation = Quaternion::rotation_x(movement1abs * 0.5 - movement2abs * 0.5); + next.neck.orientation = + Quaternion::rotation_x(movement1abs * 0.8 - movement2abs * 0.5 + twitch2 * -0.02); next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); next.head.orientation = @@ -79,17 +71,19 @@ impl Animation for BreatheAnimation { if on_ground { next.chest.orientation = - Quaternion::rotation_x(movement1abs * 0.1 - movement2abs * 0.1); - + Quaternion::rotation_x(movement1abs * 0.2 - movement2abs * 0.5 + twitch2 * 0.03); + next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + movement2abs * -3.0); next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); next.wing_in_l.orientation = - Quaternion::rotation_y(-1.0 + movement1abs * 0.8 - movement2abs * 0.4) - * Quaternion::rotation_z(0.2 - movement1abs * 0.8 + movement2abs * 0.4); + Quaternion::rotation_y( + -1.0 + movement1abs * 0.8 - movement2abs * 0.4 + twitch2 * 0.03, + ) * Quaternion::rotation_z(0.2 - movement1abs * 0.8 + movement2abs * 0.4); next.wing_in_r.orientation = - Quaternion::rotation_y(1.0 - movement1abs * 0.8 + movement2abs * 0.4) - * Quaternion::rotation_z(-0.2 + movement1abs * 0.8 - movement2abs * 0.4); + Quaternion::rotation_y( + 1.0 - movement1abs * 0.8 + movement2abs * 0.4 + twitch2 * -0.03, + ) * Quaternion::rotation_z(-0.2 + movement1abs * 0.8 - movement2abs * 0.4); next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); @@ -107,28 +101,19 @@ impl Animation for BreatheAnimation { next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); next.tail_front.orientation = - Quaternion::rotation_x(-movement1abs * 0.1 + movement2abs * 0.1 + twitch2 * 0.02); + Quaternion::rotation_x(-movement1abs * 0.1 + movement2abs * 0.1 + twitch2 * 0.1); next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); next.tail_rear.orientation = - Quaternion::rotation_x(-movement1abs * 0.1 + movement2abs * 0.1 + twitch2 * 0.02); + Quaternion::rotation_x(-movement1abs * 0.1 + movement2abs * 0.1 + twitch2 * -0.2); } else { - let ori: Vec2 = Vec2::from(orientation); - let last_ori = Vec2::from(last_ori); - let tilt = if ::vek::Vec2::new(ori, last_ori) - .map(|o| o.magnitude_squared()) - .map(|m| m > 0.001 && m.is_finite()) - .reduce_and() - && ori.angle_between(last_ori).is_finite() - { - ori.angle_between(last_ori).min(0.2) - * last_ori.determine_side(Vec2::zero(), ori).signum() - } else { - 0.0 - } * 1.3; + if velocity.xy().magnitude() < 1.0 { + next.neck.orientation = + Quaternion::rotation_x(movement1abs * -0.4 - movement2abs * 0.5); - next.chest.orientation = - Quaternion::rotation_x(movement1abs * 0.1 - movement2abs * 0.1) - * Quaternion::rotation_y(tilt * 1.8); + next.head.orientation = Quaternion::rotation_x( + movement1abs * 0.5 - movement2abs * 0.5 + look_dir.z * 0.4, + ); + }; } next diff --git a/voxygen/anim/src/bird_large/feed.rs b/voxygen/anim/src/bird_large/feed.rs index 71e966add9..d9a0b8aec3 100644 --- a/voxygen/anim/src/bird_large/feed.rs +++ b/voxygen/anim/src/bird_large/feed.rs @@ -39,16 +39,6 @@ impl Animation for FeedAnimation { let wave_fast = (anim_time * 9.0).cos(); let beak = (anim_time * 16.0).sin(); - next.head.scale = Vec3::one() * 0.99; - next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; - next.foot_l.scale = Vec3::one() * 1.01; - next.foot_r.scale = Vec3::one() * 1.01; - next.chest.scale = Vec3::one() * s_a.scaler * 0.99; - next.tail_front.scale = Vec3::one() * 1.01; - next.tail_rear.scale = Vec3::one() * 0.99; - next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06 - 1.8); next.chest.orientation = Quaternion::rotation_x(s_a.feed); diff --git a/voxygen/anim/src/bird_large/fly.rs b/voxygen/anim/src/bird_large/fly.rs index b39bab980a..daba5c33ea 100644 --- a/voxygen/anim/src/bird_large/fly.rs +++ b/voxygen/anim/src/bird_large/fly.rs @@ -26,7 +26,7 @@ impl Animation for FlyAnimation { let fast = (anim_time * 4.0).sin(); // Harmonic series hack to get a sine/saw mix - let freq = if s_a.wyvern {6.0} else {8.0}; + let freq = if s_a.wyvern { 6.0 } else { 8.0 }; let off1 = 0.0; let off2 = -1.7; let off3 = -2.0; @@ -60,11 +60,11 @@ impl Animation for FlyAnimation { next.head.scale = Vec3::one() * 0.99; next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; + next.leg_l.scale = Vec3::one(); + next.leg_r.scale = Vec3::one(); next.foot_l.scale = Vec3::one() * 1.01; next.foot_r.scale = Vec3::one() * 1.01; - next.chest.scale = Vec3::one() * s_a.scaler * 0.99; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; next.tail_front.scale = Vec3::one() * 1.01; next.tail_rear.scale = Vec3::one() * 0.99; diff --git a/voxygen/anim/src/bird_large/idle.rs b/voxygen/anim/src/bird_large/idle.rs index 505f032398..077af67474 100644 --- a/voxygen/anim/src/bird_large/idle.rs +++ b/voxygen/anim/src/bird_large/idle.rs @@ -39,11 +39,11 @@ impl Animation for IdleAnimation { next.head.scale = Vec3::one() * 0.99; next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; + next.leg_l.scale = Vec3::one(); + next.leg_r.scale = Vec3::one(); next.foot_l.scale = Vec3::one() * 1.01; next.foot_r.scale = Vec3::one() * 1.01; - next.chest.scale = Vec3::one() * s_a.scaler / 8.0 * 0.99; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; next.tail_front.scale = Vec3::one() * 1.01; next.tail_rear.scale = Vec3::one() * 0.99; @@ -53,7 +53,7 @@ impl Animation for IdleAnimation { next.beak.position = Vec3::new(0.0, s_a.beak.0, s_a.beak.1); next.beak.orientation = Quaternion::rotation_x(wave_slow_cos * -0.02 - 0.02); - next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1, s_a.leg.2) / 8.0; + next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1, s_a.leg.2); next.leg_l.orientation = Quaternion::rotation_x(0.0); next.leg_r.position = Vec3::new(s_a.leg.0, s_a.leg.1, s_a.leg.2); next.leg_r.orientation = Quaternion::rotation_x(0.0); @@ -65,7 +65,7 @@ impl Animation for IdleAnimation { if s_a.wyvern { next.chest.position = - Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06) * s_a.scaler / 8.0; + Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06) * s_a.scaler; next.chest.orientation = Quaternion::rotation_x(-0.1); next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); @@ -104,8 +104,7 @@ impl Animation for IdleAnimation { * Quaternion::rotation_z(-0.55); } else { next.chest.position = - Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06 + 1.5) * s_a.scaler - / 8.0; + Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06 + 1.5) * s_a.scaler; next.chest.orientation = Quaternion::rotation_x(0.0); next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); diff --git a/voxygen/anim/src/bird_large/run.rs b/voxygen/anim/src/bird_large/run.rs index 89278109bd..2e9e7fbb98 100644 --- a/voxygen/anim/src/bird_large/run.rs +++ b/voxygen/anim/src/bird_large/run.rs @@ -67,11 +67,11 @@ impl Animation for RunAnimation { next.head.scale = Vec3::one() * 0.99; next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; + next.leg_l.scale = Vec3::one(); + next.leg_r.scale = Vec3::one(); next.foot_l.scale = Vec3::one() * 1.01; next.foot_r.scale = Vec3::one() * 1.01; - next.chest.scale = Vec3::one() * s_a.scaler* 0.99; + next.chest.scale = Vec3::one() * s_a.scaler * 0.99; next.tail_front.scale = Vec3::one() * 1.01; next.tail_rear.scale = Vec3::one() * 0.99; @@ -93,7 +93,7 @@ impl Animation for RunAnimation { s_a.foot.1 + foot1b * -1.0, s_a.foot.2 + (foot1a * 1.5).max(0.0), ); - next.foot_l.orientation = Quaternion::rotation_x(0.2 * speednorm + foot1b * -0.5 + 0.1) + next.foot_l.orientation = Quaternion::rotation_x(0.2 * speednorm + foot1b * -0.8 + 0.1) * Quaternion::rotation_y(tilt * -1.0) * Quaternion::rotation_z(tilt * -0.5); @@ -102,7 +102,7 @@ impl Animation for RunAnimation { s_a.foot.1 + foot2b * -1.0, s_a.foot.2 + (foot2a * 1.5).max(0.0), ); - next.foot_r.orientation = Quaternion::rotation_x(0.2 * speednorm + foot2b * -0.5 + 0.1) + next.foot_r.orientation = Quaternion::rotation_x(0.2 * speednorm + foot2b * -0.8 + 0.1) * Quaternion::rotation_y(tilt * -1.0) * Quaternion::rotation_z(tilt * -0.5); @@ -111,8 +111,7 @@ impl Animation for RunAnimation { 0.0, s_a.chest.0, s_a.chest.1 + short * 0.5 + speednorm * -2.0, - ) * s_a.scaler - / 8.0; + ) * s_a.scaler; next.chest.orientation = Quaternion::rotation_x(-0.1 + short * 0.07) * Quaternion::rotation_y(tilt * 0.8) * Quaternion::rotation_z(shortalt * 0.10); @@ -162,16 +161,16 @@ impl Animation for RunAnimation { next.leg_l.position = Vec3::new( -s_a.leg.0, s_a.leg.1 + foot1b * -2.3, - s_a.leg.2, - ) / 8.0; + s_a.leg.2 + foot2b * -1.5, + ); next.leg_l.orientation = Quaternion::rotation_x(-1.0 * speednorm + foot1a * 0.15) * Quaternion::rotation_y(tilt * 0.5); next.leg_r.position = Vec3::new( s_a.leg.0, s_a.leg.1 + foot2b * -2.3, - s_a.leg.2, - ) / 8.0; + s_a.leg.2 + foot1b * -1.5, + ); next.leg_r.orientation = Quaternion::rotation_x(-1.0 * speednorm + foot2a * 0.15) * Quaternion::rotation_y(tilt * 0.5); } else { @@ -179,8 +178,7 @@ impl Animation for RunAnimation { 0.0, s_a.chest.0, s_a.chest.1 + short * 0.5 + 0.5 * speednorm, - ) * s_a.scaler - / 8.0; + ) * s_a.scaler; next.chest.orientation = Quaternion::rotation_x(short * 0.07) * Quaternion::rotation_y(tilt * 0.8) * Quaternion::rotation_z(shortalt * 0.10); @@ -211,19 +209,11 @@ impl Animation for RunAnimation { next.wing_out_r.orientation = Quaternion::rotation_y(0.2 + short * -0.05) * Quaternion::rotation_z(-0.2); - next.leg_l.position = Vec3::new( - -s_a.leg.0, - s_a.leg.1 + foot1b * -2.3, - s_a.leg.2, - ) / 8.0; + next.leg_l.position = Vec3::new(-s_a.leg.0, s_a.leg.1 + foot1b * -2.3, s_a.leg.2); next.leg_l.orientation = Quaternion::rotation_x(-0.2 * speednorm + foot1a * 0.15) * Quaternion::rotation_y(tilt * 0.5); - next.leg_r.position = Vec3::new( - s_a.leg.0, - s_a.leg.1 + foot2b * -2.3, - s_a.leg.2, - ) / 8.0; + next.leg_r.position = Vec3::new(s_a.leg.0, s_a.leg.1 + foot2b * -2.3, s_a.leg.2); next.leg_r.orientation = Quaternion::rotation_x(-0.2 * speednorm + foot2a * 0.15) * Quaternion::rotation_y(tilt * 0.5); } diff --git a/voxygen/anim/src/bird_large/shockwave.rs b/voxygen/anim/src/bird_large/shockwave.rs index b13f1c8608..55305741da 100644 --- a/voxygen/anim/src/bird_large/shockwave.rs +++ b/voxygen/anim/src/bird_large/shockwave.rs @@ -38,16 +38,6 @@ impl Animation for ShockwaveAnimation { let wave_slow_cos = (anim_time * 4.5).cos(); - next.head.scale = Vec3::one() * 0.99; - next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; - next.foot_l.scale = Vec3::one() * 1.01; - next.foot_r.scale = Vec3::one() * 1.01; - next.chest.scale = Vec3::one() * s_a.scaler * 0.99; - next.tail_front.scale = Vec3::one() * 1.01; - next.tail_rear.scale = Vec3::one() * 0.99; - next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + movement1abs * 1.5); next.chest.orientation = Quaternion::rotation_x(movement1abs * 1.0 + movement2abs * -1.0); diff --git a/voxygen/anim/src/bird_large/shoot.rs b/voxygen/anim/src/bird_large/shoot.rs index d85aab489c..077db9a61b 100644 --- a/voxygen/anim/src/bird_large/shoot.rs +++ b/voxygen/anim/src/bird_large/shoot.rs @@ -6,7 +6,7 @@ use common::{states::utils::StageSection, util::Dir}; pub struct ShootAnimation; -type ShootAnimationDependency = (f32, Option, f32, Dir, bool); +type ShootAnimationDependency = (Vec3, f32, Option, f32, Dir, bool); impl Animation for ShootAnimation { type Dependency<'a> = ShootAnimationDependency; @@ -18,18 +18,17 @@ impl Animation for ShootAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_large_shoot")] fn update_skeleton_inner<'a>( skeleton: &Self::Skeleton, - (global_time, stage_section, timer, look_dir, on_ground): Self::Dependency<'a>, + (velocity, global_time, stage_section, timer, look_dir, on_ground): Self::Dependency<'a>, anim_time: f32, _rate: &mut f32, s_a: &SkeletonAttr, ) -> Self::Skeleton { let mut next = (*skeleton).clone(); - let (movement1base, movement2base, movement3, twitch) = match stage_section { - Some(StageSection::Buildup) => (anim_time.powf(0.25), 0.0, 0.0, 0.0), - Some(StageSection::Action) => (1.0, anim_time.min(1.0).powf(0.1), 0.0, anim_time), - Some(StageSection::Recover) => (1.0, 1.0, anim_time, 1.0), - _ => (0.0, 0.0, 0.0, 0.0), + let (movement1base, movement3, twitch) = match stage_section { + Some(StageSection::Buildup) => (anim_time.powf(0.25), 0.0, 0.0), + Some(StageSection::Recover) => (1.0, anim_time.powf(0.25), anim_time), + _ => (0.0, 0.0, 0.0), }; let pullback = 1.0 - movement3; @@ -37,22 +36,11 @@ impl Animation for ShootAnimation { let check = subtract - subtract.trunc(); let mirror = (check - 0.5).signum(); let twitch2 = mirror * (twitch * 20.0).sin() * pullback; - let movement1abs = movement1base * pullback; - let movement2abs = movement2base * pullback; + let movement1mirror = movement1abs * mirror; let wave_slow_cos = (anim_time * 4.5).cos(); - next.head.scale = Vec3::one() * 0.99; - next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; - next.foot_l.scale = Vec3::one() * 1.01; - next.foot_r.scale = Vec3::one() * 1.01; - next.chest.scale = Vec3::one() * s_a.scaler * 0.99; - next.tail_front.scale = Vec3::one() * 1.01; - next.tail_rear.scale = Vec3::one() * 0.99; - next.chest.position = Vec3::new( 0.0, s_a.chest.0, @@ -61,51 +49,44 @@ impl Animation for ShootAnimation { next.head.position = Vec3::new(0.0, s_a.head.0, s_a.head.1); next.head.orientation = - Quaternion::rotation_x(movement1abs * 0.5 - movement2abs * 0.5 + look_dir.z * 0.4); + Quaternion::rotation_x(movement1abs * 0.5 + look_dir.z * 0.4 + twitch2) + * Quaternion::rotation_y(movement1mirror * 0.5); next.beak.position = Vec3::new(0.0, s_a.beak.0, s_a.beak.1); next.beak.orientation = Quaternion::rotation_x(movement1abs * -0.7 + twitch2 * 0.1); if on_ground { + next.chest.position = Vec3::new( + 0.0, + s_a.chest.0, + s_a.chest.1 + wave_slow_cos * 0.06 + twitch2 * 0.1 + movement1abs * -3.0, + ); next.neck.position = Vec3::new(0.0, s_a.neck.0, s_a.neck.1); - next.neck.orientation = Quaternion::rotation_x(movement1abs * 0.5 - movement2abs * 0.5); + next.neck.orientation = Quaternion::rotation_x(movement1abs * 0.5) + * Quaternion::rotation_y(movement1mirror * 0.2); - next.chest.orientation = - Quaternion::rotation_x(movement1abs * 0.1 - movement2abs * 0.1); - - next.wing_in_l.position = Vec3::new(-s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); - next.wing_in_r.position = Vec3::new(s_a.wing_in.0, s_a.wing_in.1, s_a.wing_in.2); - - next.wing_in_l.orientation = - Quaternion::rotation_y(-1.0 + movement1abs * 0.8 - movement2abs * 0.4) - * Quaternion::rotation_z(0.2 - movement1abs * 0.8 + movement2abs * 0.4); - next.wing_in_r.orientation = - Quaternion::rotation_y(1.0 - movement1abs * 0.8 + movement2abs * 0.4) - * Quaternion::rotation_z(-0.2 + movement1abs * 0.8 - movement2abs * 0.4); - - next.wing_mid_l.position = Vec3::new(-s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); - next.wing_mid_r.position = Vec3::new(s_a.wing_mid.0, s_a.wing_mid.1, s_a.wing_mid.2); - next.wing_mid_l.orientation = - Quaternion::rotation_y(-0.1) * Quaternion::rotation_z(0.7); - next.wing_mid_r.orientation = - Quaternion::rotation_y(0.1) * Quaternion::rotation_z(-0.7); - - next.wing_out_l.position = Vec3::new(-s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_r.position = Vec3::new(s_a.wing_out.0, s_a.wing_out.1, s_a.wing_out.2); - next.wing_out_l.orientation = - Quaternion::rotation_y(-0.2) * Quaternion::rotation_z(0.2); - next.wing_out_r.orientation = - Quaternion::rotation_y(0.2) * Quaternion::rotation_z(-0.2); + next.chest.orientation = Quaternion::rotation_x(movement1abs * 0.1); next.tail_front.position = Vec3::new(0.0, s_a.tail_front.0, s_a.tail_front.1); next.tail_front.orientation = - Quaternion::rotation_x(-movement1abs * 0.1 + movement2abs * 0.1 + twitch2 * 0.02); + Quaternion::rotation_x(-movement1abs * 0.1 + twitch2 * 0.02); next.tail_rear.position = Vec3::new(0.0, s_a.tail_rear.0, s_a.tail_rear.1); next.tail_rear.orientation = - Quaternion::rotation_x(-movement1abs * 0.1 + movement2abs * 0.1 + twitch2 * 0.02); + Quaternion::rotation_x(-movement1abs * 0.1 + twitch2 * 0.02); + + next.leg_l.orientation = Quaternion::rotation_x(movement1abs * -0.5); + next.leg_r.orientation = Quaternion::rotation_x(movement1abs * -0.5); + + next.foot_l.orientation = Quaternion::rotation_x(movement1abs * 0.3); + next.foot_r.orientation = Quaternion::rotation_x(movement1abs * 0.3); } else { } - + if velocity.xy().magnitude() < 1.0 { + next.wing_in_l.orientation = Quaternion::rotation_y(-1.0 + movement1abs * 0.8) + * Quaternion::rotation_z(0.2 - movement1abs * 0.8); + next.wing_in_r.orientation = Quaternion::rotation_y(1.0 - movement1abs * 0.8) + * Quaternion::rotation_z(-0.2 + movement1abs * 0.8); + }; next } } diff --git a/voxygen/anim/src/bird_large/stunned.rs b/voxygen/anim/src/bird_large/stunned.rs index 7cc6588862..5e27c654f9 100644 --- a/voxygen/anim/src/bird_large/stunned.rs +++ b/voxygen/anim/src/bird_large/stunned.rs @@ -37,16 +37,6 @@ impl Animation for StunnedAnimation { let twitch2 = mirror * (twitch * 20.0).sin() * pullback; let movement1abs = movement1base * pullback; - next.head.scale = Vec3::one() * 0.99; - next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; - next.foot_l.scale = Vec3::one() * 1.01; - next.foot_r.scale = Vec3::one() * 1.01; - next.chest.scale = Vec3::one() * s_a.scaler * 0.99; - next.tail_front.scale = Vec3::one() * 1.01; - next.tail_rear.scale = Vec3::one() * 0.99; - next.chest.position = Vec3::new(0.0, s_a.chest.0, s_a.chest.1 + wave_slow_cos * 0.06); next.chest.orientation = Quaternion::rotation_x(movement1base * 0.5); diff --git a/voxygen/anim/src/bird_large/swim.rs b/voxygen/anim/src/bird_large/swim.rs index a1299944f6..9c809bdd6a 100644 --- a/voxygen/anim/src/bird_large/swim.rs +++ b/voxygen/anim/src/bird_large/swim.rs @@ -43,8 +43,8 @@ impl Animation for SwimAnimation { next.head.scale = Vec3::one() * 0.99; next.neck.scale = Vec3::one() * 1.01; - next.leg_l.scale = Vec3::one() / 8.0; - next.leg_r.scale = Vec3::one() / 8.0; + next.leg_l.scale = Vec3::one(); + next.leg_r.scale = Vec3::one(); next.foot_l.scale = Vec3::one() * 1.01; next.foot_r.scale = Vec3::one() * 1.01; next.chest.scale = Vec3::one() * s_a.scaler * 0.99; diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 9c409129f5..97bc171988 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -3427,6 +3427,7 @@ impl FigureMgr { anim::bird_large::BreatheAnimation::update_skeleton( &target_base, ( + rel_vel, time, ori * anim::vek::Vec3::::unit_y(), state.last_ori * anim::vek::Vec3::::unit_y(), @@ -3465,6 +3466,8 @@ impl FigureMgr { &target_base, ( Some(s.stage_section), + time, + state.state_time, ori * anim::vek::Vec3::::unit_y(), state.last_ori * anim::vek::Vec3::::unit_y(), physics.on_ground.is_some(), @@ -3490,6 +3493,7 @@ impl FigureMgr { anim::bird_large::ShootAnimation::update_skeleton( &target_base, ( + rel_vel, time, Some(s.stage_section), state.state_time, From 46021c31bd656e3a4d8f02003866bccf2ec7a0c0 Mon Sep 17 00:00:00 2001 From: Snowram Date: Thu, 16 Sep 2021 01:25:00 +0200 Subject: [PATCH 6/8] Bird large beam offset hack --- common/src/comp/inventory/loadout_builder.rs | 9 ++--- common/src/states/basic_beam.rs | 35 ++++++++++++++++---- server/src/sys/agent.rs | 3 ++ voxygen/anim/src/bird_large/breathe.rs | 16 +++++---- voxygen/anim/src/bird_large/mod.rs | 5 +-- 5 files changed, 44 insertions(+), 24 deletions(-) diff --git a/common/src/comp/inventory/loadout_builder.rs b/common/src/comp/inventory/loadout_builder.rs index 5af8102058..24446d138d 100644 --- a/common/src/comp/inventory/loadout_builder.rs +++ b/common/src/comp/inventory/loadout_builder.rs @@ -343,18 +343,15 @@ fn default_main_tool(body: &Body) -> Item { )), }, Body::BirdLarge(bird_large) => match (bird_large.species, bird_large.body_type) { - (bird_large::Species::Cockatrice, _) => Some(Item::new_from_asset_expect( - "common.items.npc_weapons.unique.birdlargebreathe", - )), + (bird_large::Species::Cockatrice | bird_large::Species::FlameWyvern, _) => Some( + Item::new_from_asset_expect("common.items.npc_weapons.unique.birdlargebreathe"), + ), (bird_large::Species::Phoenix, _) => Some(Item::new_from_asset_expect( "common.items.npc_weapons.unique.birdlargefire", )), (bird_large::Species::Roc, _) => Some(Item::new_from_asset_expect( "common.items.npc_weapons.unique.birdlargebasic", )), - (bird_large::Species::FlameWyvern, _) => Some(Item::new_from_asset_expect( - "common.items.npc_weapons.unique.birdlargebreathe", - )), }, _ => None, }; diff --git a/common/src/states/basic_beam.rs b/common/src/states/basic_beam.rs index d67604fdc9..ffa0e2f14c 100644 --- a/common/src/states/basic_beam.rs +++ b/common/src/states/basic_beam.rs @@ -12,6 +12,7 @@ use crate::{ behavior::{CharacterBehavior, JoinData}, utils::*, }, + terrain::Block, uid::Uid, util::Dir, }; @@ -160,9 +161,16 @@ impl CharacterBehavior for Data { )) .prerotated(pitch) }; + // Velocity relative to the current ground + let rel_vel = data.vel.0 - data.physics.ground_vel; // Gets offsets - let body_offsets = - beam_offsets(data.body, data.inputs.look_dir, update.ori.look_vec()); + let body_offsets = beam_offsets( + data.body, + data.inputs.look_dir, + update.ori.look_vec(), + rel_vel, + data.physics.on_ground, + ); let pos = Pos(data.pos.0 + body_offsets); // Create beam segment @@ -219,9 +227,17 @@ impl CharacterBehavior for Data { } } -fn height_offset(body: &Body, look_dir: Dir) -> f32 { +fn height_offset(body: &Body, look_dir: Dir, velocity: Vec3, on_ground: Option) -> f32 { match body { - Body::BirdLarge(_) => body.height() * 0.8, + // Hack to make the beam offset correspond to the animation + Body::BirdLarge(_) => { + body.height() * 0.3 + + if on_ground.is_none() { + (2.0 - velocity.xy().magnitude() * 0.25).max(-1.0) + } else { + 0.0 + } + }, Body::Golem(_) => { const DIR_COEFF: f32 = 2.0; body.height() * 0.9 + look_dir.z * DIR_COEFF @@ -234,10 +250,15 @@ fn height_offset(body: &Body, look_dir: Dir) -> f32 { } } -pub fn beam_offsets(body: &Body, look_dir: Dir, ori: Vec3) -> Vec3 { +pub fn beam_offsets( + body: &Body, + look_dir: Dir, + ori: Vec3, + velocity: Vec3, + on_ground: Option, +) -> Vec3 { let body_radius = body.min_radius(); - let body_offsets_z = height_offset(body, look_dir); - + let body_offsets_z = height_offset(body, look_dir, velocity, on_ground); Vec3::new( body_radius * ori.x * 1.1, body_radius * ori.y * 1.1, diff --git a/server/src/sys/agent.rs b/server/src/sys/agent.rs index 9aaaaa94e9..bab6cdb37b 100644 --- a/server/src/sys/agent.rs +++ b/server/src/sys/agent.rs @@ -1884,6 +1884,9 @@ impl<'a> AgentData<'a> { body, controller.inputs.look_dir, self.ori.look_vec(), + // Try to match animation by getting some context + self.vel.0 - self.physics_state.ground_vel, + self.physics_state.on_ground, ) }); let aim_to = Vec3::new( diff --git a/voxygen/anim/src/bird_large/breathe.rs b/voxygen/anim/src/bird_large/breathe.rs index 224369283e..1c5708d4d9 100644 --- a/voxygen/anim/src/bird_large/breathe.rs +++ b/voxygen/anim/src/bird_large/breathe.rs @@ -106,14 +106,16 @@ impl Animation for BreatheAnimation { next.tail_rear.orientation = Quaternion::rotation_x(-movement1abs * 0.1 + movement2abs * 0.1 + twitch2 * -0.2); } else { - if velocity.xy().magnitude() < 1.0 { - next.neck.orientation = - Quaternion::rotation_x(movement1abs * -0.4 - movement2abs * 0.5); + next.neck.orientation = Quaternion::rotation_x( + movement1abs * -0.4 + + movement2abs * (-0.5 + velocity.xy().magnitude() * 0.2).min(0.0), + ); - next.head.orientation = Quaternion::rotation_x( - movement1abs * 0.5 - movement2abs * 0.5 + look_dir.z * 0.4, - ); - }; + next.head.orientation = Quaternion::rotation_x( + movement1abs * 0.5 + + movement2abs * (-0.5 + velocity.xy().magnitude() * 0.2).min(0.0) + + look_dir.z * 0.4, + ); } next diff --git a/voxygen/anim/src/bird_large/mod.rs b/voxygen/anim/src/bird_large/mod.rs index b8363215e3..31569d6fd8 100644 --- a/voxygen/anim/src/bird_large/mod.rs +++ b/voxygen/anim/src/bird_large/mod.rs @@ -241,10 +241,7 @@ impl<'a> From<&'a Body> for SkeletonAttr { (Roc, _) => (-0.4), (FlameWyvern, _) => (-0.65), }, - wyvern: match (body.species, body.body_type) { - (FlameWyvern, _) => true, - _ => false, - }, + wyvern: matches!((body.species, body.body_type), (FlameWyvern, _)), } } } From 5574554eda8187c8a9c27c16d7f2559378d9af69 Mon Sep 17 00:00:00 2001 From: Snowram Date: Sat, 18 Sep 2021 14:47:06 +0200 Subject: [PATCH 7/8] Set beam offset depending on body dimensions --- common/src/comp/body.rs | 8 -------- common/src/states/basic_beam.rs | 11 ++++++++++- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/common/src/comp/body.rs b/common/src/comp/body.rs index ecc6bc3ac2..fe389bae7e 100644 --- a/common/src/comp/body.rs +++ b/common/src/comp/body.rs @@ -147,14 +147,6 @@ impl< const EXTENSION: &'static str = "ron"; } -// Utility enum used to build Stadium points -// Read doc for [Body::sausage] for more. -// -// Actually can be removed I guess? -// We can just determine shape form dimensions. -// -// But I want Dachshund in Veloren at least somewhere XD - impl Body { pub fn is_humanoid(&self) -> bool { matches!(self, Body::Humanoid(_)) } diff --git a/common/src/states/basic_beam.rs b/common/src/states/basic_beam.rs index ffa0e2f14c..a9da6c3f24 100644 --- a/common/src/states/basic_beam.rs +++ b/common/src/states/basic_beam.rs @@ -257,7 +257,16 @@ pub fn beam_offsets( velocity: Vec3, on_ground: Option, ) -> Vec3 { - let body_radius = body.min_radius(); + let dim = body.dimensions(); + // The width (shoulder to shoulder) and length (nose to tail) + let (width, length) = (dim.x, dim.y); + let body_radius = if length > width { + // Dachshund-like + body.max_radius() + } else { + // Cyclops-like + body.min_radius() + }; let body_offsets_z = height_offset(body, look_dir, velocity, on_ground); Vec3::new( body_radius * ori.x * 1.1, From 8d88a29a4b228b0059b180a515c2b1efc9617119 Mon Sep 17 00:00:00 2001 From: Snowram Date: Tue, 21 Sep 2021 01:19:34 +0200 Subject: [PATCH 8/8] Adds Xtilt to BirdLarge skeleton --- voxygen/anim/src/bird_large/run.rs | 13 +++++++------ voxygen/src/scene/figure/mod.rs | 4 ++++ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/voxygen/anim/src/bird_large/run.rs b/voxygen/anim/src/bird_large/run.rs index 2e9e7fbb98..b2909c201d 100644 --- a/voxygen/anim/src/bird_large/run.rs +++ b/voxygen/anim/src/bird_large/run.rs @@ -7,7 +7,7 @@ use core::f32::consts::PI; pub struct RunAnimation; impl Animation for RunAnimation { - type Dependency<'a> = (Vec3, Vec3, Vec3, f32); + type Dependency<'a> = (Vec3, Vec3, Vec3, Vec3, f32); type Skeleton = BirdLargeSkeleton; #[cfg(feature = "use-dyn-lib")] @@ -16,7 +16,7 @@ impl Animation for RunAnimation { #[cfg_attr(feature = "be-dyn-lib", export_name = "bird_large_run")] fn update_skeleton_inner<'a>( skeleton: &Self::Skeleton, - (velocity, orientation, last_ori, acc_vel): Self::Dependency<'a>, + (velocity, orientation, last_ori, avg_vel, acc_vel): Self::Dependency<'a>, anim_time: f32, rate: &mut f32, s_a: &SkeletonAttr, @@ -64,6 +64,7 @@ impl Animation for RunAnimation { } else { 0.0 } * 1.3; + let x_tilt = avg_vel.z.atan2(avg_vel.xy().magnitude()) * speednorm; next.head.scale = Vec3::one() * 0.99; next.neck.scale = Vec3::one() * 1.01; @@ -110,9 +111,9 @@ impl Animation for RunAnimation { next.chest.position = Vec3::new( 0.0, s_a.chest.0, - s_a.chest.1 + short * 0.5 + speednorm * -2.0, + s_a.chest.1 + short * 0.5 + x_tilt * 10.0 + speednorm * -2.0, ) * s_a.scaler; - next.chest.orientation = Quaternion::rotation_x(-0.1 + short * 0.07) + next.chest.orientation = Quaternion::rotation_x(-0.1 + short * 0.07 + x_tilt) * Quaternion::rotation_y(tilt * 0.8) * Quaternion::rotation_z(shortalt * 0.10); @@ -177,9 +178,9 @@ impl Animation for RunAnimation { next.chest.position = Vec3::new( 0.0, s_a.chest.0, - s_a.chest.1 + short * 0.5 + 0.5 * speednorm, + s_a.chest.1 + short * 0.5 + x_tilt * 10.0 + 0.5 * speednorm, ) * s_a.scaler; - next.chest.orientation = Quaternion::rotation_x(short * 0.07) + next.chest.orientation = Quaternion::rotation_x(short * 0.07 + x_tilt) * Quaternion::rotation_y(tilt * 0.8) * Quaternion::rotation_z(shortalt * 0.10); diff --git a/voxygen/src/scene/figure/mod.rs b/voxygen/src/scene/figure/mod.rs index 97bc171988..e0d87e8fc0 100644 --- a/voxygen/src/scene/figure/mod.rs +++ b/voxygen/src/scene/figure/mod.rs @@ -3336,6 +3336,9 @@ impl FigureMgr { FigureState::new(renderer, BirdLargeSkeleton::default(), body) }); + // Average velocity relative to the current ground + let rel_avg_vel = state.avg_vel - physics.ground_vel; + let (character, last_character) = match (character, last_character) { (Some(c), Some(l)) => (c, l), _ => continue, @@ -3366,6 +3369,7 @@ impl FigureMgr { // TODO: Update to use the quaternion. ori * anim::vek::Vec3::::unit_y(), state.last_ori * anim::vek::Vec3::::unit_y(), + rel_avg_vel, state.acc_vel, ), state.state_time,