-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Special K: Initial logic for choosing SpecialK DLL name #912
Conversation
Seems like we didn't add any logic in #881 to track renamed ReShade DLLs, so we don't do it here for SpecialK. |
Added basic logic to check for single ReShade DLL name conflict, however this won't work when there are multiple ReShade DLL names chosen. We should add that. |
The ReShade+SpecialK DLL name checking logic should be useful in future when we add the option to load ReShade and SpecialK independently, without loading ReShade as a SpecialK plugin. |
Improved the logic on the SpecialK side for checking for these DLL name conflicts. Now we will check all ReShade DLL names for conflicts and we won't install SpecialK over ReShade if we find a conflict. We also try to backup existing DLLs with conflicting names which seemingly aren't SpecialK, or at least aren't a tracked SteamTinkerLaunch SpecialK installation (similar to what we do with ReShade in We need similar logic to this on the ReShade side, and then some testing to ensure basic functionality still works. After that, this is good to merge. |
DLL conflict check is now in place on the ReShade side. Aside from the usual langfiles and version bump, we need to do some more testing before this is ready. |
Dear god, this turned into a massive refactor of how SpecialK is handled. I did not expect this change to take this much work, but here we are. The latest commit did... a lot of changing, and we now cover several cases for ReShade DLL name conflicts. In developing this, I covered basically every test case I could think of, and normal happy-path installation still works as expected (and SpecialK won't reinstall each time, I made sure that this was the case). |
This is ready to be merged. |
Some work for #894.
Overview
This PR adds a combobox entry dropdown where a user can enter a custom name for the SpecialK DLL. Similar to the ReShade DLL name (#881), this is useful to fix issues where the wrong DLL name may be chosen, as well as to avoid conflicts with ReShade itself or other DLLs which have conflicting names with SpecialK.
The options in the combobox are
auto
,d3d11
,dxgi
,d3d9
,opengl32
. Theauto
option is the default value, and will fall through to the existing logic of picking the SpecialK DLL based on the rendering backend. The other options will, as expected, set the DLL name to the specific value chosen. The user can also enter their own DLL name, though just like with ReShade, a manual DLL override will need to be set so that the game knows to use it.Remaining Work
There are some features I would like to implement as part of this PR.
Removing Old DLLs
I would like to have a way to clear out old SpecialK DLLs once the name changes, similar to what we do for ReShade. If the user selectsauto
and it copies overd3d11.dll
, then they find out that doesn't work and switch todxgi.dll
, STL should clear out the previous DLL and copy over the new selecteddxgi.dll
. We should be able to do this feasibly as we track the installed DLLs withSpecialK_Enabled.txt
very similarly to how we handle ReShade. There's probably room for a broader refactor here to make the SpecialK and ReShade DLL-related logic more shared, but that can come later.We didn't implement this for #881, so we don't add it here.
DLL Naming Conflicts
Another feature I would like to add is some way to manage DLL name conflicts. ReShade goes to great lengths for this but if ReShade and SpecialK conflicted, we should catch that first. For example, if both ReShade and SpecialK tried to use
dxgi,dll
, we should handle this somehow.We should also consider cases where ReShade/SpecialK were installed first, and how to manage the DLL naming conflicts. In future, we will add an option to not load ReShade as a SpecialK plugin, so we should account for this scenario. In general there could already be a scenario where the DLL names conflict such as with a mod manager, ReShade is just one example. Here's two scenarios:
dxgi.dll,d3d9.dll
. We then try to install SpecialK, even just withauto
, and it conflicts with the existing ReShade DLLs.dxgi.dll
, then we try to install ReShade which by default usesdxgi.dll
by default. This will be a conflict.I am unsure how to handle this at time of writing. Perhaps the best solution is to simply not do anything except log/show notifier, and document this on the wiki.
Appending
.dll
ExtensionA straightforward one, make sure the chosen SpecialK DLL always ends with
.dll
, to avoid problems with copying over a file with an invalid/nonexistent extension. We do the same thing for ReShade.TODO:
.dll
.