legacy.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. -- Armor
  2. function hud.set_armor()
  3. end
  4. if hud.show_armor then
  5. local shields = minetest.get_modpath("shields") ~= nil
  6. local armor_org_func = armor.update_armor
  7. local function get_armor_lvl(def)
  8. -- items/protection based display
  9. local lvl = def.level or 0
  10. local max = 63 -- full diamond armor
  11. if shields then
  12. max = 84.14 -- full diamond armor + diamond shield
  13. end
  14. -- TODO: is there a sane way to read out max values?
  15. local ret = lvl/max
  16. if ret > 1 then
  17. ret = 1
  18. end
  19. return tonumber(20 * ret)
  20. end
  21. function armor.update_armor(self, player)
  22. armor_org_func(self, player)
  23. local name = player:get_player_name()
  24. local def = self.def
  25. local armor_lvl = 0
  26. if def[name] and def[name].level then
  27. armor_lvl = get_armor_lvl(def[name])
  28. end
  29. hud.change_item(player, "armor", {number = armor_lvl})
  30. end
  31. end
  32. -- Hunger related functions
  33. if not hud.show_hunger then
  34. function hud.set_hunger()
  35. hud.notify_hunger(1, true)
  36. end
  37. function hud.get_hunger()
  38. hud.notify_hunger(1, true)
  39. end
  40. function hud.item_eat(hp_change, replace_with_item)
  41. return function(itemstack, user, pointed_thing)
  42. hud.notify_hunger(1, true)
  43. local func = minetest.item_eat(hp_change, replace_with_item)
  44. return func(itemstack, user, pointed_thing)
  45. end
  46. end
  47. function hud.save_hunger()
  48. hud.notify_hunger(1, true)
  49. end
  50. function hud.load_hunger(player)
  51. hud.notify_hunger(1, true)
  52. end
  53. end