Advertisement
Inksaver

Class library (20241208.1000)

Dec 8th, 2024
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.64 KB | Source Code | 0 0
  1. local version = 20241208.1000
  2. --[[
  3.     this code based on https://www.youtube.com/watch?v=Jte9o4S6rlo&list=PLZVNxI_lsRW2kXnJh2BMb6D82HCAoSTUB
  4.     Thanks to https://pixelbytestudios.com/ for a brilliant tutorial seies on Lua and Love2d
  5.     Adapted for use in ccTweaked / computercraft by Inksaver https://www.youtube.com/@Inksaver
  6. ]]
  7. --generic class table
  8. local Class = {}
  9. Class.__index = Class --metamethod to index itself
  10. function Class:new() end
  11.  
  12. -- create new class type
  13. function Class:derive(classType)
  14.     assert(classType ~= nil, "parameter classType must not be nil")
  15.     assert(type(classType) == "string", "parameter classType must be string")
  16.     local cls = {}
  17.     cls["__call"] = Class.__call
  18.     cls.type = classType
  19.     cls.__index = cls
  20.     cls.super = self
  21.     setmetatable(cls, self) -- allows inheritance
  22.     return cls
  23. end
  24.  
  25. -- allow table to be treated as a function
  26. function Class:__call(...)
  27.     local inst = setmetatable({}, self) --create instance of Class
  28.     inst:new(...)
  29.     return inst
  30. end
  31.  
  32. function Class:is(class)
  33.     assert(class ~= nil, "parameter class must not be nil")
  34.     assert(type(class) == "table", "parameter class must be of type Class")
  35.     local mt = getmetatable(self)
  36.     while mt do
  37.         if mt == class then return true end
  38.         mt = getmetatable(mt)
  39.     end
  40.     return false
  41. end
  42.  
  43. function Class:isType(classType)
  44.     assert(classType ~= nil, "parameter classType must not be nil")
  45.     assert(type(classType) == "string", "parameter classType must be string")
  46.     local base = self
  47.     while base do
  48.         if base.type == classType then return true end
  49.         base = base.super
  50.     end
  51.     return false
  52. end
  53.  
  54. function Class:getType()
  55.     return self.type
  56. end
  57.  
  58. return Class
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement