2008-11-26 07:19:30 +01:00
|
|
|
/**
|
2009-10-29 16:57:27 +01:00
|
|
|
* vim: set ts=4 sw=4 tw=99 noet :
|
2008-11-26 07:19:30 +01:00
|
|
|
* ======================================================
|
|
|
|
* Metamod:Source
|
2009-10-29 16:57:27 +01:00
|
|
|
* Copyright (C) 2004-2009 AlliedModders LLC and authors.
|
2008-11-26 07:19:30 +01:00
|
|
|
* All rights reserved.
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied warranty.
|
|
|
|
* In no event will the authors be held liable for any damages arising from
|
|
|
|
* the use of this software.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any purpose,
|
|
|
|
* including commercial applications, and to alter it and redistribute it
|
|
|
|
* freely, subject to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
* claim that you wrote the original software. If you use this software in a
|
|
|
|
* product, an acknowledgment in the product documentation would be
|
|
|
|
* appreciated but is not required.
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
* misrepresented as being the original software.
|
|
|
|
* 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
2008-11-16 01:29:24 +01:00
|
|
|
#ifndef _INCLUDE_METAMOD_SOURCE_LOADER_H_
|
|
|
|
#define _INCLUDE_METAMOD_SOURCE_LOADER_H_
|
|
|
|
|
2009-11-24 14:57:17 +01:00
|
|
|
// System
|
2009-11-24 15:01:06 +01:00
|
|
|
#define SH_SYS_WIN32 1
|
2009-11-24 14:57:17 +01:00
|
|
|
#define SH_SYS_LINUX 2
|
2009-11-24 15:01:06 +01:00
|
|
|
#define SH_SYS_APPLE 3
|
|
|
|
|
|
|
|
// Platform
|
|
|
|
#define SH_XP_POSIX 10
|
|
|
|
#define SH_XP_WINAPI 20
|
|
|
|
|
2009-11-24 14:57:17 +01:00
|
|
|
// Compiler
|
2008-11-16 01:29:24 +01:00
|
|
|
#define SH_COMP_GCC 1
|
|
|
|
#define SH_COMP_MSVC 2
|
|
|
|
|
|
|
|
#if defined WIN32
|
2010-05-14 07:34:56 +02:00
|
|
|
#define SH_SYS SH_SYS_WIN32
|
|
|
|
#define SH_XP SH_XP_WINAPI
|
|
|
|
#define SH_COMP SH_COMP_MSVC
|
2008-11-16 01:29:24 +01:00
|
|
|
#define WINDOWS_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
2008-11-24 05:18:17 +01:00
|
|
|
#include <direct.h>
|
2008-11-16 01:29:24 +01:00
|
|
|
#define PLATFORM_MAX_PATH MAX_PATH
|
2008-11-24 04:21:49 +01:00
|
|
|
#define PATH_SEP_STR "\\"
|
|
|
|
#define PATH_SEP_CHAR '\\'
|
|
|
|
#define ALT_SEP_CHAR '/'
|
2010-05-14 07:34:56 +02:00
|
|
|
#elif defined __linux__ || defined __APPLE__
|
|
|
|
#if defined __linux__
|
|
|
|
#define SH_SYS SH_SYS_LINUX
|
|
|
|
#elif defined __APPLE__
|
|
|
|
#define SH_SYS SH_SYS_APPLE
|
|
|
|
#endif
|
|
|
|
#define SH_XP SH_XP_POSIX
|
|
|
|
#define SH_COMP SH_COMP_GCC
|
2008-11-16 01:29:24 +01:00
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <stdint.h>
|
2008-11-24 04:21:49 +01:00
|
|
|
#include <unistd.h>
|
2010-05-14 07:34:56 +02:00
|
|
|
#if SH_SYS == SH_SYS_APPLE
|
|
|
|
#include <sys/syslimits.h>
|
|
|
|
#endif
|
2008-11-16 01:29:24 +01:00
|
|
|
typedef void * HMODULE;
|
|
|
|
#define PLATFORM_MAX_PATH PATH_MAX
|
2008-11-24 04:21:49 +01:00
|
|
|
#define PATH_SEP_STR "/"
|
|
|
|
#define PATH_SEP_CHAR '/'
|
|
|
|
#define ALT_SEP_CHAR '\\'
|
2008-11-16 01:29:24 +01:00
|
|
|
#else
|
|
|
|
#error "OS detection failed"
|
|
|
|
#endif
|
|
|
|
|
2008-11-24 04:21:49 +01:00
|
|
|
#include "loader_bridge.h"
|
|
|
|
|
2008-11-16 01:29:24 +01:00
|
|
|
#define SH_PTRSIZE sizeof(void*)
|
|
|
|
|
|
|
|
enum MetamodBackend
|
|
|
|
{
|
|
|
|
MMBackend_Episode1 = 0,
|
2009-10-29 16:57:27 +01:00
|
|
|
MMBackend_DarkMessiah,
|
2008-11-16 01:29:24 +01:00
|
|
|
MMBackend_Episode2,
|
2009-10-29 22:23:25 +01:00
|
|
|
MMBackend_Episode2Valve,
|
2008-11-16 01:29:24 +01:00
|
|
|
MMBackend_Left4Dead,
|
2009-10-29 16:57:27 +01:00
|
|
|
MMBackend_Left4Dead2,
|
2010-07-22 10:22:27 +02:00
|
|
|
MMBackend_AlienSwarm,
|
2008-11-16 01:29:24 +01:00
|
|
|
MMBackend_UNKNOWN
|
|
|
|
};
|
|
|
|
|
|
|
|
extern bool
|
|
|
|
mm_LoadMetamodLibrary(MetamodBackend backend, char *buffer, size_t maxlength);
|
|
|
|
|
|
|
|
extern void *
|
|
|
|
mm_GetProcAddress(const char *name);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
mm_UnloadMetamodLibrary();
|
|
|
|
|
|
|
|
extern void
|
|
|
|
mm_LogFatal(const char *message, ...);
|
|
|
|
|
2009-02-18 08:38:23 +01:00
|
|
|
extern const char *
|
|
|
|
mm_GetGameName();
|
|
|
|
|
2008-11-24 04:21:49 +01:00
|
|
|
extern MetamodBackend
|
2009-02-18 08:38:23 +01:00
|
|
|
mm_DetermineBackend(QueryValveInterface qvi, const char *game_name);
|
2008-11-24 04:21:49 +01:00
|
|
|
|
2009-11-23 06:54:55 +01:00
|
|
|
extern MetamodBackend mm_backend;
|
|
|
|
|
2008-11-16 01:29:24 +01:00
|
|
|
#endif /* _INCLUDE_METAMOD_SOURCE_LOADER_H_ */
|
|
|
|
|