summaryrefslogtreecommitdiff
path: root/init.lua
blob: d49335d0625c635897f999b46988807e36931bc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
-- Unified Skins for Minetest - based modified Bags from unfied_inventory and skins from inventory_plus

-- Copyright (c) 2012 cornernote, Dean Montgomery
-- Rework 2017 by bell07
-- License: GPLv3
-- Boilerplate to support localized strings if intllib mod is installed.

skins = {}
skins.modpath = minetest.get_modpath(minetest.get_current_modname())
skins.default = "character_1"

skins.type = { SPRITE=0, MODEL=1, ERROR=99 }
skins.get_type = function(texture)
	if not skins.is_skin(texture) then
		return skins.type.ERROR
	end
	return skins.type.MODEL
end

skins.is_skin = function(texture)
	if not texture then
		return false
	end
	if not skins.meta[texture] then
		return false
	end
	return true
end

dofile(skins.modpath.."/skinlist.lua")
dofile(skins.modpath.."/players.lua")

-- Unified inventory page/integration
if minetest.get_modpath("unified_inventory") then
	dofile(skins.modpath.."/unified_inventory_page.lua")
end

if minetest.get_modpath("sfinv") then
	dofile(skins.modpath.."/sfinv_page.lua")
end