/ld26

To get this branch, use:
bzr branch http://9ix.org/bzr/ld26

« back to all changes in this revision

Viewing changes to inventory.lua

  • Committer: Josh C
  • Date: 2013-04-29 00:36:07 UTC
  • Revision ID: josh@9ix.org-20130429003607-bzwrrvoltjzv4ifm
blah

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Inventory = Class:extend {
 
2
   items = {},
 
3
   had = {},
 
4
   visible = true,
 
5
   add = function(self, item)
 
6
            item.invTile.y = 10
 
7
            item.invTile.x = 50 * #self.items
 
8
            self.items[item.name] = item
 
9
            the.app.view:flash({0,255,0})
 
10
         end,
 
11
   remove = function(self, name)
 
12
               self.had[name] = self.items[name]
 
13
               self.items[name] = nil
 
14
            end,
 
15
   draw = function(self)
 
16
             for _, item in pairs(self.items) do
 
17
                item.invTile:draw()
 
18
             end
 
19
          end
 
20
}
 
21
 
 
22
the.inventory = Inventory:new()