49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Terraria.WorldBuilding.GenPass
|
|
// Assembly: Terraria, Version=1.4.0.5, Culture=neutral, PublicKeyToken=null
|
|
// MVID: 67F9E73E-0A81-4937-A22C-5515CD405A83
|
|
// Assembly location: C:\Users\mikeyisbaeyt\Downloads\depotdownloader-2.4.5\depots\105601\6707058\Terraria.exe
|
|
|
|
using System;
|
|
using Terraria.IO;
|
|
|
|
namespace Terraria.WorldBuilding
|
|
{
|
|
public abstract class GenPass : GenBase
|
|
{
|
|
public string Name;
|
|
public float Weight;
|
|
private Action<GenPass> _onComplete;
|
|
private Action<GenPass> _onBegin;
|
|
|
|
public GenPass(string name, float loadWeight)
|
|
{
|
|
this.Name = name;
|
|
this.Weight = loadWeight;
|
|
}
|
|
|
|
protected abstract void ApplyPass(GenerationProgress progress, GameConfiguration configuration);
|
|
|
|
public void Apply(GenerationProgress progress, GameConfiguration configuration)
|
|
{
|
|
if (this._onBegin != null)
|
|
this._onBegin(this);
|
|
this.ApplyPass(progress, configuration);
|
|
if (this._onComplete == null)
|
|
return;
|
|
this._onComplete(this);
|
|
}
|
|
|
|
public GenPass OnBegin(Action<GenPass> beginAction)
|
|
{
|
|
this._onBegin = beginAction;
|
|
return this;
|
|
}
|
|
|
|
public GenPass OnComplete(Action<GenPass> completionAction)
|
|
{
|
|
this._onComplete = completionAction;
|
|
return this;
|
|
}
|
|
}
|
|
}
|