Advertisement
Guest User

LUA OO Problem!

a guest
Jun 12th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.55 KB | None | 0 0
  1. local objs={}
  2. objs.insts={}
  3.  
  4. function addObject(x, y, color)
  5.     if not color then color=colors.black end
  6.     local nobj={}
  7.     if(not x) then x=0 end
  8.     if(not y) then y=0 end
  9.     nobj.x=x
  10.     nobj.y=y
  11.     nobj.color=color
  12.     function nobj:create() end
  13.     function nobj:update() end
  14.     function nobj:draw() end
  15.     return nobj
  16. end
  17.  
  18. local function objCopy(t)
  19.     local t2 = {}
  20.     for k,v in pairs(t) do t2[k] = v end
  21.     return t2
  22. end
  23.  
  24. function instanceCreate(obj, x, y, color)
  25.     if(not x) then x=obj.x end
  26.     if(not y) then y=obj.y end
  27.     if(not color) then color = obj.color end
  28.     local temp_n=table.getn(objs.insts)+1
  29.     local cO=objCopy(obj)
  30.     cO.x=x
  31.     cO.y=y
  32.     cO.inst=true
  33.     cO.SELF=cO
  34.     cO.color=color
  35.     objs.insts[temp_n]=cO
  36.     cO.id=temp_n
  37.     cO:create()
  38.     return cO
  39. end
  40.  
  41. function updateInsts()
  42.     for i=1, table.getn(objs.insts) do
  43.         objs.insts[i]:update()
  44.     end
  45. end
  46.  
  47. function drawInsts()
  48.     for i=1, table.getn(objs.insts) do
  49.         objs.insts[i]:draw()
  50.     end
  51. end
  52.  
  53.  
  54. You use it like this:
  55. objPlayer=addObject(nil, nil, colors.blue)
  56. objEnemy=addObject(nil, nil, colors.red)
  57.  
  58. local w, h = term.getSize()
  59.  
  60. function objEnemy:create()
  61.     self.dmg=math.random(2)
  62.     self.health=math.random(50, 200)
  63. end
  64.  
  65. function objEnemy:update() end --Well you get the idea!
  66. objEnemy objEnemy:draw() end
  67.  
  68. instanceCreate(objPlayer, 3, 3)
  69.  
  70. --I dunno how to use repeat in lua but but I know what it does!
  71. repeat(5) instanceCreate(objEnemy, math.random(w), math.random(h))
  72.  
  73. --This thing works great, you suply the object with the code you need and then you just create copies ( instances ) of that object!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement