mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
Added makefiles, fixed template bug in nvault
This commit is contained in:
parent
de5abef49a
commit
7eaa8a1a39
67
dlls/esforces/esfmod/Makefile
Executable file
67
dlls/esforces/esfmod/Makefile
Executable file
@ -0,0 +1,67 @@
|
|||||||
|
#(C)2004-2005 AMX Mod X Development Team
|
||||||
|
# Makefile written by David "BAILOPAN" Anderson
|
||||||
|
|
||||||
|
HLSDK = ../../../hlsdk/SourceCode
|
||||||
|
MM_ROOT = ../../../metamod/metamod
|
||||||
|
|
||||||
|
### EDIT BELOW FOR OTHER PROJECTS ###
|
||||||
|
|
||||||
|
OPT_FLAGS = -O3 -fno-rtti -funroll-loops -s -pipe
|
||||||
|
DEBUG_FLAGS = -g -ggdb3
|
||||||
|
CPP = gcc
|
||||||
|
NAME = esfmod_amxx
|
||||||
|
|
||||||
|
OBJECTS = amxxmodule.cpp esf_anim.cpp esf_base.cpp esf_pdata.cpp esf_avatars.cpp esf_effects.cpp esforces.cpp
|
||||||
|
|
||||||
|
LINK =
|
||||||
|
|
||||||
|
INCLUDE = -I. -I$(HLSDK) -I$(HLSDK)/dlls -I$(HLSDK)/engine -I$(HLSDK)/game_shared -I$(HLSDK)/game_shared \
|
||||||
|
-I$(MM_ROOT) -Lzlib -I$(HLSDK)/common -I$(HLSDK)/pm_shared
|
||||||
|
|
||||||
|
ifeq "$(DEBUG)" "true"
|
||||||
|
BIN_DIR = Debug
|
||||||
|
CFLAGS = $(DEBUG_FLAGS)
|
||||||
|
else
|
||||||
|
BIN_DIR = Release
|
||||||
|
CFLAGS = $(OPT_FLAGS)
|
||||||
|
endif
|
||||||
|
|
||||||
|
CFLAGS += -DNDEBUG -fPIC -Wno-deprecated -fno-exceptions -DHAVE_STDINT_H
|
||||||
|
|
||||||
|
ifeq "$(AMD64)" "true"
|
||||||
|
BINARY = $(NAME)_amd64.so
|
||||||
|
CFLAGS += -DPAWN_CELL_SIZE=64 -DHAVE_I64 -m64
|
||||||
|
LINK += -lstdc++
|
||||||
|
else
|
||||||
|
BINARY = $(NAME)_i386.so
|
||||||
|
CFLAGS += -DPAWN_CELL_SIZE=32 -DJIT -DASM32
|
||||||
|
OPT_FLAGS += -march=i686
|
||||||
|
endif
|
||||||
|
|
||||||
|
OBJ_LINUX := $(OBJECTS:%.cpp=$(BIN_DIR)/%.o)
|
||||||
|
|
||||||
|
$(BIN_DIR)/%.o: %.cpp
|
||||||
|
$(CPP) $(INCLUDE) $(CFLAGS) -o $@ -c $<
|
||||||
|
|
||||||
|
all:
|
||||||
|
mkdir -p $(BIN_DIR)
|
||||||
|
mkdir -p $(BIN_DIR)/sdk
|
||||||
|
$(MAKE) esfmod
|
||||||
|
|
||||||
|
amd64:
|
||||||
|
$(MAKE) all AMD64=true
|
||||||
|
|
||||||
|
esfmod: $(OBJ_LINUX)
|
||||||
|
$(CPP) $(INCLUDE) $(CFLAGS) $(OBJ_LINUX) $(LINK) -shared -ldl -lm -o$(BIN_DIR)/$(BINARY)
|
||||||
|
|
||||||
|
debug:
|
||||||
|
$(MAKE) all DEBUG=true
|
||||||
|
|
||||||
|
default: all
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf Release/*.o
|
||||||
|
rm -rf Release/$(BINARY)
|
||||||
|
rm -rf Debug/*.o
|
||||||
|
rm -rf Debug/$(BINARY)
|
||||||
|
|
@ -45,3 +45,4 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
#endif //_INCLUDE_BINARY_H
|
#endif //_INCLUDE_BINARY_H
|
||||||
|
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
#define _INCLUDE_CSTRING_H
|
#define _INCLUDE_CSTRING_H
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
//by David "BAILOPAN" Anderson
|
//by David "BAILOPAN" Anderson
|
||||||
class String
|
class String
|
||||||
@ -58,6 +59,13 @@ public:
|
|||||||
assign(src);
|
assign(src);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char * _fread(FILE *fp)
|
||||||
|
{
|
||||||
|
Grow(512, false);
|
||||||
|
char *ret = fgets(v, 511, fp);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
String(String &src)
|
String(String &src)
|
||||||
{
|
{
|
||||||
v = NULL;
|
v = NULL;
|
||||||
@ -122,7 +130,7 @@ public:
|
|||||||
bool empty()
|
bool empty()
|
||||||
{
|
{
|
||||||
if (!v)
|
if (!v)
|
||||||
return false;
|
return true;
|
||||||
|
|
||||||
if (v[0] == '\0')
|
if (v[0] == '\0')
|
||||||
return true;
|
return true;
|
||||||
@ -270,7 +278,10 @@ public:
|
|||||||
String substr(unsigned int index, int num = npos)
|
String substr(unsigned int index, int num = npos)
|
||||||
{
|
{
|
||||||
if (!v)
|
if (!v)
|
||||||
return String("");
|
{
|
||||||
|
String b("");
|
||||||
|
return b;
|
||||||
|
}
|
||||||
|
|
||||||
String ns;
|
String ns;
|
||||||
|
|
||||||
@ -361,6 +372,8 @@ private:
|
|||||||
strcpy(n, v);
|
strcpy(n, v);
|
||||||
if (v)
|
if (v)
|
||||||
delete [] v;
|
delete [] v;
|
||||||
|
else
|
||||||
|
strcpy(n, "");
|
||||||
v = n;
|
v = n;
|
||||||
a_size = d + 1;
|
a_size = d + 1;
|
||||||
}
|
}
|
||||||
|
67
dlls/nvault/Makefile
Executable file
67
dlls/nvault/Makefile
Executable file
@ -0,0 +1,67 @@
|
|||||||
|
#(C)2004-2005 AMX Mod X Development Team
|
||||||
|
# Makefile written by David "BAILOPAN" Anderson
|
||||||
|
|
||||||
|
HLSDK = ../../hlsdk/SourceCode
|
||||||
|
MM_ROOT = ../../metamod/metamod
|
||||||
|
|
||||||
|
### EDIT BELOW FOR OTHER PROJECTS ###
|
||||||
|
|
||||||
|
OPT_FLAGS = -O3 -fno-rtti -funroll-loops -s -pipe
|
||||||
|
DEBUG_FLAGS = -g -ggdb3
|
||||||
|
CPP = gcc
|
||||||
|
NAME = nvault_amxx
|
||||||
|
|
||||||
|
OBJECTS = amxxmodule.cpp amxxapi.cpp Binary.cpp Journal.cpp NVault.cpp
|
||||||
|
|
||||||
|
LINK =
|
||||||
|
|
||||||
|
INCLUDE = -I. -I$(HLSDK) -I$(HLSDK)/dlls -I$(HLSDK)/engine -I$(HLSDK)/game_shared -I$(HLSDK)/game_shared \
|
||||||
|
-I$(MM_ROOT) -Lzlib -I$(HLSDK)/common
|
||||||
|
|
||||||
|
ifeq "$(DEBUG)" "true"
|
||||||
|
BIN_DIR = Debug
|
||||||
|
CFLAGS = $(DEBUG_FLAGS)
|
||||||
|
else
|
||||||
|
BIN_DIR = Release
|
||||||
|
CFLAGS = $(OPT_FLAGS)
|
||||||
|
endif
|
||||||
|
|
||||||
|
CFLAGS += -DNDEBUG -fPIC -Wno-deprecated -fexceptions -DHAVE_STDINT_H
|
||||||
|
|
||||||
|
ifeq "$(AMD64)" "true"
|
||||||
|
BINARY = $(NAME)_amd64.so
|
||||||
|
CFLAGS += -DPAWN_CELL_SIZE=64 -DHAVE_I64 -m64
|
||||||
|
LINK += -lstdc++
|
||||||
|
else
|
||||||
|
BINARY = $(NAME)_i386.so
|
||||||
|
CFLAGS += -DPAWN_CELL_SIZE=32 -DJIT -DASM32
|
||||||
|
OPT_FLAGS += -march=i686
|
||||||
|
endif
|
||||||
|
|
||||||
|
OBJ_LINUX := $(OBJECTS:%.cpp=$(BIN_DIR)/%.o)
|
||||||
|
|
||||||
|
$(BIN_DIR)/%.o: %.cpp
|
||||||
|
$(CPP) $(INCLUDE) $(CFLAGS) -o $@ -c $<
|
||||||
|
|
||||||
|
all:
|
||||||
|
mkdir -p $(BIN_DIR)
|
||||||
|
mkdir -p $(BIN_DIR)/sdk
|
||||||
|
$(MAKE) nvault
|
||||||
|
|
||||||
|
amd64:
|
||||||
|
$(MAKE) all AMD64=true
|
||||||
|
|
||||||
|
nvault: $(OBJ_LINUX)
|
||||||
|
$(CPP) $(INCLUDE) $(CFLAGS) $(OBJ_LINUX) $(LINK) -shared -ldl -lm -o$(BIN_DIR)/$(BINARY)
|
||||||
|
|
||||||
|
debug:
|
||||||
|
$(MAKE) all DEBUG=true
|
||||||
|
|
||||||
|
default: all
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf Release/*.o
|
||||||
|
rm -rf Release/$(BINARY)
|
||||||
|
rm -rf Debug/*.o
|
||||||
|
rm -rf Debug/$(BINARY)
|
||||||
|
|
@ -1,9 +1,14 @@
|
|||||||
#include "NVault.h"
|
#include "NVault.h"
|
||||||
#include "Binary.h"
|
#include "Binary.h"
|
||||||
|
#include "CString.h"
|
||||||
#include "amxxmodule.h"
|
#include "amxxmodule.h"
|
||||||
|
|
||||||
template <class K>
|
#ifdef __linux__
|
||||||
int HashFunction<String>(const K & k)
|
#define _snprintf snprintf
|
||||||
|
#endif
|
||||||
|
|
||||||
|
template <>
|
||||||
|
int HashFunction<String>(const String & k)
|
||||||
{
|
{
|
||||||
unsigned long hash = 5381;
|
unsigned long hash = 5381;
|
||||||
const char *str = k.c_str();
|
const char *str = k.c_str();
|
||||||
@ -12,8 +17,8 @@ int HashFunction<String>(const K & k)
|
|||||||
return hash;
|
return hash;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class K>
|
template <>
|
||||||
bool Compare<String>(const K & k1, const K & k2)
|
bool Compare<String>(const String & k1, const String & k2)
|
||||||
{
|
{
|
||||||
return (strcmp(k1.c_str(),k2.c_str())==0);
|
return (strcmp(k1.c_str(),k2.c_str())==0);
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#include "CString.h"
|
#include "CString.h"
|
||||||
#include "amxxmodule.h"
|
#include "amxxmodule.h"
|
||||||
|
|
||||||
AMX_NATIVE_INFO nVault_natives[];
|
extern AMX_NATIVE_INFO nVault_natives[];
|
||||||
|
|
||||||
#endif //_INCLUDE_AMXXAPI_H
|
#endif //_INCLUDE_AMXXAPI_H
|
||||||
|
|
||||||
|
@ -460,3 +460,4 @@
|
|||||||
#endif // USE_METAMOD
|
#endif // USE_METAMOD
|
||||||
|
|
||||||
#endif // __MODULECONFIG_H__
|
#endif // __MODULECONFIG_H__
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user