Added a function extension for vanilla metarule3 function

Added SET_HORRIGAN_ENCOUNTER function to metarule3.
Updated German translation.
This commit is contained in:
NovaRain
2020-07-24 21:29:54 +08:00
parent 37e3ccb410
commit 9e79b01a27
10 changed files with 147 additions and 4 deletions
+11 -3
View File
@@ -234,8 +234,8 @@
#define party_member_list_all party_member_list(1)
// fake perks/traits add mode flags
#define ADD_PERK_MODE_TRAIT (1) // add to the player's traits
#define ADD_PERK_MODE_PERK (2) // add to the player's perks
#define ADD_PERK_MODE_TRAIT (1) // add to the player's traits list
#define ADD_PERK_MODE_PERK (2) // add to the player's perks list
#define ADD_PERK_MODE_REMOVE (4) // remove from the list of selectable perks (after added to the player)
// instantly apply the item to dude_obj (w/o animation)
@@ -249,7 +249,15 @@
if (get_flags(obj1) bwand FLAG_MULTIHEX) distance--; \
if (get_flags(obj2) bwand FLAG_MULTIHEX) distance--
// sfall_funcX macros
/* sfall metalure3 function macros */
#define SET_HORRIGAN_ENCOUNTER (200)
// sets the number of days (range 1...127) for the Frank Horrigan encounter, or disable the encounter if days is set to 0
#define set_horrigan_days(day) metarule3(SET_HORRIGAN_ENCOUNTER, day, 0, 0)
/* sfall_funcX macros */
#define add_global_timer_event(time, fixedParam) sfall_func2("add_g_timer_event", time, fixedParam)
#define add_iface_tag sfall_func0("add_iface_tag")
#define add_trait(traitID) sfall_func1("add_trait", traitID)
+1 -1
View File
@@ -1,6 +1,6 @@
[sfall]
SaveInCombat=Momentan kein Speichern möglich.
KarmaGain=Du gewinnst %d Karma.
KarmaGain=Du erhältst %d Karma.
KarmaLoss=Du verlierst %d Karma.
HighlightFail1=Du trägst keinen Bewegungssensor.
HighlightFail2=Dein Bewegungssensor ist entladen.
+1
View File
@@ -52,6 +52,7 @@ DWORD* ptr_crnt_func = reinterpret_cast<DWORD*>(_crnt_func);
DWORD* ptr_curr_font_num = reinterpret_cast<DWORD*>(_curr_font_num);
DWORD* ptr_curr_pc_stat = reinterpret_cast<DWORD*>(_curr_pc_stat);
DWORD* ptr_curr_stack = reinterpret_cast<DWORD*>(_curr_stack);
TProgram** ptr_currentProgram = reinterpret_cast<TProgram**>(_currentProgram);
DWORD* ptr_cursor_line = reinterpret_cast<DWORD*>(_cursor_line);
BYTE* ptr_DARK_GREY_Color = reinterpret_cast<BYTE*>(_DARK_GREY_Color);
BYTE* ptr_DarkGreenColor = reinterpret_cast<BYTE*>(_DarkGreenColor);
+2
View File
@@ -68,6 +68,7 @@
#define _curr_font_num 0x51E3B0
#define _curr_pc_stat 0x6681AC
#define _curr_stack 0x59E96C
#define _currentProgram 0x59E78C
#define _currentWindow 0x51DCB8
#define _cursor_line 0x664514
#define _debug_func 0x51DF04
@@ -337,6 +338,7 @@ extern DWORD* ptr_crnt_func;
extern DWORD* ptr_curr_font_num;
extern DWORD* ptr_curr_pc_stat;
extern DWORD* ptr_curr_stack;
extern TProgram** ptr_currentProgram;
extern DWORD* ptr_cursor_line;
extern BYTE* ptr_DARK_GREY_Color;
extern BYTE* ptr_DarkGreenColor;
+2
View File
@@ -37,6 +37,7 @@
#include "LoadOrder.h"
#include "Logging.h"
#include "Message.h"
#include "MetaruleExtender.h"
#include "Movies.h"
#include "Objects.h"
#include "PartyControl.h"
@@ -103,6 +104,7 @@ static void __stdcall ResetState(DWORD onLoad) { // OnGameReset & OnBeforeGameSt
PartyControl_OnGameLoad();
ResetExplosionRadius();
BarBoxes_OnGameLoad();
MetaruleExtenderReset();
ScriptExtender_OnGameLoad();
if (isDebug) {
char* str = (onLoad) ? "on Load" : "on Exit";
+96
View File
@@ -0,0 +1,96 @@
/*
* sfall
* Copyright (C) 2008-2020 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.h"
#define HorriganEncounterDays (0x4C06EA)
#define HorriganEncounterCheck (0x4C06D8)
static signed char HorriganEncounterDefaultDays = 35;
static signed char HorriganEncounterSetDays = 35;
static bool HorriganEncounterDisabled = false;
enum MetaruleFunction : long {
SET_HORRIGAN_ENCOUNTER = 200, // sets the number of days for the Frank Horrigan encounter or disable encounter
};
/*
args - contains a pointer to an array (size of 3) of arguments for the metarule3 function [located on the stack]
*/
static long __fastcall op_metarule3_ext(long metafunc, long* args) {
long result = 0;
switch (static_cast<MetaruleFunction>(metafunc)) {
case SET_HORRIGAN_ENCOUNTER: {
long argValue = args[0]; // arg1
if (argValue <= 0) { // disable Horrigan encounter
if (*(BYTE*)HorriganEncounterCheck == CODETYPE_JumpNZ) {
SafeWrite8(HorriganEncounterCheck, CODETYPE_JumpShort); // skip the Horrigan encounter check
HorriganEncounterDisabled = true;
}
} else {
if (argValue > 127) argValue = 127;
SafeWrite8(HorriganEncounterDays, static_cast<BYTE>(argValue));
HorriganEncounterSetDays = static_cast<BYTE>(argValue);
}
break;
}
default:
DebugPrintf("\nOPCODE ERROR: metarule3(%d, ...) - metarule function number does not exist.\n > Script: %s, procedure %s.",
metafunc, (*ptr_currentProgram)->fileName, FindCurrentProc(*ptr_currentProgram));
break;
}
return result;
}
static void __declspec(naked) op_metarule3_hack() {
static const DWORD op_metarule3_hack_Ret = 0x45732C;
__asm {
cmp ecx, 111;
jnz extended;
retn;
extended:
lea edx, [esp + 0x4C - 0x4C + 4]; // pointer to args
// swap arg1 <> arg3
mov eax, [edx]; // get: arg3
xchg eax, [edx + 2*4]; // get: arg1, set: arg3 > arg1
mov [edx], eax; // set: arg1 > arg3
//
call op_metarule3_ext; // ecx - metafunc arg
add esp, 4;
jmp op_metarule3_hack_Ret;
}
}
void MetaruleExtenderReset() {
if (HorriganEncounterSetDays != HorriganEncounterDefaultDays) {
SafeWrite8(HorriganEncounterDays, HorriganEncounterDefaultDays);
}
if (HorriganEncounterDisabled) {
HorriganEncounterDisabled = false;
SafeWrite8(HorriganEncounterCheck, CODETYPE_JumpNZ); // enable
}
}
void MetaruleExtenderInit() {
// Keep default value
HorriganEncounterDefaultDays = *(BYTE*)HorriganEncounterDays;
MakeCall(0x457322, op_metarule3_hack);
}
+22
View File
@@ -0,0 +1,22 @@
/*
* sfall
* Copyright (C) 2008-2020 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/>.
*/
#pragma once
void MetaruleExtenderInit();
void MetaruleExtenderReset();
+2
View File
@@ -297,6 +297,7 @@
<ClInclude Include="Interface.h" />
<ClInclude Include="Karma.h" />
<ClInclude Include="LoadOrder.h" />
<ClInclude Include="MetaruleExtender.h" />
<ClInclude Include="MiscPatches.h" />
<ClInclude Include="PlayerModel.h" />
<ClInclude Include="TalkingHeads.h" />
@@ -371,6 +372,7 @@
<ClCompile Include="Interface.cpp" />
<ClCompile Include="Karma.cpp" />
<ClCompile Include="LoadOrder.cpp" />
<ClCompile Include="MetaruleExtender.cpp" />
<ClCompile Include="MiscPatches.cpp" />
<ClCompile Include="PlayerModel.cpp" />
<ClCompile Include="TalkingHeads.cpp" />
+6
View File
@@ -223,6 +223,9 @@
<ClInclude Include="MiscPatches.h">
<Filter>Headers</Filter>
</ClInclude>
<ClInclude Include="MetaruleExtender.h">
<Filter>Headers</Filter>
</ClInclude>
<ClInclude Include="stdafx.h">
<Filter>Headers</Filter>
</ClInclude>
@@ -385,6 +388,9 @@
<ClCompile Include="MiscPatches.cpp">
<Filter>Source</Filter>
</ClCompile>
<ClCompile Include="MetaruleExtender.cpp">
<Filter>Source</Filter>
</ClCompile>
<ClCompile Include="stdafx.cpp">
<Filter>Source</Filter>
</ClCompile>
+4
View File
@@ -54,6 +54,7 @@
#include "Logging.h"
#include "MainMenu.h"
#include "Message.h"
#include "MetaruleExtender.h"
#include "MiscPatches.h"
#include "Movies.h"
#include "Objects.h"
@@ -281,6 +282,9 @@ static void DllMain2() {
TalkingHeadsInit();
// most of modules should be initialized before running the script handlers
dlogr("Running MetaruleExtenderInit().", DL_INIT);
MetaruleExtenderInit();
dlogr("Running ScriptExtenderInit().", DL_INIT);
ScriptExtenderInit();