2019-11-17 16:26:04 +00:00
|
|
|
|
using System.IO;
|
2019-12-04 01:26:26 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2019-11-04 12:47:41 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
|
|
|
{
|
|
|
|
|
public class IncludeVortexDeployment : ACompilationStep
|
|
|
|
|
{
|
|
|
|
|
public IncludeVortexDeployment(ACompiler compiler) : base(compiler)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-04 01:26:26 +00:00
|
|
|
|
public override async ValueTask<Directive> Run(RawSourceFile source)
|
2019-11-04 12:47:41 +00:00
|
|
|
|
{
|
2019-11-04 15:12:28 +00:00
|
|
|
|
if (!source.Path.EndsWith("vortex.deployment.msgpack") &&
|
2019-11-17 16:26:04 +00:00
|
|
|
|
!source.Path.EndsWith("\\vortex.deployment.json") && Path.GetExtension(source.Path) != ".meta") return null;
|
2019-11-04 12:47:41 +00:00
|
|
|
|
var inline = source.EvolveTo<InlineFile>();
|
|
|
|
|
inline.SourceDataID = _compiler.IncludeFile(File.ReadAllBytes(source.AbsolutePath));
|
|
|
|
|
return inline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override IState GetState()
|
|
|
|
|
{
|
|
|
|
|
return new State();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class State : IState
|
|
|
|
|
{
|
|
|
|
|
public ICompilationStep CreateStep(ACompiler compiler)
|
|
|
|
|
{
|
|
|
|
|
return new IncludeVortexDeployment(compiler);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|