Add more spoofing options and added clang-format (#1020)

* feat(Spoofing): add spoofing
* feat(Spoofing): prepare code for player attach
* remove(PlayerAttach): isn't going to work due to netsync architecture
* fix(GUI): fix scaling
* feat(Project): add clang-format file
* feat(Classes): update classes
* fix(BlackHole): remove unnecessary cleanup
* fix(Formatting): fix formatting for initializer lists
* feat(clang-format): Set tab width and 1 space before comment

Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
This commit is contained in:
maybegreat48
2023-03-01 21:27:15 +00:00
committed by GitHub
parent 92aea20cd6
commit 97a8c5d60b
466 changed files with 55224 additions and 35596 deletions

View File

@ -1,10 +1,11 @@
#include "gta_util.hpp"
#include "handling_service.hpp"
#include "gta_util.hpp"
namespace big
{
handling_service::handling_service() :
m_profiles_folder(g_file_manager->get_project_folder("./handling_profiles"))
m_profiles_folder(g_file_manager->get_project_folder("./handling_profiles"))
{
g_handling_service = this;
@ -26,7 +27,7 @@ namespace big
if (!item.is_regular_file())
continue;
auto file_path = item.path();
auto file_path = item.path();
if (file_path.extension() == ".json")
{
auto profile_file = std::ifstream(file_path, std::ios::binary);
@ -44,16 +45,16 @@ namespace big
LOG(WARNING) << "Attempting to convert old handling files, this feature will be removed in the future.";
auto profile_file = std::ifstream(file_path, std::ios::binary);
auto profile = handling_profile();
profile_file.read(reinterpret_cast<char*>(&profile), 328); // hardcoded old size to prevent overreading
auto profile = handling_profile();
profile_file.read(reinterpret_cast<char*>(&profile), 328);// hardcoded old size to prevent overreading
profile_file.close();
const auto new_save = file_path.stem().string();
// this will make sure we only copy the fields we want to copy
nlohmann::json j = profile;
nlohmann::json j = profile;
const auto save_file_path = m_profiles_folder.get_file("./" + new_save + ".json");
auto save_file = std::ofstream(save_file_path.get_path(), std::ios::binary);
auto save_file = std::ofstream(save_file_path.get_path(), std::ios::binary);
save_file << j.dump(4);
// remove old file
@ -98,7 +99,7 @@ namespace big
auto profile = handling_profile(vehicle);
auto save_file = std::ofstream(save.get_path(), std::ios::binary);
auto save_file = std::ofstream(save.get_path(), std::ios::binary);
nlohmann::json j = profile;
save_file << j.dump(4);
save_file.close();