-
Notifications
You must be signed in to change notification settings - Fork 197
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
Allow to set more command line parameters in RPG_RT.ini's [EasyRPG] section #627
Comments
Available commands (for discussion): [EasyRPG]
Encoding=1252
disable-audio=0
disable-rtp=0
hide-title=1
new-game=0 About fullscreen/window: It might be better to not use boolean for this, but instead: displaymode=window
displaymode=fullscreen |
I would like to have also For the window and fullscreen they could also be replaceable as alternate options. In case of parameter conflict, the last line might be the proper to use (drop warnings when happening?). About duplicates I'm not sure how INIReader handles this. And case insensitive support for all of them, if not done already (is INIReader case insensitive already?). About |
Actually you are right about |
Reduce use of global variables for flags.
Reduce use of global variables for flags.
A while ago we had in IRC a discussion concerning which arguments are useful in ini and which are useless and how to behave when the Game Browser is used. I can't remember the full discussion so, from scratch. Global: Applies for all games started from game browser. This shall be only for things that don't alter the game behaviour. As a long term solution the game browser should get game settings (#666) that can be edited. Arguments have preference over INI
Steam compat remaps F12 to Shift-F12 to allow screenshots. To sum up: When it is used to alter global behaviour (needs a way to be configured someday) it is not available as a INI setting. Corner case are project-path and save-path. |
I think |
Maybe add an extra argument (--expert ???) that enables game only parameters in the game browser... And then log that this causes problems. |
A minor detail: to keep consistency with the existing parameters, could the new parameters ignore the hyphen so that |
Does not really matter really, the ini reader does not even care for uppercase or lowercase currently, so imo we could easily support with-hyphen and without-hyphen commands in one go. Or decide for one :V. |
I would say we can postbone this one because the initial motivation (.flow) is solved. |
Will postbone this to 0.6 or 0.5.1, too much work. |
It would be greate to have more options. For example this game skips the start screen if I start the game with the default RPG Maker 2003 Player (Presumably there is a patch for this?). It would be nice if I could set the |
Hi, just found this thread, is the "window/fullscreen" parameters is supported? |
The seed argument allows to replay randomness in a deterministic form. Some behavior and replay is only reproducible using the same seed in order to make the random behave as in was saved in logs. It is also tightly related to the record and replay feature (useful for demo recording without wasting too much space compared to video recording. It is also useful for unit tests where randomness-dependent events need to be compared. |
This way allows to set useful persistent parameters by default when not set from the command line.
If set again from the command line interface, they would override them.
encoding
is already implemented. Other useful features would benew-game
e.g. for games with BetterAEP,window
and other.The text was updated successfully, but these errors were encountered: