commit
f04a71aad0
9 changed files with 3907 additions and 18 deletions
70
Ryujinx.Graphics/Gal/Shader/SpirvAssembler.cs
Normal file
70
Ryujinx.Graphics/Gal/Shader/SpirvAssembler.cs
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
using System.IO;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace Ryujinx.Graphics.Gal.Shader.SPIRV
|
||||||
|
{
|
||||||
|
public class Assembler
|
||||||
|
{
|
||||||
|
private List<Instruction> Instructions;
|
||||||
|
|
||||||
|
public Assembler()
|
||||||
|
{
|
||||||
|
Instructions = new List<Instruction>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Write(Stream Output)
|
||||||
|
{
|
||||||
|
uint Bound = DoBindings();
|
||||||
|
|
||||||
|
var BinaryWriter = new BinaryWriter(Output);
|
||||||
|
|
||||||
|
BinaryWriter.Write((uint)BinaryForm.MagicNumber);
|
||||||
|
BinaryWriter.Write((uint)BinaryForm.VersionNumber);
|
||||||
|
BinaryWriter.Write((uint)BinaryForm.GeneratorMagicNumber);
|
||||||
|
BinaryWriter.Write((uint)Bound);
|
||||||
|
BinaryWriter.Write((uint)0); // Reserved for instruction schema
|
||||||
|
|
||||||
|
foreach (var Instruction in Instructions)
|
||||||
|
{
|
||||||
|
Instruction.Write(BinaryWriter);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Add(Instruction Instruction)
|
||||||
|
{
|
||||||
|
Instructions.Add(Instruction);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Add(Instruction[] Instructions)
|
||||||
|
{
|
||||||
|
foreach (Instruction Instruction in Instructions)
|
||||||
|
{
|
||||||
|
Add(Instruction);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Add(List<Instruction> Instructions)
|
||||||
|
{
|
||||||
|
foreach (Instruction Instruction in Instructions)
|
||||||
|
{
|
||||||
|
Add(Instruction);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private uint DoBindings()
|
||||||
|
{
|
||||||
|
uint Bind = 1;
|
||||||
|
|
||||||
|
foreach (var Instruction in Instructions)
|
||||||
|
{
|
||||||
|
if (Instruction.HoldsResultId)
|
||||||
|
{
|
||||||
|
Instruction.ResultId = Bind;
|
||||||
|
Bind++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return Bind;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
1121
Ryujinx.Graphics/Gal/Shader/SpirvBinaryForm.cs
Normal file
1121
Ryujinx.Graphics/Gal/Shader/SpirvBinaryForm.cs
Normal file
File diff suppressed because it is too large
Load diff
1146
Ryujinx.Graphics/Gal/Shader/SpirvDecompiler.cs
Normal file
1146
Ryujinx.Graphics/Gal/Shader/SpirvDecompiler.cs
Normal file
File diff suppressed because it is too large
Load diff
1332
Ryujinx.Graphics/Gal/Shader/SpirvInstruction.cs
Normal file
1332
Ryujinx.Graphics/Gal/Shader/SpirvInstruction.cs
Normal file
File diff suppressed because it is too large
Load diff
151
Ryujinx.Graphics/Gal/Shader/SpirvOperand.cs
Normal file
151
Ryujinx.Graphics/Gal/Shader/SpirvOperand.cs
Normal file
|
@ -0,0 +1,151 @@
|
||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace Ryujinx.Graphics.Gal.Shader.SPIRV
|
||||||
|
{
|
||||||
|
public abstract class Operand
|
||||||
|
{
|
||||||
|
public abstract int GetWordCount();
|
||||||
|
|
||||||
|
public abstract void Write(BinaryWriter BinaryWriter);
|
||||||
|
}
|
||||||
|
|
||||||
|
public class Id: Operand
|
||||||
|
{
|
||||||
|
private Instruction Instruction;
|
||||||
|
|
||||||
|
public Id(Instruction Instruction)
|
||||||
|
{
|
||||||
|
this.Instruction = Instruction;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Write(BinaryWriter BinaryWriter)
|
||||||
|
{
|
||||||
|
BinaryWriter.Write((uint)Instruction.ResultId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetWordCount()
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public abstract class Literal: Operand
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public class LiteralString: Literal
|
||||||
|
{
|
||||||
|
public byte[] Value;
|
||||||
|
|
||||||
|
public LiteralString(string String)
|
||||||
|
{
|
||||||
|
Value = Encoding.UTF8.GetBytes(String);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Write(BinaryWriter BinaryWriter)
|
||||||
|
{
|
||||||
|
BinaryWriter.Write(Value);
|
||||||
|
|
||||||
|
// Write remaining zero bytes
|
||||||
|
for (int i = 0; i < 4 - (Value.Length % 4); i++)
|
||||||
|
{
|
||||||
|
BinaryWriter.Write((byte)0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetWordCount()
|
||||||
|
{
|
||||||
|
return Value.Length / 4 + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object Object)
|
||||||
|
{
|
||||||
|
if (Object is LiteralString Other)
|
||||||
|
{
|
||||||
|
return this.Value == Other.Value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class LiteralNumber: Literal
|
||||||
|
{
|
||||||
|
public TypeCode Type;
|
||||||
|
|
||||||
|
public int Integer;
|
||||||
|
|
||||||
|
public float Float32;
|
||||||
|
|
||||||
|
public double Float64;
|
||||||
|
|
||||||
|
public LiteralNumber(int Value)
|
||||||
|
{
|
||||||
|
Integer = Value;
|
||||||
|
Type = Value.GetTypeCode();
|
||||||
|
}
|
||||||
|
|
||||||
|
public LiteralNumber(float Value)
|
||||||
|
{
|
||||||
|
Float32 = Value;
|
||||||
|
Type = Value.GetTypeCode();
|
||||||
|
}
|
||||||
|
|
||||||
|
public LiteralNumber(double Value)
|
||||||
|
{
|
||||||
|
Float64 = Value;
|
||||||
|
Type = Value.GetTypeCode();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Write(BinaryWriter BinaryWriter)
|
||||||
|
{
|
||||||
|
switch (Type)
|
||||||
|
{
|
||||||
|
case TypeCode.Int32:
|
||||||
|
BinaryWriter.Write(Integer);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case TypeCode.Single:
|
||||||
|
BinaryWriter.Write(Float32);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case TypeCode.Double:
|
||||||
|
BinaryWriter.Write(Float64);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetWordCount()
|
||||||
|
{
|
||||||
|
switch (Type)
|
||||||
|
{
|
||||||
|
case TypeCode.Int32:
|
||||||
|
case TypeCode.Single:
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
case TypeCode.Double:
|
||||||
|
return 2;
|
||||||
|
|
||||||
|
default:
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object Object)
|
||||||
|
{
|
||||||
|
if (Object is LiteralNumber Other && this.Type == Other.Type)
|
||||||
|
{
|
||||||
|
return this.Integer == Other.Integer
|
||||||
|
&& this.Float32 == Other.Float32
|
||||||
|
&& this.Float64 == Other.Float64;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -13,17 +13,23 @@ namespace Ryujinx.HLE.OsHle.Services.Am
|
||||||
|
|
||||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||||
|
|
||||||
|
private KEvent DisplayResolutionChangeEvent;
|
||||||
|
|
||||||
public ICommonStateGetter()
|
public ICommonStateGetter()
|
||||||
{
|
{
|
||||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||||
{
|
{
|
||||||
{ 0, GetEventHandle },
|
{ 0, GetEventHandle },
|
||||||
{ 1, ReceiveMessage },
|
{ 1, ReceiveMessage },
|
||||||
{ 5, GetOperationMode },
|
{ 5, GetOperationMode },
|
||||||
{ 6, GetPerformanceMode },
|
{ 6, GetPerformanceMode },
|
||||||
{ 8, GetBootMode },
|
{ 8, GetBootMode },
|
||||||
{ 9, GetCurrentFocusState }
|
{ 9, GetCurrentFocusState },
|
||||||
|
{ 60, GetDefaultDisplayResolution },
|
||||||
|
{ 61, GetDefaultDisplayResolutionChangeEvent }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
DisplayResolutionChangeEvent = new KEvent();
|
||||||
}
|
}
|
||||||
|
|
||||||
public long GetEventHandle(ServiceCtx Context)
|
public long GetEventHandle(ServiceCtx Context)
|
||||||
|
@ -78,5 +84,24 @@ namespace Ryujinx.HLE.OsHle.Services.Am
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long GetDefaultDisplayResolution(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
Context.ResponseData.Write(1280);
|
||||||
|
Context.ResponseData.Write(720);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long GetDefaultDisplayResolutionChangeEvent(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
int Handle = Context.Process.HandleTable.OpenHandle(DisplayResolutionChangeEvent);
|
||||||
|
|
||||||
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
||||||
|
|
||||||
|
Context.Ns.Log.PrintStub(LogClass.ServiceAm, "Stubbed.");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,3 +1,4 @@
|
||||||
|
using Ryujinx.HLE.Logging;
|
||||||
using Ryujinx.HLE.OsHle.Ipc;
|
using Ryujinx.HLE.OsHle.Ipc;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
@ -9,12 +10,32 @@ namespace Ryujinx.HLE.OsHle.Services.Pctl
|
||||||
|
|
||||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||||
|
|
||||||
public IParentalControlService()
|
private bool Initialized = false;
|
||||||
|
|
||||||
|
private bool NeedInitialize;
|
||||||
|
|
||||||
|
public IParentalControlService(bool NeedInitialize = true)
|
||||||
{
|
{
|
||||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||||
{
|
{
|
||||||
//...
|
{ 1, Initialize }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this.NeedInitialize = NeedInitialize;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long Initialize(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
if (NeedInitialize && !Initialized)
|
||||||
|
{
|
||||||
|
Initialized = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Context.Ns.Log.PrintWarning(LogClass.ServicePctl, "Service is already initialized!");
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -13,15 +13,23 @@ namespace Ryujinx.HLE.OsHle.Services.Pctl
|
||||||
{
|
{
|
||||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||||
{
|
{
|
||||||
{ 0, CreateService }
|
{ 0, CreateService },
|
||||||
|
{ 1, CreateServiceWithoutInitialize }
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public static long CreateService(ServiceCtx Context)
|
public long CreateService(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
MakeObject(Context, new IParentalControlService());
|
MakeObject(Context, new IParentalControlService());
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long CreateServiceWithoutInitialize(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
MakeObject(Context, new IParentalControlService(false));
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,6 +2,7 @@
|
||||||
using Ryujinx.Graphics.Gal.Shader;
|
using Ryujinx.Graphics.Gal.Shader;
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
namespace Ryujinx.ShaderTools
|
namespace Ryujinx.ShaderTools
|
||||||
{
|
{
|
||||||
|
@ -9,13 +10,11 @@ namespace Ryujinx.ShaderTools
|
||||||
{
|
{
|
||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
{
|
{
|
||||||
if (args.Length == 2)
|
if (args.Length == 4)
|
||||||
{
|
{
|
||||||
GlslDecompiler Decompiler = new GlslDecompiler();
|
|
||||||
|
|
||||||
GalShaderType ShaderType = GalShaderType.Vertex;
|
GalShaderType ShaderType = GalShaderType.Vertex;
|
||||||
|
|
||||||
switch (args[0].ToLower())
|
switch (args[1].ToLower())
|
||||||
{
|
{
|
||||||
case "v": ShaderType = GalShaderType.Vertex; break;
|
case "v": ShaderType = GalShaderType.Vertex; break;
|
||||||
case "tc": ShaderType = GalShaderType.TessControl; break;
|
case "tc": ShaderType = GalShaderType.TessControl; break;
|
||||||
|
@ -24,18 +23,34 @@ namespace Ryujinx.ShaderTools
|
||||||
case "f": ShaderType = GalShaderType.Fragment; break;
|
case "f": ShaderType = GalShaderType.Fragment; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
using (FileStream FS = new FileStream(args[1], FileMode.Open, FileAccess.Read))
|
using (FileStream Output = new FileStream(args[3], FileMode.Create))
|
||||||
|
using (FileStream FS = new FileStream(args[2], FileMode.Open, FileAccess.Read))
|
||||||
{
|
{
|
||||||
Memory Mem = new Memory(FS);
|
Memory Mem = new Memory(FS);
|
||||||
|
|
||||||
GlslProgram Program = Decompiler.Decompile(Mem, 0, ShaderType);
|
switch (args[0].ToLower())
|
||||||
|
{
|
||||||
|
case "glsl":
|
||||||
|
GlslDecompiler GlslDecompiler = new GlslDecompiler();
|
||||||
|
|
||||||
Console.WriteLine(Program.Code);
|
GlslProgram Program = GlslDecompiler.Decompile(Mem, 0, ShaderType);
|
||||||
|
|
||||||
|
Output.Write(System.Text.Encoding.UTF8.GetBytes(Program.Code));
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "spirv":
|
||||||
|
SpirvDecompiler SpirvDecompiler = new SpirvDecompiler();
|
||||||
|
|
||||||
|
Output.Write(SpirvDecompiler.Decompile(Mem, 0, ShaderType));
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Console.WriteLine("Usage: Ryujinx.ShaderTools [v|tc|te|g|f] shader.bin");
|
Console.WriteLine("Usage: Ryujinx.ShaderTools [spirv|glsl] [v|tc|te|g|f] shader.bin output.bin");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue