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
|
Item = {}
Item.__index = Item
ITEM_IDS = {"coolant","suit","tank","reserve","regen"}
function Item.create(x,y,id)
local self = setmetatable({}, Item)
self.alive = true
self.x, self.y = x, y-2
self.id = id
self.bbox = {x = x+4, y = y-2, w = 7, h = 20}
if id == "coolant" then
self.anim = newAnimation(img.item_coolant, 16, 20, 0.12, 6)
elseif id == "suit" then
self.anim = newAnimation(img.item_suit, 16, 20, 0.12, 6)
elseif id == "tank" then
self.anim = newAnimation(img.item_tank, 16, 20, 0.12, 6)
elseif id == "reserve" then
self.anim = newAnimation(img.item_reserve, 16, 20, 0.12, 6)
elseif id == "regen" then
self.anim = newAnimation(img.item_regen, 16, 20, 0.12, 6)
end
return self
end
function Item:update(dt)
self.anim:update(dt)
end
function Item:draw()
self.anim:draw(self.x, self.y)
end
function Item:getBBox()
return self.bbox
end
|