-
Notifications
You must be signed in to change notification settings - Fork 192
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
Maniacs Feature - "Skip Dialogs" from Fatal Mix. #3147
base: master
Are you sure you want to change the base?
Conversation
I had thought about this, e.g. even if you config a text speed (slow), it could exists another new code for dialogs, that allows player press a key to accelerate the dialogs. While enter is pressed, dialog speed up, if not, then its config speed. What do you think? |
FYI: There is already "message appears without delay" when holding shift. So you can already hold shift and hammer decision for the same result. |
yeah, what I did was similar to what was asked at #2490 I'm thinking about applying the following flags: |
That will help me seeing how to implement the alternative skip dialogs. Update game_interpreter.cpp
ae99606
to
91871fd
Compare
Do you want this auto-enter behaviour available in general or just when this fatal mix skip option is enabled? |
Oh boy, lemme try to remember how I set this up... If I remember correctly, my code was very similar to the fatal mix behavior. Right now, maybe we should stick it to the fatal mix? Maybe in the future, would be interesting to have a way of accessing maniacs commands even with it disabled...? |
Considering it is a debug feature it could be an option in the settings whether you want "Instant text" with Shift or "Instant auto enter text" with Shift. 🤔 |
Sure, it could also come with a setting |
Hold ESC to skip all dialogs when in Debug Mode.
Things to consider:
strlen(text_index) < 3
. Since the textboxes can stop while being bigger than 3 characters,if the com.string has more than 4 lines of text.
Player::debug_flag
, so people can use it in their games(both shift and this skip should be activated?)