From 2c5038ad058cff4219b09ce5b6c7c113e7d43fe7 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 5 Mar 2019 01:50:51 +0100 Subject: [PATCH] Player skins: Adjust inventory preview image, too --- mods/HUD/mcl_inventory/creative.lua | 14 ++++-- mods/HUD/mcl_inventory/depends.txt | 1 + mods/HUD/mcl_inventory/init.lua | 15 ++++-- mods/PLAYER/mcl_player/init.lua | 14 +++++- mods/PLAYER/simple_skins/init.lua | 47 +++++++++--------- .../PLAYER/simple_skins/textures/player_1.png | Bin 0 -> 2625 bytes 6 files changed, 59 insertions(+), 32 deletions(-) create mode 100644 mods/PLAYER/simple_skins/textures/player_1.png diff --git a/mods/HUD/mcl_inventory/creative.lua b/mods/HUD/mcl_inventory/creative.lua index dd5d0bd8..f2afb964 100644 --- a/mods/HUD/mcl_inventory/creative.lua +++ b/mods/HUD/mcl_inventory/creative.lua @@ -4,6 +4,9 @@ local players = {} -- Containing all the items for each Creative Mode tab local inventory_lists = {} +local show_armor = minetest.get_modpath("3d_armor") ~= nil +local mod_player = minetest.get_modpath("mcl_player") ~= nil + -- TODO: Brewing is disabled. Add brewing (uncommented code) when it is implemented properly -- Create tables @@ -271,15 +274,20 @@ mcl_inventory.set_creative_formspec = function(player, start_i, pagenum, inv_siz inv_bg = "crafting_inventory_creative_survival.png" -- Show armor and player image - local show_armor = minetest.get_modpath("3d_armor") - local img = "player.png" + local img, img_player + if mod_player then + img_player = mcl_player.player_get_preview(player) + else + img_player = "player.png" + end + img = img_player local player_preview = "image[3.9,1.4;1.2333,2.4666;"..img.."]" if show_armor and armor.textures[playername] and armor.textures[playername].preview then img = armor.textures[playername].preview local s1 = img:find("character_preview") if s1 ~= nil then s1 = img:sub(s1+21) - img = "player.png"..s1 + img = img_player..s1 end player_preview = "image[3.9,1.4;1.2333,2.4666;"..img.."]" end diff --git a/mods/HUD/mcl_inventory/depends.txt b/mods/HUD/mcl_inventory/depends.txt index a174c0ee..46d93c42 100644 --- a/mods/HUD/mcl_inventory/depends.txt +++ b/mods/HUD/mcl_inventory/depends.txt @@ -1,3 +1,4 @@ mcl_init +mcl_player? _mcl_autogroup? 3d_armor? diff --git a/mods/HUD/mcl_inventory/init.lua b/mods/HUD/mcl_inventory/init.lua index 4bd2ef80..3989af19 100644 --- a/mods/HUD/mcl_inventory/init.lua +++ b/mods/HUD/mcl_inventory/init.lua @@ -1,8 +1,7 @@ mcl_inventory = {} -local show_armor = false -if minetest.get_modpath("3d_armor") ~= nil then show_armor = true end - +local show_armor = minetest.get_modpath("3d_armor") ~= nil +local mod_player = minetest.get_modpath("mcl_player") ~= nil -- Returns a single itemstack in the given inventory to the main inventory, or drop it when there's no space left local function return_item(itemstack, dropper, pos, inv) @@ -59,14 +58,20 @@ local function set_inventory(player, armor_change_only) local player_name = player:get_player_name() -- Show armor and player image - local img = "player.png" + local img, img_player + if mod_player then + img_player = mcl_player.player_get_preview(player) + else + img_player = "player.png" + end + img = img_player local player_preview = "image[0.6,0.2;2,4;"..img.."]" if show_armor and armor.textures[player_name] and armor.textures[player_name].preview then img = armor.textures[player_name].preview local s1 = img:find("character_preview") if s1 ~= nil then s1 = img:sub(s1+21) - img = "player.png"..s1 + img = img_player..s1 end player_preview = "image[1.1,0.2;2,4;"..img.."]" end diff --git a/mods/PLAYER/mcl_player/init.lua b/mods/PLAYER/mcl_player/init.lua index 599acd65..b01c0b4d 100644 --- a/mods/PLAYER/mcl_player/init.lua +++ b/mods/PLAYER/mcl_player/init.lua @@ -70,10 +70,22 @@ function mcl_player.player_set_model(player, model_name) player_model[name] = model_name end -function mcl_player.player_set_textures(player, textures) +function mcl_player.player_set_textures(player, textures, preview) local name = player:get_player_name() player_textures[name] = textures player:set_properties({textures = textures,}) + if preview then + player:set_attribute("mcl_player:preview", preview) + end +end + +function mcl_player.player_get_preview(player) + local preview = player:get_attribute("mcl_player:preview") + if not preview then + return "player.png" + else + return preview + end end function mcl_player.player_set_animation(player, anim_name, speed) diff --git a/mods/PLAYER/simple_skins/init.lua b/mods/PLAYER/simple_skins/init.lua index 3a41490f..077278b7 100644 --- a/mods/PLAYER/simple_skins/init.lua +++ b/mods/PLAYER/simple_skins/init.lua @@ -3,7 +3,7 @@ -- Released by TenPlus1 and based on Zeg9's code under MIT license skins = { - skins = {}, meta = {}, + skins = {}, previews = {}, meta = {}, modpath = minetest.get_modpath("simple_skins"), skin_count = 0, -- counter of _custom_ skins (all skins except character.png) } @@ -49,18 +49,30 @@ while true do skins.skin_count = skins.skin_count + 1 end -skins.set_player_skin = function(player, skin) +skins.set_player_skin = function(player, skin_id) if not player then - return + return false end local playername = player:get_player_name() + local skin, preview + if skin_id == nil or type(skin_id) ~= "number" or skin_id < 0 or skin_id > skins.skin_count then + return false + elseif skin_id == 0 then + skin = "character" + preview = "player" + else + skin = "character_" .. tostring(skin_id) + preview = "player_" .. tostring(skin_id) + end skins.skins[playername] = skin - player:set_attribute("simple_skins:skin", skins.skins[playername]) + skins.previews[playername] = preview + player:set_attribute("simple_skins:skin_id", skin_id) skins.update_player_skin(player) if minetest.get_modpath("3d_armor") then armor.textures[playername].skin = skin .. ".png" armor:update_player_visuals(player) end + return true end skins.update_player_skin = function(player) @@ -68,27 +80,21 @@ skins.update_player_skin = function(player) return end local playername = player:get_player_name() - mcl_player.player_set_textures(player, { skins.skins[playername] .. ".png" }) + mcl_player.player_set_textures(player, { skins.skins[playername] .. ".png" }, skins.previews[playername] .. ".png" ) end -- load player skin on join minetest.register_on_joinplayer(function(player) local name = player:get_player_name() - local skin = player:get_attribute("simple_skins:skin") + local skin_id = player:get_attribute("simple_skins:skin_id") local set_skin -- do we already have a skin in player attributes? - if skin then - set_skin = skin - + if skin_id then + set_skin = tonumber(skin_id) -- otherwise use random skin if not set else - local r = math.random(0, skins.skin_count) - if r == 0 then - set_skin = "character" - else - set_skin = "character_" .. r - end + set_skin = math.random(0, skins.skin_count) end if set_skin then skins.set_player_skin(player, set_skin) @@ -125,16 +131,11 @@ minetest.register_chatcommand("setskin", { end local skin - if skin_id == nil or skin_id > skins.skin_count or skin_id < 0 then + local ok = skins.set_player_skin(player, skin_id) + if not ok then return false, S("Invalid skin number! Valid numbers: 0 to @1", skins.skin_count) - elseif skin_id == 0 then - skin = "character" - else - skin = "character_" .. tostring(skin_id) end - - skins.set_player_skin(player, skin) - local skinfile = skin..".png" + local skinfile = "Skin #"..skin_id local your_msg = S("Your skin has been set to: @1", skinfile) if name == playername then diff --git a/mods/PLAYER/simple_skins/textures/player_1.png b/mods/PLAYER/simple_skins/textures/player_1.png new file mode 100644 index 0000000000000000000000000000000000000000..3d7af2a980c2412be1f72e39fd6d7ffeda8f7fb3 GIT binary patch literal 2625 zcmeAS@N?(olHy`uVBq!ia0y~yU=UznU{K&-V_;yA?)-6vfr0HqRY*ihP-3}4K~a8M zW=^U?No7H*LTW{38UsVct+mrLi=JBWwfz4qQp}R~ph%{mdxrFxkI$J^Z>NTbyMH-i z^V73R#8qf!C(GM!_5W(`?EldcxA=5W^vk6cb~~TTO`ZL0{`q2FyZfJiAFjVslU@Gt zvEvfWLf`Y}H{Ji|wYz3-z~|d``?l}4x?gz9I^c)QkGe@`bH3;A|He1v(Pg=N_t))z zpZQO9&UfkO)^DtToWH-5>6p+l?~6z0I(?cm`|P9$$5);^msN{dMb7>-_4%LcH+Ftw z|6upNF5&stT>twE3-;}iJ;mR1@0)`Ct;^3%KHly+bp6bIxi4QWkLKT)yZM&o?@qsB z#+8rmEwFRiSzaRJF!Nn@>*7zM?_S$lxho&xOy)LYKVGu1o#U4JlMPL6!r%6uGl)#; zvkqHlcy2~sw72Ou3w_3$eFaIa^PUDZujb6|eD-7Kw1Vev%lAo28LxLZFCn4x;aGnA z@72ftKm8%|LS}Lv$39z&t=ML07YXR|+bD*0650SAFj z?H$bKnxZE%FFt!VS1Rwm#>dQKQ3_5$o}yVE3MWoQUhqH5%ezwLq@PPyNaiJ1Z>^mk znoGq#Yph-QOl#|vsOYz$(OEk^wbyRDR&`mf`p}^z)8k_E_m+pMg|>y=3#(euXL0F- zvzuh;mW%CvPmDiLiACb-~ujes)Et zRxY1g_hs_d56j+~UpvJA?BBetA2y}+JiWcXZlhcAT6t%d&BBJ~5_Fz1JiaR7aN(lG zXWb_OaJpfn-lom z=(}}({lQz8q606fp4fE3;OonToap4u`-N{${COuiFX7nPQ&mN`?Q*aAxV;H{q~WUm zVEz`d2VC5XF6k*|x;>k_HkHBqrS6;3O)Omn;RiNaYscHKOO(~joT};gtz_dgli*vT z3?b8R%yfxS*ve(H!gp36>w?^i2V3Pl^80`JndKUNZ@;;1X@Kb7=XVc(ab4QCp~8Pv z*`Fc}?wj7%?*%mlYp6}Q5k5D&BQd&qqRC;e1&(ognh{}>{k~YeOMm- zQQ<1KzbdD)>Z3~uUGC%=n}FDd)&eD9R|&CnO`AKIM>>du{#Smtf1op=89>!FuM5&eLmZ^(L-PGE<*7Il^t`CeM}Do1b0%waxO9ZLo#&_wyA&6Uz2n ze(?27#%=DOJSpAA8{F=wZ4v!tI9tlc@W)|2t=~RbrDs>Qf4SScG=S5fd)~?SD=P&2 zg%Zr?yw=k1{uv%6wsL~%!szwgY0Q>WDpUA(O|?o-eJt>NMfRMTH>Q7iyFofG;qD%L z^;t6?*Vy{qeK6CbrOIT(#SV>vX1=i9uS>-?mAro_G?R;Ocj#q)_6WU%PUdvU$nv*K zZq@F3`?B?~tgUDYr>59;Wt%+$rkiqBrirAm1b&WXSM)uRDkapaz<6d$=(&}TH}qyr ztbLlty6Mh@rrPx&@Zk&5RnPNG5$;jRzq52ha`MUkkomMJkE^H=3hAXp}&-bC}+p~P|40mhuB!S zrB*L^G&W}EARh!9xUqBy0<$2ziaLOMS2fi71}w3vboFhwl>Jl zHv3l}CGY=n{_~Ty6Rut1&$gNL|HZ31OX->6JrRehj(jO;n*TcZP1iiVkMG&a?z@?# z9=@*f|BA@$sswHYw!d3$O|Csr9V(?nP(NQ7sg5u&{C5^6E zA?*vAUIcKIei54?a6|D>a|nC$37d)y_EV(Xbi{)6uCCkh)}Fnr?21B$^@}s_c0Jy; z@ARI^_kZ`j|NZYzUEfRha*e6C`Q5k}n3WeZe7V2p)byJxp1$8(bR|&g{Smj2P{pYi zPUY;r75&z!aIHB{PtPQ;44d8M(^K4(9|Q-4w)P&G)@UD5r!f1fPTFjv7dtEZa>ATL zMf2v`^Bve|E*}`Wwv3J8T!2KNm_Tadxp&eruivhhO-M))*}BjpJU8G2yXfjEt5j1q zOTGK3S#{{^(M^XA{FsuIjX zeY(@^l*ms>=V^BtUhGQb*7A`1t)^x?t5m{a+Fcc6)4q#uwycw$cJ_+z{Y#6&YI_*x zH{B3*xz1a1*WnFUSk9uG#^MfUa+_x*v&Ck;OL#FQiIsiYzbR7_=M~<)U%5i(_sg5@ zGL8?w?tVY#ZO-GJhZp?IWvbzte^kWZT3`8;QzfVGT3wT^+ZZ0?>0I(Tt8N*nVYd0o z^W2;$Rt;C<(#fv^s`_qhm*1uxb1dQ8VG)MT3>oFMqT#y&6K_OpaPXBs@Z^KG&_#=L zE+&3@J3aLN&W7FlMwk2g>(;#&9zHmMBz4f4~U z=vt_(chVD9-r?NH(fZ{}GQ+E9vDf(i{Qk-m8hRo%iI3qV_s8{?#uH|b;fwu!U+ zALa8!#BW|XJMOvqW8(un>AT7bxth1BD$K{%&^49*qK${#_ErwS%?{pdeu-}m7(Jn06Ud6z`z~JfX K=d#Wzp$Pz}JO2~_ literal 0 HcmV?d00001