You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks
Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
This commit is contained in:
@@ -55,21 +55,18 @@
|
||||
#endif
|
||||
|
||||
void OS_LinuxBSD::initialize() {
|
||||
|
||||
crash_handler.initialize();
|
||||
|
||||
OS_Unix::initialize_core();
|
||||
}
|
||||
|
||||
void OS_LinuxBSD::initialize_joypads() {
|
||||
|
||||
#ifdef JOYDEV_ENABLED
|
||||
joypad = memnew(JoypadLinux(Input::get_singleton()));
|
||||
#endif
|
||||
}
|
||||
|
||||
String OS_LinuxBSD::get_unique_id() const {
|
||||
|
||||
static String machine_id;
|
||||
if (machine_id.empty()) {
|
||||
if (FileAccess *f = FileAccess::open("/etc/machine-id", FileAccess::READ)) {
|
||||
@@ -84,7 +81,6 @@ String OS_LinuxBSD::get_unique_id() const {
|
||||
}
|
||||
|
||||
void OS_LinuxBSD::finalize() {
|
||||
|
||||
if (main_loop)
|
||||
memdelete(main_loop);
|
||||
main_loop = nullptr;
|
||||
@@ -99,24 +95,20 @@ void OS_LinuxBSD::finalize() {
|
||||
}
|
||||
|
||||
MainLoop *OS_LinuxBSD::get_main_loop() const {
|
||||
|
||||
return main_loop;
|
||||
}
|
||||
|
||||
void OS_LinuxBSD::delete_main_loop() {
|
||||
|
||||
if (main_loop)
|
||||
memdelete(main_loop);
|
||||
main_loop = nullptr;
|
||||
}
|
||||
|
||||
void OS_LinuxBSD::set_main_loop(MainLoop *p_main_loop) {
|
||||
|
||||
main_loop = p_main_loop;
|
||||
}
|
||||
|
||||
String OS_LinuxBSD::get_name() const {
|
||||
|
||||
#ifdef __linux__
|
||||
return "Linux";
|
||||
#elif defined(__FreeBSD__)
|
||||
@@ -129,7 +121,6 @@ String OS_LinuxBSD::get_name() const {
|
||||
}
|
||||
|
||||
Error OS_LinuxBSD::shell_open(String p_uri) {
|
||||
|
||||
Error ok;
|
||||
List<String> args;
|
||||
args.push_back(p_uri);
|
||||
@@ -144,12 +135,10 @@ Error OS_LinuxBSD::shell_open(String p_uri) {
|
||||
}
|
||||
|
||||
bool OS_LinuxBSD::_check_internal_feature_support(const String &p_feature) {
|
||||
|
||||
return p_feature == "pc";
|
||||
}
|
||||
|
||||
String OS_LinuxBSD::get_config_path() const {
|
||||
|
||||
if (has_environment("XDG_CONFIG_HOME")) {
|
||||
return get_environment("XDG_CONFIG_HOME");
|
||||
} else if (has_environment("HOME")) {
|
||||
@@ -160,7 +149,6 @@ String OS_LinuxBSD::get_config_path() const {
|
||||
}
|
||||
|
||||
String OS_LinuxBSD::get_data_path() const {
|
||||
|
||||
if (has_environment("XDG_DATA_HOME")) {
|
||||
return get_environment("XDG_DATA_HOME");
|
||||
} else if (has_environment("HOME")) {
|
||||
@@ -171,7 +159,6 @@ String OS_LinuxBSD::get_data_path() const {
|
||||
}
|
||||
|
||||
String OS_LinuxBSD::get_cache_path() const {
|
||||
|
||||
if (has_environment("XDG_CACHE_HOME")) {
|
||||
return get_environment("XDG_CACHE_HOME");
|
||||
} else if (has_environment("HOME")) {
|
||||
@@ -182,46 +169,37 @@ String OS_LinuxBSD::get_cache_path() const {
|
||||
}
|
||||
|
||||
String OS_LinuxBSD::get_system_dir(SystemDir p_dir) const {
|
||||
|
||||
String xdgparam;
|
||||
|
||||
switch (p_dir) {
|
||||
case SYSTEM_DIR_DESKTOP: {
|
||||
|
||||
xdgparam = "DESKTOP";
|
||||
} break;
|
||||
case SYSTEM_DIR_DCIM: {
|
||||
|
||||
xdgparam = "PICTURES";
|
||||
|
||||
} break;
|
||||
case SYSTEM_DIR_DOCUMENTS: {
|
||||
|
||||
xdgparam = "DOCUMENTS";
|
||||
|
||||
} break;
|
||||
case SYSTEM_DIR_DOWNLOADS: {
|
||||
|
||||
xdgparam = "DOWNLOAD";
|
||||
|
||||
} break;
|
||||
case SYSTEM_DIR_MOVIES: {
|
||||
|
||||
xdgparam = "VIDEOS";
|
||||
|
||||
} break;
|
||||
case SYSTEM_DIR_MUSIC: {
|
||||
|
||||
xdgparam = "MUSIC";
|
||||
|
||||
} break;
|
||||
case SYSTEM_DIR_PICTURES: {
|
||||
|
||||
xdgparam = "PICTURES";
|
||||
|
||||
} break;
|
||||
case SYSTEM_DIR_RINGTONES: {
|
||||
|
||||
xdgparam = "MUSIC";
|
||||
|
||||
} break;
|
||||
@@ -237,7 +215,6 @@ String OS_LinuxBSD::get_system_dir(SystemDir p_dir) const {
|
||||
}
|
||||
|
||||
void OS_LinuxBSD::run() {
|
||||
|
||||
force_quit = false;
|
||||
|
||||
if (!main_loop)
|
||||
@@ -251,7 +228,6 @@ void OS_LinuxBSD::run() {
|
||||
//uint64_t frame=0;
|
||||
|
||||
while (!force_quit) {
|
||||
|
||||
DisplayServer::get_singleton()->process_events(); // get rid of pending events
|
||||
#ifdef JOYDEV_ENABLED
|
||||
joypad->process_joypads();
|
||||
@@ -363,7 +339,6 @@ Error OS_LinuxBSD::move_to_trash(const String &p_path) {
|
||||
}
|
||||
|
||||
OS_LinuxBSD::OS_LinuxBSD() {
|
||||
|
||||
main_loop = nullptr;
|
||||
force_quit = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user