mirror of
https://github.com/sfall-team/sfall.git
synced 2026-07-27 16:52:34 -07:00
45 lines
1.5 KiB
C++
45 lines
1.5 KiB
C++
/*
|
|
* sfall
|
|
* Copyright (C) 2009, 2010 The sfall team
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "..\main.h"
|
|
#include "..\FalloutEngine\Structs.h"
|
|
|
|
#include "Premade.h"
|
|
|
|
PremadeChar* premade;
|
|
|
|
void Premade::init() {
|
|
auto premadePaths = GetConfigList("misc", "PremadePaths", "", 512);
|
|
auto premadeFids = GetConfigList("misc", "PremadeFIDs", "", 512);
|
|
if (premadePaths.size() > 0 && premadeFids.size() > 0) {
|
|
int count = min(premadePaths.size(), premadeFids.size());
|
|
premade = new PremadeChar[count];
|
|
for (int i = 0; i < count; i++) {
|
|
auto path = "premade\\" + premadePaths[i];
|
|
strcpy_s(premade[i].path, 20, path.c_str());
|
|
premade[i].fid = atoi(premadeFids[i].c_str());
|
|
}
|
|
|
|
SafeWrite32(0x51C8D4, count);
|
|
SafeWrite32(0x4A7D76, (DWORD)premade);
|
|
SafeWrite32(0x4A8B1E, (DWORD)premade);
|
|
SafeWrite32(0x4A7E2C, (DWORD)premade + 20);
|
|
strcpy_s((char*)0x50AF68, 20, premade[0].path);
|
|
}
|
|
}
|