-
-
Notifications
You must be signed in to change notification settings - Fork 968
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
[WIP] Change: add support for next/previous railtype global hotkeys #7851
base: master
Are you sure you want to change the base?
Conversation
ff01b43
to
f29dd26
Compare
f29dd26
to
c42996b
Compare
This needs to be tested with keyboard layouts where the |
Some additional thoughts about this feature. Currently it switches to autorail but better in UX terms would be to stay with same chosen widget if one is selected. Then you can just switch railtype on the fly with say |
@LordAro, ok, I'll fix things mentioned above. In case of code style I just did by example and got smacked by CI once) Anyway, I will mark this as work-in-progress since I wish to change some logic (see #7851 (comment)) |
hi @grossws : exactly a year later, as if I planned this! (I did not :D). I was wondering if you are still interested in seeing this PR through? It seems you have a few comments open that needs resolving .. would be cool if you could! Tnx! |
Is it extensible to roadtypes also? :D No problem if not, just curious. |
@TrueBrain, I can possibly look into this and update PR but after Jan, 7th when I return from vacation. Quite eventful year it was ,) @andythenorth, didn't look into that, but it may be possible if it has similar implementation. I don't recall different road types at all, could you point what additional GRFs should I have to check that? |
5b9e88a
to
9f690f6
Compare
Possible modification: instead of adding Initially I put them into separate enum because I thought that it would be confusing to have Also, |
9f690f6
to
6064c3f
Compare
@TrueBrain, did you have some time to review this PR? |
This patch adds support for next/prev railtype global hotkeys which are basically autorail + special modifier which selects previous or next available railtype. If user selected any widget in railway build toolbox it won't switch to autorail but keep current widget instead. Such behaviour is useful for players who use PURR, Useless Tracks and similar NewGRFs for quick selection. I use PURR with semantic tracks coloring (e.g. white purr for waiting bays, red purr for prio zones etc). Current patch binds this feature to `GLOBAL+[` and `GLOBAL+]`. Signed-off-by: Konstantin Gribov <grossws@gmail.com>
6064c3f
to
12a00a9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Go for it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I disagree with @LordAro and think this implementation is quite messy and can cause some problems in the future.
Also, I'd expect these hotkeys to loop around tbh, not just stop at first/last railtype.
@@ -10,6 +10,15 @@ | |||
#ifndef WIDGETS_RAIL_WIDGET_H | |||
#define WIDGETS_RAIL_WIDGET_H | |||
|
|||
/** Global hotkeys modifiers for #RailToolbarWidgets */ | |||
enum RailToolbarWidgetModifiers { | |||
GHK_MOD_RAT_PREV_RAILTYPE = 9, ///< bit added to WID_RAT_AUTORAIL to select previous railtype |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Constant prefix (GHK_) doesn't match enum name (RailToolbarWidgetModifiers)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What naming convention would you recommend for it: WID_MOD_RAT_*
, `WIDM_RAT_* or something else?
GHK_MOD_RAT_PREV_RAILTYPE = 9, ///< bit added to WID_RAT_AUTORAIL to select previous railtype | ||
GHK_MOD_RAT_NEXT_RAILTYPE = 10, ///< bit added to WID_RAT_AUTORAIL to select next railtype | ||
|
||
GHK_MODB_RAT_PREV_RAILTYPE = 1 << GHK_MOD_RAT_PREV_RAILTYPE, ///< bitmask for GHK_MOD_RAT_PREV_RAILTYPE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you using bitshifting? You're not packing anything else there and only need a regular constant.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wanted them way out of WID_RAT_*
enum values since originally I used them as GHK_MODB_RAT_PREV_RAILTYPE | WID_RAT_AUTORAIL
in Hotkey
definition.
I didn't want to put them into RailToolbarWidgets
since this actions have no corresponding buttons in toolbar itself and are a bit more global.
extern RailType _last_built_railtype; | ||
RailType rt = _last_built_railtype; | ||
bool change_rt = false; | ||
if (HasBit(hotkey, GHK_MOD_RAT_PREV_RAILTYPE)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why HasBIt/ClrBit? It's just a regular value so use ==
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, they aren't bitmasks anymore
ClrBit(hotkey, GHK_MOD_RAT_PREV_RAILTYPE); | ||
change_rt = true; | ||
do { | ||
rt--; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can underflow if rt is already 0 (aka RAILTYPE_BEGIN)
@@ -793,6 +832,8 @@ static Hotkey railtoolbar_hotkeys[] = { | |||
Hotkey('T', "tunnel", WID_RAT_BUILD_TUNNEL), | |||
Hotkey('R', "remove", WID_RAT_REMOVE), | |||
Hotkey('C', "convert", WID_RAT_CONVERT_RAIL), | |||
Hotkey(WKC_L_BRACKET | WKC_GLOBAL_HOTKEY, "prev_railtype", GHK_MODB_RAT_PREV_RAILTYPE), | |||
Hotkey(WKC_R_BRACKET | WKC_GLOBAL_HOTKEY, "next_railtype", GHK_MODB_RAT_NEXT_RAILTYPE), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are these hotkeys in BuildRailToolbarWindow window that only ever deals with a single rail type? Switching railtypes is a function of main toolbar so hotkeys should go to MainToolbarWindow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, and what about implementation? Should it stay in rail_gui.cpp
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But are the hotkeys active when the rail toolbar isn't open? I would suggest they act only when the rail toolbar is open, to allow those hotkeys to be used for other uses like switching roadtypes when the road toolbar is open.
if (change_rt) { | ||
// get previous selected widget from current build toolbar if present | ||
auto *w = dynamic_cast<BuildRailToolbarWindow *>(FindWindowById(WC_BUILD_TOOLBAR, TRANSPORT_RAIL)); | ||
hotkey = (w == nullptr || w->last_user_action < WID_RAT_BUILD_NS) ? WID_RAT_AUTORAIL : w->last_user_action; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're not copying the bulldozer button state (WID_RAT_REMOVE).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, and also it selects autoraill if no widgets were previously selected.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're not copying the bulldozer button state (WID_RAT_REMOVE).
Could you elaborate on that? It will use w->last_user_action
for any WID_RAT_*
except WID_RAT_CAPTION
.
And selection autorail was by design, however I can remove it to make it orthogonal. I think select autorail is useful from UX perspective.
rt--; | ||
} while (rt > RAILTYPE_BEGIN && !HasRailtypeAvail(_local_company, rt)); | ||
} else if (HasBit(hotkey, GHK_MOD_RAT_NEXT_RAILTYPE)) { | ||
ClrBit(hotkey, GHK_MOD_RAT_NEXT_RAILTYPE); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A lot of duplicated code here, only real difference between these branches is loop direction. Pretty sure it can be implemented much simpler. At the very least you can get rid of change_rt (and ClrBit ofc).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll think on it. Originally I did it to avoid complex and error-prone logic conditions. If I can reduce it to something simple and easy to follow -- ok)
@ldpl, I'll comment on most of the review comment here.
Quite possible. I mark PR as
It was deliberate. First time I tried with wrapping around it was no as good ux as with current behavior. When it saturates at simple rail/last available rail it's easy to press Thanks for your review and looking forward for your reply ,) |
@grossws Are you still interested in working on this? I'm going through the PR backlog to find low-hanging fruit and this is on my list. |
@2TallTyler, yeah. I'd like some answers for @ldpl's review above about constant naming and in which file implementation should live. Likely I'll have a bit of time to update the PR and fix issues mentioned above this or next weekend |
I'd look at other widget enums for naming conventions, and I've seen other hotkey implementations (#10110) stay in the corresponding |
This patch adds support for next/prev railtype global hotkeys which are basically autorail + special modifier which selects previous or next available railtype.
Such behaviour is useful for players who use PURR, Useless Tracks and similar NewGRFs for quick selection.
I use PURR with semantic tracks coloring (e.g. white purr for waiting bays, red purr for prio zones etc).
Current patch binds this feature to
GLOBAL+[
andGLOBAL+]
.UPD If user explicitly selected some widget in railway build toolbar it won't switch to autorail.
Signed-off-by: Konstantin Gribov grossws@gmail.com