From 29b1f660955a3e14bc4ef48a8cf9c4e1f0fce33e Mon Sep 17 00:00:00 2001 From: acidicoala <67734819+acidicoala@users.noreply.github.com> Date: Fri, 22 Aug 2025 22:01:54 +0500 Subject: [PATCH] Reformat project --- .clang-format | 22 -- .idea/codeStyles/Project.xml | 66 ++++- .idea/dictionaries/project.xml | 6 + CMakeLists.txt | 3 +- KoalaBox | 2 +- README.adoc | 2 +- res/dummy/README.md | 1 - res/dummy/cell/pad.h | 0 res/dummy/stdint.h | 0 res/dummy/stdio.h | 0 res/dummy/string.h | 0 src/exports/steam_api.cpp | 13 +- src/exports/steam_api_flat.cpp | 365 ++++++++++++++++-------- src/exports/steam_api_internal.cpp | 41 ++- src/exports/steam_api_unversioned.cpp | 89 ++++-- src/exports/steamclient.cpp | 12 +- src/main.cpp | 5 +- src/smoke_api/api.cpp | 26 +- src/smoke_api/api.hpp | 2 - src/smoke_api/cache.cpp | 12 +- src/smoke_api/cache.hpp | 2 - src/smoke_api/config.cpp | 19 +- src/smoke_api/config.hpp | 33 ++- src/smoke_api/globals.cpp | 2 - src/smoke_api/globals.hpp | 2 - src/smoke_api/smoke_api.cpp | 32 ++- src/smoke_api/smoke_api.hpp | 2 - src/smoke_api/types.cpp | 8 +- src/smoke_api/types.hpp | 11 +- src/steam_interface/steam_apps.cpp | 78 +++-- src/steam_interface/steam_apps.hpp | 5 +- src/steam_interface/steam_client.cpp | 2 - src/steam_interface/steam_client.hpp | 2 - src/steam_interface/steam_interface.cpp | 207 +++++--------- src/steam_interface/steam_interface.hpp | 4 +- src/steam_interface/steam_inventory.cpp | 66 +++-- src/steam_interface/steam_inventory.hpp | 5 +- src/steam_interface/steam_user.cpp | 21 +- src/steam_interface/steam_user.hpp | 4 +- src/virtuals/isteamapps.cpp | 61 ++-- src/virtuals/isteamclient.cpp | 103 ++++--- src/virtuals/isteaminventory.cpp | 116 +++++--- src/virtuals/isteamuser.cpp | 22 +- src/virtuals/steam_api_virtuals.hpp | 72 +++-- tools/CMakeLists.txt | 6 - tools/steamworks_downloader.cpp | 60 ++-- tools/steamworks_parser.cpp | 254 ++++++++--------- 47 files changed, 1085 insertions(+), 781 deletions(-) delete mode 100644 .clang-format delete mode 100644 res/dummy/README.md delete mode 100644 res/dummy/cell/pad.h delete mode 100644 res/dummy/stdint.h delete mode 100644 res/dummy/stdio.h delete mode 100644 res/dummy/string.h diff --git a/.clang-format b/.clang-format deleted file mode 100644 index 36a38c6..0000000 --- a/.clang-format +++ /dev/null @@ -1,22 +0,0 @@ ---- -Language: Cpp -BasedOnStyle: LLVM -Standard: c++20 -BreakBeforeBraces: Attach -LineEnding: LF -ColumnLimit: 100 -AlignAfterOpenBracket: BlockIndent -IndentWidth: 4 -ContinuationIndentWidth: 4 -NamespaceIndentation: All -UseTab: Never -PointerAlignment: Left -SortIncludes: true -AllowShortFunctionsOnASingleLine: Empty -FixNamespaceComments: false - -ExperimentalAutoDetectBinPacking: false -BinPackParameters: OnePerLine -AllowAllParametersOfDeclarationOnNextLine: true -BinPackArguments: false -AllowAllArgumentsOnNextLine: true diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml index b0d4229..11c54c1 100644 --- a/.idea/codeStyles/Project.xml +++ b/.idea/codeStyles/Project.xml @@ -1,5 +1,6 @@ +