Skip to content

Commit 2cbee2c

Browse files
authored
Merge pull request #931 from psiberx/master
Various fixes
2 parents 187594c + d685ab1 commit 2cbee2c

File tree

3 files changed

+10
-26
lines changed

3 files changed

+10
-26
lines changed

src/reverse/Addresses.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ constexpr uint32_t CInitializationState_OnTick = 2447710505UL;
2020
constexpr uint32_t CPatches_BoundaryTeleport = 887623293UL;
2121
constexpr uint32_t CPatches_IntroMovie = 4056423627UL;
2222
constexpr uint32_t CPatches_Vignette = 1592528795UL;
23-
constexpr uint32_t CPatches_OptionsInit = 2920158527UL;
23+
constexpr uint32_t CPatches_OptionsInit = 4089777341UL; // Config::IConfigVar::Register
2424
#pragma endregion
2525

2626
#pragma region CPhotoMode
27-
constexpr uint32_t CPhotoMode_SetRecordID = 2826047827UL;
27+
constexpr uint32_t CPhotoMode_SetRecordID = 4052428712UL;
2828
#pragma endregion
2929

3030
#pragma region CRenderGlobal

src/reverse/ResourceAsyncReference.cpp

+3-9
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,12 @@ ResourceAsyncReference::ResourceAsyncReference(
1313

1414
uint64_t ResourceAsyncReference::Hash(const std::string& aPath)
1515
{
16-
// Should probably be moved to RED4ext.SDK after fixing RED4ext::RaRef
17-
// Needs normalization
18-
// 1) all lower case
19-
// 2) / becomes \
20-
// 3) /\/\\ becomes \
21-
22-
return RED4ext::FNV1a64(aPath.c_str());
16+
return RED4ext::ResourcePath(aPath.c_str());
2317
}
2418

2519
RED4ext::ScriptInstance ResourceAsyncReference::GetHandle() const
2620
{
27-
return const_cast<RED4ext::ResourceAsyncReference<void>*>(&m_reference);
21+
return nullptr;
2822
}
2923

3024
RED4ext::ScriptInstance ResourceAsyncReference::GetValuePtr() const
@@ -46,7 +40,7 @@ sol::object ResourceAsyncReference::GetLuaHash() const
4640

4741
RED4ext::CStackType stackType;
4842
stackType.type = s_uint64Type;
49-
stackType.value = GetHandle();
43+
stackType.value = const_cast<RED4ext::ResourceAsyncReference<void>*>(&m_reference);
5044

5145
return Converter::ToLua(stackType, lockedState);
5246
}

src/scripting/GameOptions.cpp

+5-15
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,7 @@ void GameOptions::Set(const std::string& category, const std::string& name, cons
220220
return;
221221

222222
const auto consoleLogger = spdlog::get("scripting");
223-
if (option->Set(value))
224-
consoleLogger->info(option->GetInfo());
225-
else
223+
if (!option->Set(value))
226224
{
227225
if (option->GetType() == GameOption::kString)
228226
consoleLogger->error("Failed to set game option '{}/{}', can't set string options right now.", category, name);
@@ -238,9 +236,7 @@ void GameOptions::SetBool(const std::string& category, const std::string& name,
238236
return;
239237

240238
const auto consoleLogger = spdlog::get("scripting");
241-
if (option->SetBool(value))
242-
consoleLogger->info(option->GetInfo());
243-
else
239+
if (!option->SetBool(value))
244240
{
245241
if (option->GetType() != GameOption::kBoolean)
246242
consoleLogger->error("Failed to set game option '{}/{}', not a boolean.", category, name);
@@ -256,9 +252,7 @@ void GameOptions::SetInt(const std::string& category, const std::string& name, i
256252
return;
257253

258254
const auto consoleLogger = spdlog::get("scripting");
259-
if (option->SetInt(value))
260-
consoleLogger->info(option->GetInfo());
261-
else
255+
if (!option->SetInt(value))
262256
{
263257
if (option->GetType() != GameOption::kInteger && option->GetType() != GameOption::kColor)
264258
consoleLogger->error("Failed to set game option '{}/{}', not an integer.", category, name);
@@ -274,9 +268,7 @@ void GameOptions::SetFloat(const std::string& category, const std::string& name,
274268
return;
275269

276270
const auto consoleLogger = spdlog::get("scripting");
277-
if (option->SetFloat(value))
278-
consoleLogger->info(option->GetInfo());
279-
else
271+
if (!option->SetFloat(value))
280272
{
281273
if (option->GetType() != GameOption::kFloat)
282274
consoleLogger->error("Failed to set game option '{}/{}', not a float.", category, name);
@@ -292,9 +284,7 @@ void GameOptions::Toggle(const std::string& category, const std::string& name)
292284
return;
293285

294286
const auto consoleLogger = spdlog::get("scripting");
295-
if (option->Toggle())
296-
consoleLogger->info(option->GetInfo());
297-
else
287+
if (!option->Toggle())
298288
{
299289
if (option->GetType() != GameOption::kBoolean)
300290
consoleLogger->error("Failed to set game option '{}/{}', not a boolean.", category, name);

0 commit comments

Comments
 (0)