IList<Item> Items;

This commit is contained in:
Stef Heyenrath 2024-06-02 11:17:12 +02:00
parent 995c40fbd8
commit 608f368757

View File

@ -4,83 +4,83 @@ namespace GildedRoseKata;
public class GildedRose public class GildedRose
{ {
private readonly IList<Item> _items; IList<Item> Items;
public GildedRose(IList<Item> items) public GildedRose(IList<Item> Items)
{ {
_items = items; this.Items = Items;
} }
public void UpdateQuality() public void UpdateQuality()
{ {
for (var i = 0; i < _items.Count; i++) for (var i = 0; i < Items.Count; i++)
{ {
if (_items[i].Name != "Aged Brie" && _items[i].Name != "Backstage passes to a TAFKAL80ETC concert") if (Items[i].Name != "Aged Brie" && Items[i].Name != "Backstage passes to a TAFKAL80ETC concert")
{ {
if (_items[i].Quality > 0) if (Items[i].Quality > 0)
{ {
if (_items[i].Name != "Sulfuras, Hand of Ragnaros") if (Items[i].Name != "Sulfuras, Hand of Ragnaros")
{ {
_items[i].Quality = _items[i].Quality - 1; Items[i].Quality = Items[i].Quality - 1;
} }
} }
} }
else else
{ {
if (_items[i].Quality < 50) if (Items[i].Quality < 50)
{ {
_items[i].Quality = _items[i].Quality + 1; Items[i].Quality = Items[i].Quality + 1;
if (_items[i].Name == "Backstage passes to a TAFKAL80ETC concert") if (Items[i].Name == "Backstage passes to a TAFKAL80ETC concert")
{ {
if (_items[i].SellIn < 11) if (Items[i].SellIn < 11)
{ {
if (_items[i].Quality < 50) if (Items[i].Quality < 50)
{ {
_items[i].Quality = _items[i].Quality + 1; Items[i].Quality = Items[i].Quality + 1;
} }
} }
if (_items[i].SellIn < 6) if (Items[i].SellIn < 6)
{ {
if (_items[i].Quality < 50) if (Items[i].Quality < 50)
{ {
_items[i].Quality = _items[i].Quality + 1; Items[i].Quality = Items[i].Quality + 1;
} }
} }
} }
} }
} }
if (_items[i].Name != "Sulfuras, Hand of Ragnaros") if (Items[i].Name != "Sulfuras, Hand of Ragnaros")
{ {
_items[i].SellIn = _items[i].SellIn - 1; Items[i].SellIn = Items[i].SellIn - 1;
} }
if (_items[i].SellIn < 0) if (Items[i].SellIn < 0)
{ {
if (_items[i].Name != "Aged Brie") if (Items[i].Name != "Aged Brie")
{ {
if (_items[i].Name != "Backstage passes to a TAFKAL80ETC concert") if (Items[i].Name != "Backstage passes to a TAFKAL80ETC concert")
{ {
if (_items[i].Quality > 0) if (Items[i].Quality > 0)
{ {
if (_items[i].Name != "Sulfuras, Hand of Ragnaros") if (Items[i].Name != "Sulfuras, Hand of Ragnaros")
{ {
_items[i].Quality = _items[i].Quality - 1; Items[i].Quality = Items[i].Quality - 1;
} }
} }
} }
else else
{ {
_items[i].Quality = _items[i].Quality - _items[i].Quality; Items[i].Quality = Items[i].Quality - Items[i].Quality;
} }
} }
else else
{ {
if (_items[i].Quality < 50) if (Items[i].Quality < 50)
{ {
_items[i].Quality = _items[i].Quality + 1; Items[i].Quality = Items[i].Quality + 1;
} }
} }
} }