-
Notifications
You must be signed in to change notification settings - Fork 384
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
Preferred core picker is intransparent and inflexible #3960
Comments
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
I think it would be fine. If you picked e.g. Snes9x your preference would just be ignored. It would be the same as if your preferred core had thrown an exception on init—which I believe is currently never done based on the sysID, but is done based on the mapper. |
Right, the way core choosing currently works just ignores cores that are specified that can't actually run the given system. But then what actually determines what core is preferred when a satellaview rom is loaded? Currently, it's the normal bsnes core, but why? There's no preference set and it's effectively pure chance that it's not the subframe core that gets picked. I'm suggesting to make every choice explicit and automatically generated to prevent such headaches when considering core order and preference. |
I disagree. While it may make sense to list Satellaview separately from SNES, you can't extend that to every sysID. There would effectively be duplicate settings for GB/GBC, the TG-16 family, SG-1000 and SMS—users would have to keep these in sync manually. |
Right, that's part of that change. I don't really know these systems well enough to judge whether a separation or merge makes more logical sense, but if the system id is different, I feel like allowing different preferences make sense. If you don't want that duplication, we could also merge all identical lists (for example GB/GBC, as all emulators providing one also provide the other). This should then ideally be communicated through the UI. |
That's fine. Giving each set a manual label wouldn't be much of an improvement IMO. The order within each set is already good since the first was used as the label. |
Have updated the branch. I could incorporate even more of it into master without forcing the changed auto-generated logic. One thing I noticed while doing the changes was that for Also, default core preferences are now applied even when the user has changed defaults, which is currently not the case. To be fair this is only relevant in very niche scenarios, but still a logical improvement. |
The current core preferences picker (
Config
->Preferred Cores
) is not fully transparent in how it works, and does not allow configuring everything. On top of that, it is also manually maintained and needs to be updated when cores get added or modified, which does / did not always happen.Let's take this example:
What happens when
Gambatte
is selected here? The preferred core forGB
andGBC
will be set toGambatte
. The fact that bothGB
andGBC
are affected is not made clear anywhere and can only be determined by testing it out.One might argue that this could be "user-friendly" by not overloading them with redundant options, but I'd say having preferences made explicit is preferable over implicitly assuming
GB
impliesGBC
.We can already see that it is impossible to set different core preferences for
GB
andGBC
games, and the same is true for a number of other options.One thing I was only recently made aware of in the context of #3635: It is currently impossible to choose the
SubBSNESv115+
core for Satellaview games, even though it does have the correspondingCoreConstructor
attribute, because it isn't exposed in the preferred core picker. Adding it to theSNES
group is problematic because then the preference forSNES
is applied toSatellaview
, even though some SNES cores don't support Satellaview at all!My suggestion is to make choices for all SystemIDs explicit and automatically generated. That would guarantee that
CoreConstructor
attributes have user-facing meaningI have #4033 that shows my suggested approach.
see also #2289
The text was updated successfully, but these errors were encountered: