From 62e3a8b9ff665a46ec2160d9b0cf72f7d4f2fdfa Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 5 Mar 2019 00:11:43 +0100 Subject: [PATCH] Add player skin support, add female skin --- mods/PLAYER/simple_skins/depends.txt | 3 + mods/PLAYER/simple_skins/description.txt | 1 + mods/PLAYER/simple_skins/init.lua | 148 ++++++++++++++++++ mods/PLAYER/simple_skins/intllib.lua | 45 ++++++ mods/PLAYER/simple_skins/license.txt | 21 +++ mods/PLAYER/simple_skins/locale/fr.po | 51 ++++++ mods/PLAYER/simple_skins/locale/it.po | 52 ++++++ mods/PLAYER/simple_skins/locale/ms.po | 51 ++++++ mods/PLAYER/simple_skins/locale/template.pot | 50 ++++++ mods/PLAYER/simple_skins/meta/character.txt | 3 + mods/PLAYER/simple_skins/meta/character_1.txt | 3 + mods/PLAYER/simple_skins/mod.conf | 1 + mods/PLAYER/simple_skins/readme.md | 7 + .../simple_skins/textures/character_1.png | Bin 0 -> 5505 bytes .../textures/inventory_plus_skins.png | Bin 0 -> 2182 bytes 15 files changed, 436 insertions(+) create mode 100644 mods/PLAYER/simple_skins/depends.txt create mode 100644 mods/PLAYER/simple_skins/description.txt create mode 100644 mods/PLAYER/simple_skins/init.lua create mode 100644 mods/PLAYER/simple_skins/intllib.lua create mode 100644 mods/PLAYER/simple_skins/license.txt create mode 100644 mods/PLAYER/simple_skins/locale/fr.po create mode 100644 mods/PLAYER/simple_skins/locale/it.po create mode 100644 mods/PLAYER/simple_skins/locale/ms.po create mode 100644 mods/PLAYER/simple_skins/locale/template.pot create mode 100644 mods/PLAYER/simple_skins/meta/character.txt create mode 100644 mods/PLAYER/simple_skins/meta/character_1.txt create mode 100644 mods/PLAYER/simple_skins/mod.conf create mode 100644 mods/PLAYER/simple_skins/readme.md create mode 100644 mods/PLAYER/simple_skins/textures/character_1.png create mode 100644 mods/PLAYER/simple_skins/textures/inventory_plus_skins.png diff --git a/mods/PLAYER/simple_skins/depends.txt b/mods/PLAYER/simple_skins/depends.txt new file mode 100644 index 00000000..1927ce89 --- /dev/null +++ b/mods/PLAYER/simple_skins/depends.txt @@ -0,0 +1,3 @@ +mcl_player +intllib? +3d_armor? diff --git a/mods/PLAYER/simple_skins/description.txt b/mods/PLAYER/simple_skins/description.txt new file mode 100644 index 00000000..61c7bff6 --- /dev/null +++ b/mods/PLAYER/simple_skins/description.txt @@ -0,0 +1 @@ +Mod that allows players to set their individual skins. \ No newline at end of file diff --git a/mods/PLAYER/simple_skins/init.lua b/mods/PLAYER/simple_skins/init.lua new file mode 100644 index 00000000..3a41490f --- /dev/null +++ b/mods/PLAYER/simple_skins/init.lua @@ -0,0 +1,148 @@ +-- Simple Skins mod for Minetest (MineClone 2 Edition) + +-- Released by TenPlus1 and based on Zeg9's code under MIT license + +skins = { + skins = {}, meta = {}, + modpath = minetest.get_modpath("simple_skins"), + skin_count = 0, -- counter of _custom_ skins (all skins except character.png) +} + + +-- Load support for intllib. +local S, NS = dofile(skins.modpath .. "/intllib.lua") + + +-- load skin list and metadata +local id, f, data, skin = 1 + +while true do + + skin = "character_" .. id + + -- does skin file exist ? + f = io.open(skins.modpath .. "/textures/" .. skin .. ".png") + + -- escape loop if not found and remove last entry + if not f then + id = id - 1 + break + end + + f:close() + + -- does metadata exist for that skin file ? + f = io.open(skins.modpath .. "/meta/" .. skin .. ".txt") + + if f then + data = minetest.deserialize("return {" .. f:read('*all') .. "}") + f:close() + end + + -- add metadata to list + skins.meta[skin] = { + name = data and data.name or "", + author = data and data.author or "", + } + + id = id + 1 + skins.skin_count = skins.skin_count + 1 +end + +skins.set_player_skin = function(player, skin) + if not player then + return + end + local playername = player:get_player_name() + skins.skins[playername] = skin + player:set_attribute("simple_skins:skin", skins.skins[playername]) + skins.update_player_skin(player) + if minetest.get_modpath("3d_armor") then + armor.textures[playername].skin = skin .. ".png" + armor:update_player_visuals(player) + end +end + +skins.update_player_skin = function(player) + if not player then + return + end + local playername = player:get_player_name() + mcl_player.player_set_textures(player, { skins.skins[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 set_skin + -- do we already have a skin in player attributes? + if skin then + set_skin = skin + + -- 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 + end + if set_skin then + skins.set_player_skin(player, set_skin) + end +end) + +-- command to set player skin (usually for custom skins) +minetest.register_chatcommand("setskin", { + params = "[] ", + description = S("Select player skin of yourself or another player"), + privs = {}, + func = function(name, param) + + local playername, skin_id = string.match(param, "([^ ]+) (%d+)") + if not playername or not skin_id then + skin_id = string.match(param, "(%d+)") + if not skin_id then + return false, S("Insufficient or wrong parameters") + end + playername = name + end + skin_id = tonumber(skin_id) + + local player = minetest.get_player_by_name(playername) + + if not player then + return false, S("Player @1 not online!", playername) + end + if name ~= playername then + local privs = minetest.get_player_privs(name) + if not privs.server then + return false, S("You need the “server” privilege to change the skin of other players!") + end + end + + local skin + if skin_id == nil or skin_id > skins.skin_count or skin_id < 0 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 your_msg = S("Your skin has been set to: @1", skinfile) + if name == playername then + return true, your_msg + else + minetest.chat_send_player(playername, your_msg) + return true, S("Skin of @1 set to: @2", playername, skinfile) + end + + end, +}) diff --git a/mods/PLAYER/simple_skins/intllib.lua b/mods/PLAYER/simple_skins/intllib.lua new file mode 100644 index 00000000..6669d720 --- /dev/null +++ b/mods/PLAYER/simple_skins/intllib.lua @@ -0,0 +1,45 @@ + +-- Fallback functions for when `intllib` is not installed. +-- Code released under Unlicense . + +-- Get the latest version of this file at: +-- https://raw.githubusercontent.com/minetest-mods/intllib/master/lib/intllib.lua + +local function format(str, ...) + local args = { ... } + local function repl(escape, open, num, close) + if escape == "" then + local replacement = tostring(args[tonumber(num)]) + if open == "" then + replacement = replacement..close + end + return replacement + else + return "@"..open..num..close + end + end + return (str:gsub("(@?)@(%(?)(%d+)(%)?)", repl)) +end + +local gettext, ngettext +if minetest.get_modpath("intllib") then + if intllib.make_gettext_pair then + -- New method using gettext. + gettext, ngettext = intllib.make_gettext_pair() + else + -- Old method using text files. + gettext = intllib.Getter() + end +end + +-- Fill in missing functions. + +gettext = gettext or function(msgid, ...) + return format(msgid, ...) +end + +ngettext = ngettext or function(msgid, msgid_plural, n, ...) + return format(n==1 and msgid or msgid_plural, ...) +end + +return gettext, ngettext diff --git a/mods/PLAYER/simple_skins/license.txt b/mods/PLAYER/simple_skins/license.txt new file mode 100644 index 00000000..fec6f6aa --- /dev/null +++ b/mods/PLAYER/simple_skins/license.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 TenPlus1 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/mods/PLAYER/simple_skins/locale/fr.po b/mods/PLAYER/simple_skins/locale/fr.po new file mode 100644 index 00000000..30d8e36e --- /dev/null +++ b/mods/PLAYER/simple_skins/locale/fr.po @@ -0,0 +1,51 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 07:11+0200\n" +"PO-Revision-Date: 2017-07-29 07:17+0200\n" +"Last-Translator: fat115 \n" +"Language-Team: \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.12\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: init.lua +msgid "Select Player Skin:" +msgstr "Sélectionner l'apparence du joueur :" + +#: init.lua +msgid "Name: " +msgstr "Nom : " + +#: init.lua +msgid "Author: " +msgstr "Auteur : " + +#: init.lua +msgid "Admin command to set player skin" +msgstr "Commande admin pour définir l'apparence du joueur" + +#: init.lua +msgid "'s skin set to" +msgstr ", apparence définie pour" + +#: init.lua +msgid "Set player skin" +msgstr "Définir l'apparence du joueur" + +#: init.lua +msgid "Close" +msgstr "Fermer" + +#: init.lua +msgid "[MOD] Simple Skins loaded" +msgstr "[MOD] Simple Skins chargé" diff --git a/mods/PLAYER/simple_skins/locale/it.po b/mods/PLAYER/simple_skins/locale/it.po new file mode 100644 index 00000000..d4701316 --- /dev/null +++ b/mods/PLAYER/simple_skins/locale/it.po @@ -0,0 +1,52 @@ +# simple_skin . +# Copyright (C) 2018 +# This file is distributed under the same license as the PACKAGE package. +# Stefano Peris , 2018. +# Github: +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-21 07:29+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Stefano Peris \n" +"Language-Team: \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.12\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: init.lua +msgid "Select Player Skin:" +msgstr "Seleziona la skin del giocatore" + +#: init.lua +msgid "Name: " +msgstr "Nome" + +#: init.lua +msgid "Author: " +msgstr "Autore" + +#: init.lua +msgid "Admin command to set player skin" +msgstr "Comando di admin per impostare la skin del giocatore" + +#: init.lua +msgid "'s skin set to" +msgstr ", la skin è impostata su" + +#: init.lua +msgid "Set player skin" +msgstr "Imposta la skin del giocatore" + +#: init.lua +msgid "Close" +msgstr "Chiudi" + +#: init.lua +msgid "[MOD] Simple Skins loaded" +msgstr "[MOD] Skins semplici caricate" diff --git a/mods/PLAYER/simple_skins/locale/ms.po b/mods/PLAYER/simple_skins/locale/ms.po new file mode 100644 index 00000000..bba5982d --- /dev/null +++ b/mods/PLAYER/simple_skins/locale/ms.po @@ -0,0 +1,51 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 07:11+0200\n" +"PO-Revision-Date: 2018-02-14 01:23+0800\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.0.6\n" +"Last-Translator: MuhdNurHidayat (MNH48) \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Language: ms\n" + +#: init.lua +msgid "Select Player Skin:" +msgstr "Pilih Kulit Pemain:" + +#: init.lua +msgid "Name: " +msgstr "Nama: " + +#: init.lua +msgid "Author: " +msgstr "Pencipta: " + +#: init.lua +msgid "Admin command to set player skin" +msgstr "Perintah pentadbir untuk menetapkan kulit pemain" + +#: init.lua +msgid "'s skin set to" +msgstr " telah ditukarkan kulitnya kepada" + +#: init.lua +msgid "Set player skin" +msgstr "Tetapkan kulit pemain" + +#: init.lua +msgid "Close" +msgstr "Tutup" + +#: init.lua +msgid "[MOD] Simple Skins loaded" +msgstr "[MODS] Simple Skins telah dimuatkan" diff --git a/mods/PLAYER/simple_skins/locale/template.pot b/mods/PLAYER/simple_skins/locale/template.pot new file mode 100644 index 00000000..36282e43 --- /dev/null +++ b/mods/PLAYER/simple_skins/locale/template.pot @@ -0,0 +1,50 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-29 07:11+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: init.lua +msgid "Select Player Skin:" +msgstr "" + +#: init.lua +msgid "Name: " +msgstr "" + +#: init.lua +msgid "Author: " +msgstr "" + +#: init.lua +msgid "Admin command to set player skin" +msgstr "" + +#: init.lua +msgid "'s skin set to" +msgstr "" + +#: init.lua +msgid "Set player skin" +msgstr "" + +#: init.lua +msgid "Close" +msgstr "" + +#: init.lua +msgid "[MOD] Simple Skins loaded" +msgstr "" diff --git a/mods/PLAYER/simple_skins/meta/character.txt b/mods/PLAYER/simple_skins/meta/character.txt new file mode 100644 index 00000000..5a07db19 --- /dev/null +++ b/mods/PLAYER/simple_skins/meta/character.txt @@ -0,0 +1,3 @@ +name = "Steve", +author = "(Texture pack author)", +description = "The default male skin.", diff --git a/mods/PLAYER/simple_skins/meta/character_1.txt b/mods/PLAYER/simple_skins/meta/character_1.txt new file mode 100644 index 00000000..ec438955 --- /dev/null +++ b/mods/PLAYER/simple_skins/meta/character_1.txt @@ -0,0 +1,3 @@ +name = "Alex", +author = "(Texture pack author)", +description = "The default female skin.", diff --git a/mods/PLAYER/simple_skins/mod.conf b/mods/PLAYER/simple_skins/mod.conf new file mode 100644 index 00000000..aff90aab --- /dev/null +++ b/mods/PLAYER/simple_skins/mod.conf @@ -0,0 +1 @@ +name = simple_skins diff --git a/mods/PLAYER/simple_skins/readme.md b/mods/PLAYER/simple_skins/readme.md new file mode 100644 index 00000000..0c6980bb --- /dev/null +++ b/mods/PLAYER/simple_skins/readme.md @@ -0,0 +1,7 @@ +Simple Skins, MineClone 2 Edition + +Simple Skins mod to allow players to select a skin. +Use the chat command /setskin to change skin. + +Original mod: +https://forum.minetest.net/viewtopic.php?id=9100 diff --git a/mods/PLAYER/simple_skins/textures/character_1.png b/mods/PLAYER/simple_skins/textures/character_1.png new file mode 100644 index 0000000000000000000000000000000000000000..71f02471dc622249681a511a66087b803e97dbdf GIT binary patch literal 5505 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 CAYT6f literal 0 HcmV?d00001 diff --git a/mods/PLAYER/simple_skins/textures/inventory_plus_skins.png b/mods/PLAYER/simple_skins/textures/inventory_plus_skins.png new file mode 100644 index 0000000000000000000000000000000000000000..7cc97759cd8c906632a0ff2712b647c23abc2278 GIT binary patch literal 2182 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4kiW$h6xih%orHh?5jc|N`ey06$*;-(=u~X z6-p`#QWa7wGSe6sDsHU}kKDwp&hzKFh$U0f^}>kNMa?qyyq9{Wr|9qC+Ba>{QZr0&+m7<*3nnr#V<54%WVJB zHu09`zMFq-d#lsm&ieV3HGKBl&(Aq`Z*_~zKJ_Zg!$C_j_R7{N#qE8(0l$oO9-jK) zcISDq;kqW(G6S;%X@{@!8d@&ct8rn0SNF3_>(Um9J0+59i|_tS*0!@Q`#VACo9pS+ z3&uVA35%Oe_gC&rUTCa8|EHDc85<5;*@KdaNBU3K82y|6x@^lezgVT{yfp&TZ(H^n zm=*sP-|N7kd(=d(=6veBPsi*8Umr}cF%Z|;a7#@uYKeQ^&%>MD_h&S3++?c3U&_#7 zQ0`*zOklt+d1fiMtA$5A=TLd?K>_`LP*3%hz}NotYpe zAXxiJ@=5}8;~D{_PwMSWGOI2gPe|&~d={Z}d{zyY=CUb8x1>ThpI1CSr|6t&@w%ha z1Cl&drw8o_DSM-sI8iwLaO=$Mqf12BX}g7gS+RBJv*?VCOQ%I=-pO+R_2ojczwP%+ zJFh=%lfUs#xi`m6(&p8Y&X8G&$7ZI@OZ~Kld*`-4T-xileA4O;-y0bm79Y9T{8?Rk z@06`)BP{-YYBrrwyf5a$w8=XxnUnPdB+k!fRM~QS&P^x99cS-6JM(GU>K6y3j{2Tk za8^QsXL3wTN%8lDcj5PZc>Z^pfA6*2yz;mG4CC2WsqfVD*}=EQRNMKCr0`?IqJ`I%$hVxi z`q;>_Kk+x8(bD96`F^`+@4logDRDP_+}Y**K5o&WX?Z%ERo}n0iETG+>?^$f!atee z!A2$1yB4+!?`}Tj<8xCcRvkZc>8isEIYrx6`=$r^>*w9K`c~G{!BO#Y$x^3B=W=gLX&$U~GE_ykl0>fATbuk}cCU&!8obd;b^7V=w(e6czgZ^F%8r@x_5I{2A7*^GJ$=z3 zy>qiC$zObvaOU%_d2hG^--g9SS2ur?o3TaBX5mkdh)9KZZWC|6{PSbtjq__OPySdJ zbN=DPsey8{_P#S%nfCttwLMZIt1i6la=vzRx%|8B5lc+x$N#WPdA^pRltbKa|CVQu zxjQE1sJ)&Ru;pr$1kbtii)L?R@lk2sCigKYW!d}Jk3Bm1J|%<)$;+hu=lXV@HSR%p z{4cIGD|8n;+r8`lW#?Sq>9&TM`_~x7el)+l&qK-Sa%I)YCvz&)nwTp$+00z#x#_pj zxp^_0FRyX?xnnBB#1mP&T?2RgI9uB>@RGV?>#s#a*8c~yR!9p!KV|mpR`_X z%lf;bU+6=yTb$9OY4(4Z1FABYebVdu#Fv?0sAchp-!S%L(AwCo`&XS?8gwJ`tln;u z!1O1w8*U1S>6}*u@f4~+MCeTg@8{v!7Ys})7w$X;K6)>{1Ijud7FyK|y9Un#D7P``8)&p(-X#kM6| zjh?S?wK{t|Qe{Q(_U2IE?2gb?k)`fL2$v|<&zm07&r?&B8wRq^pruEv0|xx z83O|Ydx@v7EBj++7BMaM+N2du3=E7XJY5_^G|uNva`X@hlsH~*%pP*K4J*O_S`~I#AyqUF1diuGi zm&&pwj_RLQeeiDbbEj(V=koU??H|so-kYR1MeUGAoQAK;-H=PZw){$`V^3&B$xG*p