Files
@ 5e28ba3945f7
Branch filter:
Location: ATITD-Tools/Desert-Paint-Codex/Models/GeneratorRecipe.cs - annotation
5e28ba3945f7
1.5 KiB
text/x-csharp
Recipe count is now a ulong instead of an int so it can show values > 2.47 billion. Also, don't allow clearing the recipe list while the recipe generator is running.
40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 40eaee10ae56 | using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Text;
using JetBrains.Annotations;
namespace DesertPaintCodex.Models
{
public class GeneratorRecipe : INotifyPropertyChanged
{
private PaintColor _color;
public PaintColor Color { get => _color; set { _color = value; NotifyPropertyChanged(nameof(Color)); } }
private string _recipe = "";
public string Recipe { get => _recipe; set { _recipe = value; NotifyPropertyChanged(nameof(Recipe)); } }
public GeneratorRecipe(PaintColor color)
{
_color = color;
}
public void DraftRecipe(PaintRecipe recipe)
{
StringBuilder sb = new();
for (int i = 0; i < recipe.Reagents.Count; i++)
{
sb.Append(recipe.Reagents[i].Quantity);
sb.Append(' ');
sb.Append(recipe.Reagents[i].Name);
if (i != recipe.Reagents.Count - 1)
{
sb.Append(", ");
}
}
Recipe = sb.ToString();
}
public void ClearRecipe()
{
Recipe = "";
}
public event PropertyChangedEventHandler? PropertyChanged;
[NotifyPropertyChangedInvocator]
private void NotifyPropertyChanged([CallerMemberName] string? propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}
|