2018-03-15 20:06:24 -04:00
|
|
|
|
using Ryujinx.Audio;
|
2018-10-17 13:15:50 -04:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2018-02-20 15:09:23 -05:00
|
|
|
|
using Ryujinx.Graphics.Gal;
|
|
|
|
|
using Ryujinx.Graphics.Gal.OpenGL;
|
2018-06-10 20:46:42 -04:00
|
|
|
|
using Ryujinx.HLE;
|
2018-02-04 18:08:20 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx
|
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
2019-02-12 18:24:11 -05:00
|
|
|
|
public static string ApplicationDirectory => AppDomain.CurrentDomain.BaseDirectory;
|
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
2018-02-08 19:43:22 -05:00
|
|
|
|
Console.Title = "Ryujinx Console";
|
|
|
|
|
|
2019-03-03 20:45:25 -05:00
|
|
|
|
IGalRenderer renderer = new OglRenderer();
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-11-14 21:22:50 -05:00
|
|
|
|
IAalOutput audioOut = InitializeAudioEngine();
|
2018-03-15 20:06:24 -04:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
Switch device = new Switch(renderer, audioOut);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2019-02-12 18:24:11 -05:00
|
|
|
|
Configuration.Load(Path.Combine(ApplicationDirectory, "Config.jsonc"));
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Configuration.Configure(device);
|
2019-01-30 21:49:15 -05:00
|
|
|
|
|
|
|
|
|
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
|
|
|
|
|
AppDomain.CurrentDomain.ProcessExit += CurrentDomain_ProcessExit;
|
2018-04-24 14:57:39 -04:00
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
|
if (args.Length == 1)
|
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(args[0]))
|
|
|
|
|
{
|
2018-10-30 21:43:02 -04:00
|
|
|
|
string[] romFsFiles = Directory.GetFiles(args[0], "*.istorage");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
if (romFsFiles.Length == 0)
|
2018-04-06 01:02:13 -04:00
|
|
|
|
{
|
2018-10-30 21:43:02 -04:00
|
|
|
|
romFsFiles = Directory.GetFiles(args[0], "*.romfs");
|
2018-04-06 01:02:13 -04:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
if (romFsFiles.Length > 0)
|
2018-02-04 18:08:20 -05:00
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as cart with RomFS.");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadCart(args[0], romFsFiles[0]);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as cart WITHOUT RomFS.");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadCart(args[0]);
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (File.Exists(args[0]))
|
|
|
|
|
{
|
2018-09-08 14:33:27 -04:00
|
|
|
|
switch (Path.GetExtension(args[0]).ToLowerInvariant())
|
|
|
|
|
{
|
|
|
|
|
case ".xci":
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as XCI.");
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadXci(args[0]);
|
2018-09-08 14:33:27 -04:00
|
|
|
|
break;
|
|
|
|
|
case ".nca":
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as NCA.");
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadNca(args[0]);
|
2018-09-08 14:33:27 -04:00
|
|
|
|
break;
|
|
|
|
|
case ".nsp":
|
2019-01-24 20:51:28 -05:00
|
|
|
|
case ".pfs0":
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as NSP.");
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadNsp(args[0]);
|
2018-09-08 14:33:27 -04:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.PrintInfo(LogClass.Application, "Loading as homebrew.");
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.LoadProgram(args[0]);
|
2018-09-08 14:33:27 -04:00
|
|
|
|
break;
|
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
New shader translator implementation (#654)
* Start implementing a new shader translator
* Fix shift instructions and a typo
* Small refactoring on StructuredProgram, move RemovePhis method to a separate class
* Initial geometry shader support
* Implement TLD4
* Fix -- There's no negation on FMUL32I
* Add constant folding and algebraic simplification optimizations, nits
* Some leftovers from constant folding
* Avoid cast for constant assignments
* Add a branch elimination pass, and misc small fixes
* Remove redundant branches, add expression propagation and other improvements on the code
* Small leftovers -- add missing break and continue, remove unused properties, other improvements
* Add null check to handle empty block cases on block visitor
* Add HADD2 and HMUL2 half float shader instructions
* Optimize pack/unpack sequences, some fixes related to half float instructions
* Add TXQ, TLD, TLDS and TLD4S shader texture instructions, and some support for bindless textures, some refactoring on codegen
* Fix copy paste mistake that caused RZ to be ignored on the AST instruction
* Add workaround for conditional exit, and fix half float instruction with constant buffer
* Add missing 0.0 source for TLDS.LZ variants
* Simplify the switch for TLDS.LZ
* Texture instructions related fixes
* Implement the HFMA instruction, and some misc. fixes
* Enable constant folding on UnpackHalf2x16 instructions
* Refactor HFMA to use OpCode* for opcode decoding rather than on the helper methods
* Remove the old shader translator
* Remove ShaderDeclInfo and other unused things
* Add dual vertex shader support
* Add ShaderConfig, used to pass shader type and maximum cbuffer size
* Move and rename some instruction enums
* Move texture instructions into a separate file
* Move operand GetExpression and locals management to OperandManager
* Optimize opcode decoding using a simple list and binary search
* Add missing condition for do-while on goto elimination
* Misc. fixes on texture instructions
* Simplify TLDS switch
* Address PR feedback, and a nit
2019-04-17 19:57:08 -04:00
|
|
|
|
else
|
2019-02-17 04:52:16 -05:00
|
|
|
|
{
|
|
|
|
|
Logger.PrintWarning(LogClass.Application, "Please specify a valid XCI/NCA/NSP/PFS0/NRO file");
|
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-02-17 04:52:16 -05:00
|
|
|
|
Logger.PrintWarning(LogClass.Application, "Please specify the folder with the NSOs/IStorage or a NSO/NRO.");
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
using (GlScreen screen = new GlScreen(device, renderer))
|
2018-02-04 18:08:20 -05:00
|
|
|
|
{
|
2018-10-30 21:43:02 -04:00
|
|
|
|
screen.MainLoop();
|
2018-08-16 19:47:36 -04:00
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
device.Dispose();
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-30 21:43:02 -04:00
|
|
|
|
audioOut.Dispose();
|
2019-02-11 07:00:32 -05:00
|
|
|
|
|
|
|
|
|
Logger.Shutdown();
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
2018-11-14 21:22:50 -05:00
|
|
|
|
|
2019-01-30 21:49:15 -05:00
|
|
|
|
private static void CurrentDomain_ProcessExit(object sender, EventArgs e)
|
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.Shutdown();
|
2019-01-30 21:49:15 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var exception = e.ExceptionObject as Exception;
|
|
|
|
|
|
|
|
|
|
Logger.PrintError(LogClass.Emulation, $"Unhandled exception caught: {exception}");
|
|
|
|
|
|
|
|
|
|
if (e.IsTerminating)
|
|
|
|
|
{
|
2019-02-11 07:00:32 -05:00
|
|
|
|
Logger.Shutdown();
|
2019-01-30 21:49:15 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 21:22:50 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Picks an <see cref="IAalOutput"/> audio output renderer supported on this machine
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>An <see cref="IAalOutput"/> supported by this machine</returns>
|
|
|
|
|
private static IAalOutput InitializeAudioEngine()
|
|
|
|
|
{
|
|
|
|
|
if (SoundIoAudioOut.IsSupported)
|
|
|
|
|
{
|
|
|
|
|
return new SoundIoAudioOut();
|
|
|
|
|
}
|
|
|
|
|
else if (OpenALAudioOut.IsSupported)
|
|
|
|
|
{
|
|
|
|
|
return new OpenALAudioOut();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return new DummyAudioOut();
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-04 18:08:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|