|
| 1 | +using System; |
| 2 | +using System.IO; |
| 3 | +using ShaderPlayground.Core.Util; |
| 4 | + |
| 5 | +namespace ShaderPlayground.Core.Compilers.PowerVR |
| 6 | +{ |
| 7 | + internal sealed class PowerVRCompiler : IShaderCompiler |
| 8 | + { |
| 9 | + public string Name { get; } = CompilerNames.PowerVR; |
| 10 | + public string DisplayName { get; } = "PowerVR compiler"; |
| 11 | + public string Url { get; } = "https://community.imgtec.com/developers/powervr/tools/pvrshadereditor/"; |
| 12 | + public string Description { get; } = "PowerVR GLSL-ES shader compiler"; |
| 13 | + |
| 14 | + public string[] InputLanguages { get; } = { LanguageNames.Glsl }; |
| 15 | + |
| 16 | + public ShaderCompilerParameter[] Parameters { get; } = new[] |
| 17 | + { |
| 18 | + CommonParameters.CreateVersionParameter("powervr"), |
| 19 | + CommonParameters.GlslShaderStage |
| 20 | + }; |
| 21 | + |
| 22 | + public ShaderCompilerResult Compile(ShaderCode shaderCode, ShaderCompilerArguments arguments) |
| 23 | + { |
| 24 | + string shaderType; |
| 25 | + switch (arguments.GetString("ShaderStage")) |
| 26 | + { |
| 27 | + case "vert": |
| 28 | + shaderType = "-v"; |
| 29 | + break; |
| 30 | + |
| 31 | + case "tesc": |
| 32 | + shaderType = "-tc"; |
| 33 | + break; |
| 34 | + |
| 35 | + case "tese": |
| 36 | + shaderType = "-te"; |
| 37 | + break; |
| 38 | + |
| 39 | + case "geom": |
| 40 | + shaderType = "-g"; |
| 41 | + break; |
| 42 | + |
| 43 | + case "frag": |
| 44 | + shaderType = "-f"; |
| 45 | + break; |
| 46 | + |
| 47 | + case "comp": |
| 48 | + shaderType = "-c"; |
| 49 | + break; |
| 50 | + |
| 51 | + default: |
| 52 | + throw new InvalidOperationException(); |
| 53 | + } |
| 54 | + |
| 55 | + using (var tempFile = TempFile.FromShaderCode(shaderCode)) |
| 56 | + { |
| 57 | + var outputDisassemblyPath = Path.ChangeExtension(tempFile.FilePath, ".disasm"); |
| 58 | + var outputProfilePath = Path.ChangeExtension(tempFile.FilePath, ".prof"); |
| 59 | + |
| 60 | + ProcessHelper.Run( |
| 61 | + CommonParameters.GetBinaryPath("powervr", arguments, "GLSLESCompiler_Rogue.exe"), |
| 62 | + $"{tempFile.FilePath} {tempFile.FilePath} {shaderType} -disasm -profile", |
| 63 | + out var stdOutput, |
| 64 | + out var stdError); |
| 65 | + |
| 66 | + if (stdError == string.Empty) |
| 67 | + { |
| 68 | + stdError = stdOutput; |
| 69 | + } |
| 70 | + |
| 71 | + var outputDisassembly = FileHelper.ReadAllTextIfExists(outputDisassemblyPath); |
| 72 | + var outputProfile = FileHelper.ReadAllTextIfExists(outputProfilePath); |
| 73 | + |
| 74 | + FileHelper.DeleteIfExists(outputDisassemblyPath); |
| 75 | + FileHelper.DeleteIfExists(outputProfilePath); |
| 76 | + |
| 77 | + var selectedOutputIndex = stdError.Contains("failed") |
| 78 | + ? 2 |
| 79 | + : (int?) null; |
| 80 | + |
| 81 | + return new ShaderCompilerResult( |
| 82 | + true, |
| 83 | + null, |
| 84 | + selectedOutputIndex, |
| 85 | + new ShaderCompilerOutput("Disassembly", null, outputDisassembly), |
| 86 | + new ShaderCompilerOutput("Profiling", null, outputProfile), |
| 87 | + new ShaderCompilerOutput("Output", null, stdError)); |
| 88 | + } |
| 89 | + } |
| 90 | + } |
| 91 | +} |
0 commit comments