diff options
Diffstat (limited to 'engines/supernova/supernova.cpp')
-rw-r--r-- | engines/supernova/supernova.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/engines/supernova/supernova.cpp b/engines/supernova/supernova.cpp index b3c0adb8a0..6c2bd688c3 100644 --- a/engines/supernova/supernova.cpp +++ b/engines/supernova/supernova.cpp @@ -418,6 +418,9 @@ Inventory::Inventory() void Inventory::add(Object &obj) { if (_numObjects < kMaxCarry) _inventory[_numObjects] = &obj; + +// if (inventory_amount>8) inventory_scroll = ((inventory_amount+1)/2)*2-8; +// show_inventory(); } // TODO: Update Inventory surface for scrolling @@ -434,13 +437,22 @@ void Inventory::remove(Object &obj) { } } -Object *Inventory::get(size_t index) { +Object *Inventory::get(size_t index) const { if (index < _numObjects) return _inventory[index]; return NULL; } +Object *Inventory::get(ObjectID id) const { + for (size_t i = 0; i < _numObjects; ++i) { + if (_inventory[i]->_id == id) + return _inventory[i]; + } + + return NULL; +} + ScreenBufferStack::ScreenBufferStack() : _last(_buffer) { } |