You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Tweak command-line arguments to make them more UNIX-like
Also improves the command-line help text readability.
This commit is contained in:
committed by
Rémi Verschelde
parent
d8cd849a43
commit
1d757c43d7
@@ -45,24 +45,24 @@ Error EditorRun::run(const String &p_scene, const String p_custom_args, const Li
|
||||
int remote_port = (int)EditorSettings::get_singleton()->get("network/debug/remote_port");
|
||||
|
||||
if (resource_path != "") {
|
||||
args.push_back("-path");
|
||||
args.push_back("--path");
|
||||
args.push_back(resource_path.replace(" ", "%20"));
|
||||
}
|
||||
|
||||
if (true) {
|
||||
args.push_back("-rdebug");
|
||||
args.push_back("--remote-debug");
|
||||
args.push_back(remote_host + ":" + String::num(remote_port));
|
||||
}
|
||||
|
||||
args.push_back("-allow_focus_steal_pid");
|
||||
args.push_back("--allow_focus_steal_pid");
|
||||
args.push_back(itos(OS::get_singleton()->get_process_id()));
|
||||
|
||||
if (debug_collisions) {
|
||||
args.push_back("-debugcol");
|
||||
args.push_back("--debug-collision");
|
||||
}
|
||||
|
||||
if (debug_navigation) {
|
||||
args.push_back("-debugnav");
|
||||
args.push_back("--debug-navigation");
|
||||
}
|
||||
|
||||
int screen = EditorSettings::get_singleton()->get("run/window_placement/screen");
|
||||
@@ -101,33 +101,33 @@ Error EditorRun::run(const String &p_scene, const String p_custom_args, const Li
|
||||
case 1: { // centered
|
||||
Vector2 pos = screen_rect.position + ((screen_rect.size - desired_size) / 2).floor();
|
||||
args.push_back("-p");
|
||||
args.push_back(itos(pos.x) + "x" + itos(pos.y));
|
||||
args.push_back(itos(pos.x) + "," + itos(pos.y));
|
||||
} break;
|
||||
case 2: { // custom pos
|
||||
Vector2 pos = EditorSettings::get_singleton()->get("run/window_placement/rect_custom_position");
|
||||
pos += screen_rect.position;
|
||||
args.push_back("-p");
|
||||
args.push_back(itos(pos.x) + "x" + itos(pos.y));
|
||||
args.push_back(itos(pos.x) + "," + itos(pos.y));
|
||||
} break;
|
||||
case 3: { // force maximized
|
||||
Vector2 pos = screen_rect.position;
|
||||
args.push_back("-p");
|
||||
args.push_back(itos(pos.x) + "x" + itos(pos.y));
|
||||
args.push_back("-mx");
|
||||
args.push_back(itos(pos.x) + "," + itos(pos.y));
|
||||
args.push_back("-m");
|
||||
|
||||
} break;
|
||||
case 4: { // force fullscreen
|
||||
|
||||
Vector2 pos = screen_rect.position;
|
||||
args.push_back("-p");
|
||||
args.push_back(itos(pos.x) + "x" + itos(pos.y));
|
||||
args.push_back(itos(pos.x) + "," + itos(pos.y));
|
||||
args.push_back("-f");
|
||||
} break;
|
||||
}
|
||||
|
||||
if (p_breakpoints.size()) {
|
||||
|
||||
args.push_back("-bp");
|
||||
args.push_back("-b");
|
||||
String bpoints;
|
||||
for (const List<String>::Element *E = p_breakpoints.front(); E; E = E->next()) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user