145 lines
3.3 KiB
Lua
145 lines
3.3 KiB
Lua
require(GlobalDependencys:GetDependency("StandardBase"):GetPackageName())
|
|
|
|
--GAME VARS
|
|
fDefaultFOV = 60
|
|
fDefaultAspectRatio = 1.7777778
|
|
fAdditionalFOV = 0
|
|
fFOV = 60
|
|
|
|
--ControlVars
|
|
bFixEnabled = true
|
|
bFOV = true
|
|
|
|
--PROCESS VARS
|
|
Process_FriendlyName = Module:GetFriendlyName()
|
|
Process_WindowName = "*"
|
|
Process_ClassName = "*"
|
|
Process_EXEName = "APlagueTaleRequiem_x64.exe"
|
|
|
|
--INJECTION BEHAVIOUR
|
|
InjectDelay = 100
|
|
WriteInterval = 100
|
|
SearchInterval = 100
|
|
SuspendThread = true
|
|
|
|
--Name Manual/Auto/Hybrid Steam/Origin/Any IncludeFile:Configure;Enable;Periodic;Disable;
|
|
SupportedVersions = {
|
|
{"Automatically Detect", "Hybrid", "Any", "Configure_SignatureScan;Enable_Inject;Periodic;Disable_Inject;"},
|
|
}
|
|
|
|
function Init_Controls()
|
|
|
|
DefaultControls.AddHeader("Header_FixesEnableDisable","Individual Fixes",245,70,210,17)
|
|
|
|
DefaultControls.AddHeader("Header_FOV","FOV fine adjustment",15,70,210,17)
|
|
DefaultControls.AddFOVSlider("FOVSlider","FOVSlider_Changed",55,100,125,35)
|
|
DefaultControls.AddFixToggle("CKFOVFix_Enable","FOV fix","CKFOVFix_Changed",255,101,180,14)
|
|
|
|
end
|
|
|
|
function Configure_SignatureScan()
|
|
|
|
local tAddress = HackTool:AddAddress("FOV")
|
|
|
|
if HackTool:SignatureScan("F3 0F 10 87 ?? ?? ?? ?? F3 0F 59 ?? ?? ?? ?? ?? F3 0F ?? ?? ?? F3 0F 10 87",tAddress,PAGE_EXECUTE_READ,0x0,Process_EXEName) == 0 then
|
|
return ErrorOccurred(string.format(SigScanError,tAddress:GetName()))
|
|
else
|
|
print( tAddress:GetInfo(TYPE_ADDRESS) )
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
function Enable_Inject()
|
|
|
|
local Variables = HackTool:AllocateMemory("Variables",0)
|
|
Variables:PushFloat("FOVIn")
|
|
Variables:PushFloat("FOVOut")
|
|
Variables:PushFloat("AdditionalFOV")
|
|
Variables:Allocate()
|
|
Variables["FOVIn"]:WriteFloat(fDefaultFOV)
|
|
Variables["AdditionalFOV"]:WriteFloat(fAdditionalFOV)
|
|
|
|
ResolutionChanged()
|
|
|
|
local asm = [[
|
|
|
|
(codecave:jmp)FOV,FOV_cc:
|
|
%originalcode%
|
|
movss [(allocation)Variables->FOVIn],$$1 $ctx=1
|
|
addss $$1,[(allocation)Variables->AdditionalFOV] $ctx=1
|
|
movss [(allocation)Variables->FOVOut],$$1 $ctx=1
|
|
jmp %returnaddress%
|
|
%end%
|
|
|
|
]]
|
|
|
|
if HackTool:CompileAssembly(asm,"Fixes") == nil then
|
|
return ErrorOccurred("Assembly compilation failed...")
|
|
else
|
|
Toggle_CodeCave("FOV_cc",bFOV)
|
|
end
|
|
|
|
Write_FOV()
|
|
|
|
end
|
|
|
|
function Periodic()
|
|
local Variables = HackTool:GetAllocation("Variables")
|
|
|
|
if Variables and Variables["FOVIn"] and Variables["AdditionalFOV"] then
|
|
fFOVIn = Variables["FOVIn"]:ReadFloat()
|
|
fFOVOut = Variables["FOVOut"]:ReadFloat()
|
|
PluginViewport:AppendStatusMessage( string.format("\r\n===== Fix informations =====\r\nFOV In: %0.f, FOV Out : %.0f", fFOVIn, fFOVOut))
|
|
end
|
|
end
|
|
|
|
function FOVSlider_Changed(Sender)
|
|
|
|
fFOV = (Sender:GetScaledFloat(2)) + 25
|
|
lblFOVSlider.Caption:SetCaption( string.format("Additional FOV : %.2f",fFOV) )
|
|
Write_FOV()
|
|
ForceUpdate()
|
|
|
|
end
|
|
|
|
function Write_FOV()
|
|
|
|
local Variables = HackTool:GetAllocation("Variables")
|
|
if Variables and Variables["AdditionalFOV"] then
|
|
Variables["AdditionalFOV"]:WriteFloat(fFOV)
|
|
end
|
|
|
|
end
|
|
|
|
function Disable_Inject()
|
|
|
|
CleanUp()
|
|
|
|
end
|
|
|
|
function CKFOVFix_Changed(Sender)
|
|
|
|
bFOV = Toggle_CheckFix(Sender)
|
|
Toggle_CodeCave("FOV_cc",bFOV)
|
|
ForceUpdate()
|
|
|
|
end
|
|
|
|
function ResolutionChanged()
|
|
|
|
SyncDisplayDetection()
|
|
|
|
end
|
|
|
|
function Init()
|
|
Init_BaseControls()
|
|
Init_Controls()
|
|
end
|
|
|
|
function DeInit()
|
|
DisableFix()
|
|
end
|