Rename items in GildedRose
This commit is contained in:
parent
78fa1debe9
commit
75ac4f6263
@ -4,82 +4,83 @@ namespace csharpcore
|
|||||||
{
|
{
|
||||||
public class GildedRose
|
public class GildedRose
|
||||||
{
|
{
|
||||||
IList<Item> Items;
|
private readonly IList<Item> _items;
|
||||||
public GildedRose(IList<Item> Items)
|
|
||||||
|
public GildedRose(IList<Item> items)
|
||||||
{
|
{
|
||||||
this.Items = Items;
|
_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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user