69 lines
2.2 KiB
C++
69 lines
2.2 KiB
C++
/*
|
|
MIT License
|
|
|
|
Copyright (c) 2026 Patoke
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
#include "4J_Profile.h"
|
|
#include <Windows.h>
|
|
#include <stdio.h>
|
|
|
|
C_4JProfile ProfileManager;
|
|
|
|
//str1k3r - GetSettings is basically snatched from smartCMD
|
|
void GetSettings(wchar_t *outPath, DWORD size)
|
|
{
|
|
GetModuleFileNameW(NULL, outPath, size); //str1k3r - unlike smartCMD we use wide so we can handle non english characters
|
|
wchar_t *lastSlash = wcsrchr(outPath, '\\');
|
|
if (lastSlash) *(lastSlash + 1) = '\0';
|
|
wcsncat_s(outPath, size, L"settings.dat", _TRUNCATE);
|
|
}
|
|
|
|
void C_4JProfile::LoadSettings(void* gs, size_t gsSize)
|
|
{
|
|
if (!gs || gsSize == 0) return;
|
|
|
|
wchar_t settingsPath[MAX_PATH] = {};
|
|
GetSettings(settingsPath, MAX_PATH);
|
|
|
|
FILE *file = NULL;
|
|
if (_wfopen_s(&file, settingsPath, L"rb") == 0 && file) //str1k3r - fun fact theres a version of fopen_s but for wide :3
|
|
{
|
|
fread(gs, 1, gsSize, file);
|
|
fclose(file);
|
|
}
|
|
}
|
|
|
|
void C_4JProfile::SaveSettings(void* gs, size_t gsSize)
|
|
{
|
|
if (!gs || gsSize == 0) return;
|
|
|
|
wchar_t settingsPath[MAX_PATH] = {};
|
|
GetSettings(settingsPath, MAX_PATH);
|
|
|
|
FILE *file = NULL;
|
|
if (_wfopen_s(&file, settingsPath, L"wb") == 0 && file)
|
|
{
|
|
fwrite(gs, 1, gsSize, file);
|
|
fclose(file);
|
|
}
|
|
}
|