Skip to content

Commit 98b3543

Browse files
author
spumer
committed
Custom players count is now work for Windows
1 parent e24ac39 commit 98b3543

10 files changed

+1708
-15
lines changed

gamedata/left4fix.sig.txt

+3
Original file line numberDiff line numberDiff line change
@@ -137,18 +137,21 @@
137137
{
138138
"library" "server"
139139
"linux" "\xE8\x2A\x2A\x2A\x2A\xF3\x0F\x2A\x2A\x2A\xC1\xF8\x02"
140+
"windows" "\xF3\x0F\x10\x45\xFC\xC1\xF8\x02"
140141
}
141142

142143
"DIV_CODE_AddSurvivorStats"
143144
{
144145
"library" "server"
145146
"linux" "\xE8\x2A\x2A\x2A\x2A\xC1\xF8\x02"
147+
"windows" "\x0F\x57\xC0\xC1\xF8\x02"
146148
}
147149

148150
"DIV_CODE_GetVersusCompletion"
149151
{
150152
"library" "server"
151153
"linux" "\x8B\x55\x2A\xA1\x2A\x2A\x2A\x2A\x8B\xBA\xE8\x0D\x00\x00\x89\x2A\x2A\xC1\xFF\x02"
154+
"windows" "\x33\xC9\xC1\xF8\x02"
152155
}
153156
}
154157
}

windows/codepatch/score_code.cpp

+12-15
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@
4242

4343
// TODO: Create CUT/PASTE masks functions for wrap instructions inside my patch
4444

45-
unsigned char UpdateMarkersReached_orig[] = { 0xE8, 0x2A, 0x2A, 0x2A, 0x2A, 0xF3, 0x0F, 0x2A, 0x2A, 0x2A, 0xC1, 0xF8, 0x02 };
46-
unsigned char UpdateMarkersReached_patch[] = { 0x8B, 0x80, 0xE8, 0x0D, 0x00, 0x00, 0x31, 0xD2, 0xBB, TEAM_SIZE, 0x00, 0x00, 0x00, 0xF7, 0xF3 };
45+
unsigned char UpdateMarkersReached_orig[] = { 0xF3, 0x0F, 0x10, 0x45, 0xFC, 0xC1, 0xF8, 0x02 };
46+
unsigned char UpdateMarkersReached_patch[] = { 0x51, 0xB9, TEAM_SIZE, 0x00, 0x00, 0x00, 0x31, 0xD2, 0xF7, 0xF1, 0x59, 0xF3, 0x0F, 0x10, 0x45, 0xFC };
4747

48-
unsigned char AddSurvivorStats_orig[] = { 0xE8, 0x2A, 0x2A, 0x2A, 0x2A, 0xC1, 0xF8, 0x02 };
49-
unsigned char AddSurvivorStats_patch[] = { 0x8B, 0x80, 0xE8, 0x0D, 0x00, 0x00, 0x31, 0xD2, 0xB9, TEAM_SIZE, 0x00, 0x00, 0x00, 0xF7, 0xF1 };
48+
unsigned char AddSurvivorStats_orig[] = { 0x0F, 0x57, 0xC0, 0xC1, 0xF8, 0x02 };
49+
unsigned char AddSurvivorStats_patch[] = { 0xB9, TEAM_SIZE, 0x00, 0x00, 0x00, 0x31, 0xD2, 0xF7, 0xF1, 0x0F, 0x57, 0xC0 };
5050

51-
unsigned char GetVersusCompletion_orig[] = { 0x8B, 0x55, 0x2A, 0xA1, 0x2A, 0x2A, 0x2A, 0x2A, 0x8B, 0xBA, 0xE8, 0x0D, 0x00, 0x00, 0x89, 0x2A, 0x2A, 0xC1, 0xFF, 0x02 };
52-
unsigned char GetVersusCompletion_patch[] = { 0x8B, 0x45, 0x08, 0x8B, 0x80, 0xE8, 0x0D, 0x00, 0x00, 0x31, 0xD2, 0xBF, TEAM_SIZE, 0x00, 0x00, 0x00, 0xF7, 0xF7, 0x89, 0xC7 };
51+
unsigned char GetVersusCompletion_orig[] = { 0x33, 0xC9, 0xC1, 0xF8, 0x02 };
52+
unsigned char GetVersusCompletion_patch[] = { 0xB9, TEAM_SIZE, 0x00, 0x00, 0x00, 0x31, 0xD2, 0xF7, 0xF1, 0x33, 0xC9 };
5353

54-
#ifdef DEBUG
54+
#ifdef _DEBUG
5555
void memDump(unsigned char *pAddr, size_t len) {
5656
g_pSmmAPI->ConPrintf("Start dump at: %p\n", pAddr);
5757
size_t llen = len;
@@ -83,9 +83,9 @@ void ScoreCode::Patch() {
8383
SetMemPatchable(m_pMarkers, sizeof(UpdateMarkersReached_orig));
8484
copy_bytes(m_pMarkers, UpdateMarkersReached_orig, sizeof(UpdateMarkersReached_orig));
8585
// inject jmp to trampoline and nop some bytes after target instruction
86+
fill_nop(m_pMarkers, sizeof(UpdateMarkersReached_orig));
8687
inject_jmp(m_pMarkers, m_injectMarker);
87-
fill_nop(m_pMarkers + sizeof(UpdateMarkersReached_orig) - 3, 3);
88-
88+
8989
// prepare the trampoline
9090
m_injectStats = (unsigned char *)sengine->AllocatePageMemory(sizeof(AddSurvivorStats_patch) + OP_JMP_SIZE);
9191
copy_bytes(AddSurvivorStats_patch, m_injectStats, sizeof(AddSurvivorStats_patch));
@@ -96,14 +96,11 @@ void ScoreCode::Patch() {
9696
// inject jmp to trampoline
9797
inject_jmp(m_pL4DStats, m_injectStats);
9898
fill_nop(m_pL4DStats + OP_JMP_SIZE, sizeof(AddSurvivorStats_orig) - OP_JMP_SIZE);
99-
99+
100100
// prepare the trampoline
101101
m_injectCompl = (unsigned char *)sengine->AllocatePageMemory(sizeof(GetVersusCompletion_patch) + OP_JMP_SIZE);
102-
unsigned char *pInjectEnd = m_injectCompl;
103-
copy_bytes(GetVersusCompletion_patch, m_injectCompl, sizeof(GetVersusCompletion_patch)); pInjectEnd += sizeof(GetVersusCompletion_patch);
104-
copy_bytes(m_pCompletion + 3, pInjectEnd, OP_MOV_SIZE); pInjectEnd += OP_MOV_SIZE;
105-
copy_bytes(m_pCompletion + sizeof(GetVersusCompletion_orig) - 6, pInjectEnd, 3); pInjectEnd += 3;
106-
inject_jmp(pInjectEnd, m_pCompletion + sizeof(GetVersusCompletion_orig));
102+
copy_bytes(GetVersusCompletion_patch, m_injectCompl, sizeof(GetVersusCompletion_patch));
103+
inject_jmp(m_injectCompl + sizeof(GetVersusCompletion_patch), m_pCompletion + OP_CALL_SIZE);
107104
// copy original code to our buffer
108105
SetMemPatchable(m_pCompletion, sizeof(GetVersusCompletion_orig));
109106
copy_bytes(m_pCompletion, GetVersusCompletion_orig, sizeof(GetVersusCompletion_orig));

windows/msvc9/sdk.idc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<Configurations active="Default"><Configuration name="Default"><GuestCommandRemote val="project command through a shared folder"></GuestCommandRemote><ShareFoldersRemote val=""></ShareFoldersRemote><RemoteDebugMonitor val="D:\Programs\Microsoft Visual Studio 2008\Common7\IDE\Remote Debugger\x86\msvsmon.exe"></RemoteDebugMonitor><MonitorName val="VMDebug"></MonitorName><RemoteVM val=""></RemoteVM><StartMode val="No"></StartMode><TerminationModeRemote val="No operation"></TerminationModeRemote><CopyFilesRemote val=""></CopyFilesRemote><PreRemoteCommandLine val=""></PreRemoteCommandLine><PostRemoteCommandLine val=""></PostRemoteCommandLine><RecordingToReplay val=""></RecordingToReplay><ReplayVM val=""></ReplayVM><BaseSnapshotForRecording val=""></BaseSnapshotForRecording><CopyFilesRecord val=""></CopyFilesRecord><PreRecordCommandLine val=""></PreRecordCommandLine><PostRecordCommandLine val=""></PostRecordCommandLine><TerminationModeRecord val="No operation"></TerminationModeRecord><InstanceToDebug val=""></InstanceToDebug><GuestCommandReplay val="project command through a shared folder"></GuestCommandReplay><ShareFoldersRecord val=""></ShareFoldersRecord><RemoteReplayFlag val=""></RemoteReplayFlag><RemoteMachine val=""></RemoteMachine><RemoteReplayVM val=""></RemoteReplayVM><RemoteRecordingToReplay val=""></RemoteRecordingToReplay><RemoteReplayPasscode val=""></RemoteReplayPasscode><HostSearchPath val=""></HostSearchPath></Configuration></Configurations>

windows/msvc9/sdk.sdf

37.8 MB
Binary file not shown.

windows/msvc9/sdk.sln

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Express 2012 for Windows Desktop
4+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sdk", "sdk.vcxproj", "{B3E797CF-4E77-4C9D-B8A8-7589B6902206}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Release 10 Players|Win32 = Release 10 Players|Win32
9+
Release 8 Players|Win32 = Release 8 Players|Win32
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{B3E797CF-4E77-4C9D-B8A8-7589B6902206}.Release 10 Players|Win32.ActiveCfg = Release 10 Players|Win32
13+
{B3E797CF-4E77-4C9D-B8A8-7589B6902206}.Release 10 Players|Win32.Build.0 = Release 10 Players|Win32
14+
{B3E797CF-4E77-4C9D-B8A8-7589B6902206}.Release 8 Players|Win32.ActiveCfg = Release 8 Players|Win32
15+
{B3E797CF-4E77-4C9D-B8A8-7589B6902206}.Release 8 Players|Win32.Build.0 = Release 8 Players|Win32
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

windows/msvc9/sdk.v11.suo

49.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)