Shader Preset Wildcards

Thanks fella :smiling_face_with_three_hearts:

So if I save this as PNG and use it an overlay I will get what you showed up above?

1 Like

Here they are as seperate png files: https://drive.google.com/drive/folders/1_vJIjR__f0Q_z9K5U-8wqPA_w6qIvCYY?usp=share_link

1 Like

I did some tests:

Hereā€™s what it looks like as an overlay

Hereā€™s what it looks like with the original image and the matte set to No Matte HSM_BG_SOURCE_MATTE_TYPE = 2

Hereā€™s what it looks like with the 1% black image and the matte set to No Matte HSM_BG_SOURCE_MATTE_TYPE = 2 (Looks exactly the same as with the original image)

Hereā€™s what it looks like with matte set to Black HSM_BG_SOURCE_MATTE_TYPE = 0

So it looks like if you set it to No Matte you will get something which looks similar to the overlay brightness on the glass reflection, so:

HSM_BG_BLEND_MODE = 1
HSM_BG_SOURCE_MATTE_TYPE = 2

Although it doesnā€™t look exactly the same, I should look into what might be different than what the overlay is doing.

3 Likes

Ok thanks for taking the time to test this, iā€™ve had my base params set like this also when i was messing about with it.

On both the original overlay and the 1% black version iā€™ve noticed that when the screen is black or dark the png looks good.

When the screen brightens up parts of the transparent section of the overlay disappear (including the drop shadow on the inside of the overlay cutout), i especially focus on the scratch which is located top/middle of the glass.

Ok well with this in mind Iā€™ll most likely go down the regular overlay route for now. Iā€™ll just copy the slang files from a similar overlay etcā€¦

If you want can still use the placement image if you want it to place/scale the screen, and use the wildcards for that to avoid having to have use overrides on the video custom aspect ratio.

If you are using overlays you can probably change the retroarch video aspect ratio to core provided to improve performance.

Keep in mind though if you are using overlays that when I add additional lighting stuff to the whole viewport it will not affect the overlayā€¦

1 Like

I used the MegaBezel only for the size and placement. No more custom aspect stuff, Iā€™ve not tried the placement image yet so Iā€™ll definitely have a look at that.

Now youā€™ve said that about the upcoming lighting features Iā€™m kinda tempted to stop what Iā€™m doing for now lol!

1 Like

How does the core provided option differ from the ā€˜fullā€™ option in terms of performance?

Short answer is its significantly faster.

But you can only use core provided if you are using an overlay.

This is because core provided will leave black gaps at the sides of the screen. When you have an overlay it covers these areas so you donā€™t see them.

1 Like

Iā€™ll try that thanks fella, Iā€™ll be glad of the performance boost tbh as Iā€™m using the adv preset!!

It would be useful if wildcards can also detect NDS/3DS core screen mode (single screen, top/bottom, etc).

1 Like

Coding for Retroarch is uncommonly difficult. (Or so HSM tells me.)

All the wildcard features are general in nature, they arenā€™t core specific.

To set up an NDS or 3DS rom to automatically use one (or another) mode requires a game override.

Since user action cannot be avoided, I see no benefit for any wildcard feature.

1 Like

Iā€™m trying to use this wildcard: $GAME$.params It works fine with anything except game names that contain ā€œ&ā€. I tried replacing that with ā€œ_ā€ and ā€œ-ā€ and straight up ā€œandā€.

But nothing worked. Any tips?

Alright I solved this. It turned out that it was actually a long path/name problem, youā€™ll need to first load the shader with a short content path, set the override, then you can load any content normally even with long paths or weird characters like ā€œ&ā€.

1 Like

Can we see a little more info on exactly how you are using the wildcard?

If there is a path issue that shouldnā€™t exist it would be nice to call attention to it so @HyperspaceMadness can fix it.

1 Like

I have a GBA_Auto.slangp preset which has the following wildcards to override the bezel color based on my game or direcory:

$CONTENT-DIR$.params $GAME$.params

In the referenced params/auto folder there are directory_name.params files like:

Game Boy Advance (Grey).params

Which has the override to change the bezel:

bg_over = ā€œā€¦/ā€¦/ā€¦/textures/GBA_textures/GBA_Grey.pngā€

The games themselves are located in:

D:/Retro/Roms/Nintendo - Game Boy Advance/Game Boy Advance (Grey)/Castlevania - Aria of Sorrow (USA).zip

That wonā€™t load GBA_Auto.slangp, but if I pick something with a shorter name, and located in one less folder depth, it works fine.

That is two changes made at the same time, which is not best practice when troubleshooting.

Does it work with only shortening the name?

or

Does it work with only lessening the folder depth?

What does the log say when it fails to load?


If I may?

Iā€™m not exactly sure what HSM had in mind when he created the $CONTENT-DIR$ wildcard but if I were doing this I might try naming the texture ā€œGame Boy Advance (Grey).pngā€ and using

bg_over = ā€œā€¦/ā€¦/ā€¦/textures/GBA_textures/$CONTENT-DIR$.pngā€

to eliminate the need for the ā€œGame Boy Advance (Grey).paramsā€ file.

1 Like

Hmm, I did more tests and it seems none of that works anymore, but hereā€™s the log:

[WARN] [Shaders]: Could not load root preset for #reference entry: ā€œD:\RETRO\RetroArch\shaders\koko-aio_packs\LodanZark\GBA_presets\params\auto$CONTENT-DIR$.paramsā€. [ERROR] [GLCore]: Failed to create preset: ā€œD:\RETRO\RetroArch\shaders\koko-aio_packs\LodanZark\GBA_presets\GBA_Auto.slangpā€. [ERROR] [GLCore]: Failed to create filter chain: ā€œD:\RETRO\RetroArch\shaders\koko-aio_packs\LodanZark\GBA_presets\GBA_Auto.slangpā€. Falling back to stock. [INFO] [slang]: Building pass #0 (N/A) [INFO] [GLCore]: Not using frame history. [INFO] [GLCore]: Not using framebuffer feedback.

Edit: now I rememberd why Iā€™m using a separate params file, it lets me or other users rename the params files to match their folder names without altering the image overlays, because those overlays are used by other non-auto presets (auto is just an optional preset and not practical for normal setups).

1 Like