Custom Dolphin Emulator

  • Tomoya
  • Topic Author
More
8 years 11 months ago #1 by Tomoya Custom Dolphin Emulator was created by Tomoya
www.dropbox.com/sh/7f78x2czhknfrmr/AAAn_...6034%29.x64.zip?dl=0

That download link downloads a custom made Dolphin emulator that provides depth information access. Proof is below...

Warning: Spoiler!


You can find the official forum post of the custom Dolphin emulator here: forums.dolphin-emu.org/Thread-unofficial...lphin-custom-version

What I am requesting is to get MatsoDOF working. It would totally suite my texture pack. Here's what the issue is...



Can you please make MatsoDOF work with this custom Dolphin build? It would be soooooooooo awesome! You got depth access now :)
The following user(s) said Thank You: SunBroDave

Please Log in or Create an account to join the conversation.

  • crosire
More
8 years 11 months ago #2 by crosire Replied by crosire on topic Custom Dolphin Emulator
Just because Dolphin gives depth to its own post processing doesn't mean ReShade figures it out? It had depth before that custom build, there's really no difference, except that Dolphin's post processing shaders had no access to it. =)

Please Log in or Create an account to join the conversation.

  • Tomoya
  • Topic Author
More
8 years 11 months ago #3 by Tomoya Replied by Tomoya on topic Custom Dolphin Emulator
So there's no way to get MatsoDOF working with Twilight Princess?

Please Log in or Create an account to join the conversation.

  • sajittarius
More
8 years 11 months ago - 8 years 11 months ago #4 by sajittarius Replied by sajittarius on topic Custom Dolphin Emulator

Tomoya wrote: www.dropbox.com/sh/7f78x2czhknfrmr/AAAn_...6034%29.x64.zip?dl=0

That download link downloads a custom made Dolphin emulator that provides depth information access. Proof is below...





wait, those pics in the spoiler you posted, showing depth... Are those with reshade running?
Last edit: 8 years 11 months ago by sajittarius.

Please Log in or Create an account to join the conversation.

  • Tomoya
  • Topic Author
More
8 years 11 months ago #5 by Tomoya Replied by Tomoya on topic Custom Dolphin Emulator
What do you mean? ReShade is running while showing the pics, yes.

Please Log in or Create an account to join the conversation.

  • Tomoya
  • Topic Author
More
8 years 11 months ago #6 by Tomoya Replied by Tomoya on topic Custom Dolphin Emulator
You can tell by the bloom, color correction, etc.

Please Log in or Create an account to join the conversation.

  • SpinelessJelly
More
8 years 11 months ago #7 by SpinelessJelly Replied by SpinelessJelly on topic Custom Dolphin Emulator

Please Log in or Create an account to join the conversation.

  • SunBroDave
More
8 years 11 months ago #8 by SunBroDave Replied by SunBroDave on topic Custom Dolphin Emulator

Tomoya wrote:



GTFO

Please Log in or Create an account to join the conversation.

  • sajittarius
More
8 years 11 months ago #9 by sajittarius Replied by sajittarius on topic Custom Dolphin Emulator

Tomoya wrote: You can tell by the bloom, color correction, etc.


I was just asking because i think Crosire was saying the game does not give depth info, but it looks like it does from your pics?

Maybe your settings are wrong in the DoF shader then.

Please Log in or Create an account to join the conversation.

  • sajittarius
More
8 years 11 months ago #10 by sajittarius Replied by sajittarius on topic Custom Dolphin Emulator
Also, I just want to report Reshade 0.18.3 still does not accept hotkey input for Final Fantasy XIV, none of the v18.x versions do. Hopefully the 1.0 release does?

Please Log in or Create an account to join the conversation.

  • crosire
More
8 years 11 months ago - 8 years 11 months ago #11 by crosire Replied by crosire on topic Custom Dolphin Emulator

sajittarius wrote: I was just asking because i think Crosire was saying the game does not give depth info, but it looks like it does from your pics?

Those screens show Dolphins internal depth output. Doesn't mean ReShade grabs it.

sajittarius wrote: Also, I just want to report Reshade 0.18.3 still does not accept hotkey input for Final Fantasy XIV, none of the v18.x versions do. Hopefully the 1.0 release does?

The input system isn't going to be changed anymore, so this is a wontfix unfortunately.
Last edit: 8 years 11 months ago by crosire.

Please Log in or Create an account to join the conversation.

  • Tomoya
  • Topic Author
More
8 years 11 months ago #12 by Tomoya Replied by Tomoya on topic Custom Dolphin Emulator
Well Tino, the developer of the custom Dolphin, specifically said Dolphin literally provides Depth Access. It's only a matter of time for someone to write/port AO/DoF to Ishiiruka's shader framework. I hope somebody ports MatsoDOF into his framework... here's his DoF shader. Can somebody make this into Matso?
// Simple Depth of Field
[configuration]
[OptionRangeFloat]
GUIName = Blur Radius
OptionName = Blur
MinValue = 0.5
MaxValue = 2.0
DefaultValue = 1.0
StepAmount = 0.01

[OptionRangeFloat]
GUIName = Focus Position
OptionName = focus
MinValue = 0.0, 0.0
MaxValue = 1.0, 1.0
DefaultValue = 0.5, 0.5
StepAmount = 0.01, 0.01
[/configuration]

void main()
{
	float focusDepth = SampleDepthLocation(GetOption(focus).xy);
	float depth = SampleDepth();
	depth = clamp(abs((depth - focusDepth) / depth), 0.0, 1.0);
	float4 pixelColor = Sample();
	float2 unit = GetInvResolution() * GetOption(Blur);
	float2 coords = GetCoordinates();
	float4 color1 = SampleLocation(coords + unit * float2(-1.50, -0.66));
	float4 color2 = SampleLocation(coords + unit * float2(0.66, -1.50));
	float4 color3 = SampleLocation(coords + unit * float2(1.50, 0.66));
	float4 color4 = SampleLocation(coords + unit * float2(-0.66, 1.50));

	float4 blurred = (color1 + color2 + color3 + color4 + pixelColor) / 5.0;
	SetOutput(lerp(pixelColor, blurred, depth));
}

Please Log in or Create an account to join the conversation.

  • Tomoya
  • Topic Author
More
8 years 11 months ago - 8 years 11 months ago #13 by Tomoya Replied by Tomoya on topic Custom Dolphin Emulator
Here are some screenshots showing TIno's SSAO implemented in my HD project.

Warning: Spoiler!


All I need is MatsoDOF to finish it off and it will look BEAUTIFUL.
Last edit: 8 years 11 months ago by Tomoya.

Please Log in or Create an account to join the conversation.

We use cookies
We use cookies on our website. Some of them are essential for the operation of the forum. You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.