Skip to content

Commit 4b4393d

Browse files
author
spumer
committed
Public release: ver. 1.0.0.5
1 parent 70abd3c commit 4b4393d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+4514
-2
lines changed

CDetour/detourhelpers.h

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
/**
2+
* vim: set ts=4 :
3+
* =============================================================================
4+
* SourceMod
5+
* Copyright (C) 2004-2007 AlliedModders LLC. All rights reserved.
6+
* =============================================================================
7+
*
8+
* This program is free software; you can redistribute it and/or modify it under
9+
* the terms of the GNU General Public License, version 3.0, as published by the
10+
* Free Software Foundation.
11+
*
12+
* This program is distributed in the hope that it will be useful, but WITHOUT
13+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14+
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15+
* details.
16+
*
17+
* You should have received a copy of the GNU General Public License along with
18+
* this program. If not, see <http://www.gnu.org/licenses/>.
19+
*
20+
* As a special exception, AlliedModders LLC gives you permission to link the
21+
* code of this program (as well as its derivative works) to "Half-Life 2," the
22+
* "Source Engine," the "SourcePawn JIT," and any Game MODs that run on software
23+
* by the Valve Corporation. You must obey the GNU General Public License in
24+
* all respects for all other code used. Additionally, AlliedModders LLC grants
25+
* this exception to all derivative works. AlliedModders LLC defines further
26+
* exceptions, found in LICENSE.txt (as of this writing, version JULY-31-2007),
27+
* or <http://www.sourcemod.net/license.php>.
28+
*
29+
* Version: $Id: detourhelpers.h 248 2008-08-27 00:56:22Z pred $
30+
*/
31+
32+
#ifndef _INCLUDE_SOURCEMOD_DETOURHELPERS_H_
33+
#define _INCLUDE_SOURCEMOD_DETOURHELPERS_H_
34+
35+
//#define DETOURHELPERS_LOG(...) L4D_DEBUG_LOG(__VA_ARGS__)
36+
#define DETOURHELPERS_LOG(...)
37+
38+
#if defined PLATFORM_LINUX
39+
#include <sys/mman.h>
40+
#define PAGE_SIZE 4096
41+
#define ALIGN(ar) ((long)ar & ~(PAGE_SIZE-1))
42+
#define PAGE_EXECUTE_READWRITE PROT_READ|PROT_WRITE|PROT_EXEC
43+
#else
44+
#ifndef WIN32_LEAN_AND_MEAN
45+
#define WIN32_LEAN_AND_MEAN
46+
#endif
47+
#include <windows.h>
48+
#endif
49+
50+
struct patch_t
51+
{
52+
patch_t()
53+
{
54+
patch[0] = 0;
55+
bytes = 0;
56+
}
57+
unsigned char patch[20];
58+
size_t bytes;
59+
};
60+
61+
inline void ProtectMemory(void *addr, int length, int prot)
62+
{
63+
DETOURHELPERS_LOG("Protecting memory...");
64+
65+
#if defined PLATFORM_LINUX
66+
void *addr2 = (void *)ALIGN(addr);
67+
void *addr3 = (void*)ALIGN((unsigned char*)((unsigned char*)addr + length));
68+
mprotect(addr2, sysconf(_SC_PAGESIZE), prot);
69+
70+
/* sometimes our [addr, addr+patch->bytes] may span more than one code page
71+
this is fairly rare. thankfully since our patch->bytes is at most 20 ,
72+
it will span at most 2 code pages
73+
*/
74+
if( addr3 != addr2)
75+
{
76+
DETOURHELPERS_LOG("Protecting memory across 2 code pages...");
77+
mprotect(addr3, sysconf(_SC_PAGESIZE), prot);
78+
}
79+
#elif defined PLATFORM_WINDOWS
80+
DWORD old_prot;
81+
VirtualProtect(addr, length, prot, &old_prot);
82+
#endif
83+
}
84+
85+
inline void SetMemPatchable(void *address, size_t size)
86+
{
87+
ProtectMemory(address, (int)size, PAGE_EXECUTE_READWRITE);
88+
}
89+
90+
inline void DoGatePatch(unsigned char *target, void *callback)
91+
{
92+
SetMemPatchable(target, 20);
93+
94+
target[0] = 0xFF; /* JMP */
95+
target[1] = 0x25; /* MEM32 */
96+
*(void **)(&target[2]) = callback;
97+
}
98+
99+
inline void ApplyPatch(void *address, int offset, const patch_t *patch, patch_t *restore)
100+
{
101+
ProtectMemory(address, 20, PAGE_EXECUTE_READWRITE);
102+
103+
unsigned char *addr = (unsigned char *)address + offset;
104+
if (restore)
105+
{
106+
for (size_t i=0; i<patch->bytes; i++)
107+
{
108+
restore->patch[i] = addr[i];
109+
}
110+
restore->bytes = patch->bytes;
111+
}
112+
113+
DETOURHELPERS_LOG("Copying new patch into memory...");
114+
for (size_t i=0; i<patch->bytes; i++)
115+
{
116+
DETOURHELPERS_LOG("Copying new patch into memory byte %d/%d...", i+1, patch->bytes);
117+
addr[i] = patch->patch[i];
118+
}
119+
}
120+
121+
#endif //_INCLUDE_SOURCEMOD_DETOURHELPERS_H_

Makefile

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
# (C)2004-2010 SourceMod Development Team
2+
# Makefile written by David "BAILOPAN" Anderson and modified by spumer
3+
4+
###########################################
5+
### EDIT THESE PATHS FOR YOUR OWN SETUP ###
6+
###########################################
7+
8+
SMSDK ?= ../sourcemod
9+
SRCDS_BASE ?= ../srcds
10+
HL2SDK_L4D2 ?= ../hl2sdk-l4d2
11+
MMSOURCE ?= ../mmsource
12+
13+
#####################################
14+
### EDIT BELOW FOR OTHER PROJECTS ###
15+
#####################################
16+
17+
PROJECT = left4fix
18+
19+
#Uncomment for Metamod: Source enabled extension
20+
#USEMETA = true
21+
22+
OBJECTS = sdk/smsdk_ext.cpp extension.cpp util.cpp routine.cpp codepatch/patchmanager.cpp detours/on_revived_by_defib.cpp codepatch/score_code_8.cpp\
23+
detours/on_recompute_versus_completion.cpp detours/on_get_completion_by_character.cpp detours/detour.cpp asm/asm.c
24+
#detours/end_versus_mode_round.cpp
25+
##############################################
26+
### CONFIGURE ANY OTHER FLAGS/OPTIONS HERE ###
27+
##############################################
28+
29+
C_OPT_FLAGS = -DNDEBUG -O3 -funroll-loops -pipe -fno-strict-aliasing
30+
C_DEBUG_FLAGS = -D_DEBUG -DDEBUG -g -ggdb3
31+
C_GCC4_FLAGS = -fvisibility=hidden
32+
CPP_GCC4_FLAGS = -fvisibility-inlines-hidden -std=c++0x
33+
CPP = gcc
34+
35+
##########################
36+
### SDK CONFIGURATIONS ###
37+
##########################
38+
39+
override ENGSET = false
40+
41+
HL2PUB = $(HL2SDK_L4D2)/public
42+
HL2LIB = $(HL2SDK_L4D2)/lib/linux
43+
CFLAGS += -DSOURCE_ENGINE=6 -DTEAM_SIZE=$(TEAM_SIZE)
44+
METAMOD = $(MMSOURCE)/core
45+
INCLUDE += -I$(HL2SDK_L4D2)/public/game/server -I$(HL2SDK_L4D2)/common -I$(HL2SDK_L4D2)/game/shared
46+
SRCDS = $(SRCDS_BASE)/left4dead2
47+
48+
LINK += $(HL2LIB)/tier1_i486.a $(HL2LIB)/mathlib_i486.a libvstdlib.so libtier0.so
49+
50+
INCLUDE += -I. -I.. -Isdk -I$(HL2PUB) -I$(HL2PUB)/engine -I$(HL2PUB)/mathlib -I$(HL2PUB)/tier0 \
51+
-I$(HL2PUB)/tier1 -I$(METAMOD) -I$(METAMOD)/sourcehook -I$(SMSDK)/public -I$(SMSDK)/public/extensions \
52+
-I$(SMSDK)/public/sourcepawn
53+
54+
CFLAGS += -DSE_EPISODEONE=1 -DSE_DARKMESSIAH=2 -DSE_ORANGEBOX=3 -DSE_ORANGEBOXVALVE=4 -DSE_LEFT4DEAD=5 -DSE_LEFT4DEAD2=6
55+
56+
LINK += -m32 -ldl -lm
57+
58+
CFLAGS += -D_LINUX -Dstricmp=strcasecmp -D_stricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp \
59+
-D_snprintf=snprintf -D_vsnprintf=vsnprintf -D_alloca=alloca -Dstrcmpi=strcasecmp -Wall -Werror -Wno-switch \
60+
-Wno-unused -mfpmath=sse -msse -DSOURCEMOD_BUILD -DHAVE_STDINT_H -m32 -DGNUC
61+
62+
CPPFLAGS += -Wno-non-virtual-dtor -fno-exceptions -fno-rtti -fno-threadsafe-statics -Wno-overloaded-virtual
63+
64+
################################################
65+
### DO NOT EDIT BELOW HERE FOR MOST PROJECTS ###
66+
################################################
67+
68+
ifeq "$(DEBUG)" "true"
69+
BIN_DIR = Debug
70+
CFLAGS += $(C_DEBUG_FLAGS)
71+
else
72+
BIN_DIR = Release
73+
CFLAGS += $(C_OPT_FLAGS)
74+
endif
75+
76+
ifeq "$(OS)" "Darwin"
77+
LIB_EXT = dylib
78+
CFLAGS += -isysroot /Developer/SDKs/MacOSX10.5.sdk
79+
LINK += -dynamiclib -lstdc++ -mmacosx-version-min=10.5
80+
else
81+
LIB_EXT = so
82+
CFLAGS += -D_LINUX
83+
LINK += -static-libgcc -shared
84+
endif
85+
86+
BINARY = $(PROJECT).ext.$(LIB_EXT)
87+
88+
GCC_VERSION := $(shell $(CPP) -dumpversion >&1 | cut -b1)
89+
ifeq "$(GCC_VERSION)" "4"
90+
CFLAGS += $(C_GCC4_FLAGS)
91+
CPPFLAGS += $(CPP_GCC4_FLAGS)
92+
endif
93+
94+
OBJ_BIN := $(OBJECTS:%.cpp=$(BIN_DIR)/%.o)
95+
96+
$(BIN_DIR)/%.o: %.cpp
97+
$(CPP) $(INCLUDE) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<
98+
99+
ifndef TEAM_SIZE
100+
$(error Please set the TEAM_SIZE. Exmpl: make TEAM_SIZE=10)
101+
endif
102+
103+
all:
104+
mkdir -p $(BIN_DIR)/sdk
105+
mkdir -p $(BIN_DIR)/detours
106+
mkdir -p $(BIN_DIR)/codepatch
107+
mkdir -p $(BIN_DIR)/l4d2sdk
108+
cp $(SRCDS)/bin/libvstdlib.so libvstdlib.so;
109+
cp $(SRCDS)/bin/libtier0.so libtier0.so;
110+
$(MAKE) -f Makefile extension TEAM_SIZE=$(TEAM_SIZE)
111+
112+
extension: $(OBJ_BIN)
113+
$(CPP) $(INCLUDE) $(OBJ_BIN) $(LINK) -o $(BIN_DIR)/$(BINARY)
114+
115+
debug:
116+
$(MAKE) -f Makefile all DEBUG=true
117+
118+
default: all
119+
120+
clean:
121+
rm -rf Debug/ Release/

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Left4Fix (Private, Public release is soon)
1+
Left4Fix
22
========
33

4-
Extension for SourceMod written on C++ and fix major bug on servers more than 8 players: incorrect completion score calculation.
4+
Extension for SourceMod written on C++ and fix major bug on servers more than 8 players: incorrect completion score calculation.

0 commit comments

Comments
 (0)