// An item that we're going to give, or check that we can give public ItemBase AttemptTakeItem(ItemBase item, int amount = 1, bool actuallyGiveItem = true) { VicisMod.log(getPrefix(), "Attempting to give " + amount + " item " + item.GetDisplayString() + " with id = " + item.mnItemID + " and type = " + item.mType); if (getNumItems() == 0) { return(null); } for (int i = 0; i < items.Count; ++i) { if (ItemBaseUtil.compareCubeStack(items[i] as ItemCubeStack, item as ItemCubeStack)) { ItemCubeStack a = items[i] as ItemCubeStack; VicisMod.log(getPrefix(), "Found a CubeStack " + a.GetDisplayString() + ", which is storing " + a.mnAmount + " blocks"); if (a != null) { int amntTaken = Math.Min(amount, a.mnAmount); ItemCubeStack ret = new ItemCubeStack(a.mCubeType, a.mCubeValue, amntTaken); if (actuallyGiveItem) { VicisMod.log(getPrefix(), "Taking away"); a.mnAmount -= amntTaken; if (a.mnAmount <= 0) { VicisMod.log(getPrefix(), "There are " + a.mnAmount + " items for " + a.GetDisplayString() + ", removing it from items"); items.RemoveAt(i); } } MarkDirtyDelayed(); return(ret); } // a was null, this is bad. Clean up, hide the evidence VicisMod.log(getPrefix(), "Removing a null that masquaraded as an ItemCubeStack!"); items.RemoveAt(i); return(null); } else if (ItemBaseUtil.compareStack(items[i] as ItemStack, item as ItemStack)) { ItemStack a = items[i] as ItemStack; VicisMod.log(getPrefix(), "Found a Stack " + a.GetDisplayString() + ", which is storing " + a.mnAmount + " blocks"); if (a != null) { int amntTaken = Math.Min(amount, a.mnAmount); ItemStack ret = new ItemStack(a.mnItemID, amntTaken); if (actuallyGiveItem) { VicisMod.log(getPrefix(), "Taking away"); a.mnAmount -= amntTaken; if (a.mnAmount <= 0) { VicisMod.log(getPrefix(), "There are " + a.mnAmount + " items for " + a.GetDisplayString() + ", removing it from items"); items.RemoveAt(i); } } MarkDirtyDelayed(); return(ret); } // a was null, this is bad. Clean up, hide the evidence VicisMod.log(getPrefix(), "Removing a null that masquaraded as an ItemStack!"); items.RemoveAt(i); return(null); } } if (ItemBaseUtil.isStack(item)) { VicisMod.log(getPrefix(), "Could not find a stack or cube stack for " + item.GetDisplayString() + ", returning null"); return(null); } // What we're looking for is not a stack, start looking at the individual items. for (int i = 0; i < items.Count; ++i) { if (ItemBaseUtil.compareBase(items[i], item)) { ItemBase ret = items[i]; VicisMod.log(getPrefix(), "Found a " + ret.GetDisplayString() + ", with id = " + ret.mnItemID + " and type = " + ret.mType); if (actuallyGiveItem) { VicisMod.log(getPrefix(), "Removing from items"); items.RemoveAt(i); } MarkDirtyDelayed(); return(ret); } } return(null); }
protected virtual void dropOffToConveyors() { bool ignore; List <ConveyorEntity> list = VicisMod.checkSurrounding <ConveyorEntity>(this, out ignore); VicisMod.log(getPrefix(), "Found " + list.Count + " ConveyorEntities"); string msg = items.Count + ": "; foreach (ItemBase it in items) { msg += it.GetDisplayString() + ", "; } VicisMod.log(getPrefix(), "Currently storing " + msg); for (int i = 0; i < list.Count && items.Count > 0; ++i) { ConveyorEntity c = list[i] as ConveyorEntity; if (!isConveyorNotFacingMe(c)) { VicisMod.log(getPrefix(), "Conveyor is either not facing somewhere else: " + isConveyorNotFacingMe(c)); continue; } if (c.mbReadyToConvey && c.mrLockTimer == 0f) { VicisMod.log(getPrefix(), "Ready to convey, will be giving " + items[0].GetDisplayString() + ", a " + items[0].mType); if (items[0].mType == ItemType.ItemCubeStack) { ItemCubeStack a = items[0] as ItemCubeStack; c.AddCube(a.mCubeType, a.mCubeValue, 1); c.mItemForwards = forwards; --a.mnAmount; if (a.mnAmount == 0) { VicisMod.log(getPrefix(), "Removing cube " + a.GetDisplayString() + " from items list"); items.RemoveAt(0); } } else if (items[0].mType == ItemType.ItemStack) { ItemStack a = ItemBaseUtil.newInstance(items[0]) as ItemStack; a.mnAmount = 1; ItemBaseUtil.decrementStack(items[0], 1); c.AddItem(a); c.mItemForwards = forwards; if (ItemBaseUtil.getAmount(items[0]) == 0) { VicisMod.log(getPrefix(), "Removing item " + a.GetDisplayString() + " from items list"); items.RemoveAt(0); } } else { c.AddItem(items[0]); c.mrCarryTimer = 1f; c.mrVisualCarryTimer = 1f; c.mItemForwards = forwards; items.RemoveAt(0); } } else { VicisMod.log(getPrefix(), "Conveyor is not ready to convey"); } } }