2011-06-12 15:17:40 -06:00
|
|
|
/*
|
2011-06-16 15:53:39 -06:00
|
|
|
https://github.com/peterix/dfhack
|
|
|
|
Copyright (c) 2009-2011 Petr Mrázek (peterix@gmail.com)
|
2011-06-12 15:17:40 -06:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2011-06-16 15:53:39 -06:00
|
|
|
|
2011-06-12 15:17:40 -06:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/shm.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ipc.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
2011-06-14 08:13:28 -06:00
|
|
|
|
2011-06-12 15:17:40 -06:00
|
|
|
#include "DFHack.h"
|
2011-06-14 08:13:28 -06:00
|
|
|
#include "dfhack/Core.h"
|
2011-06-16 15:53:39 -06:00
|
|
|
#include "dfhack/FakeSDL.h"
|
2011-06-12 15:17:40 -06:00
|
|
|
#include <iostream>
|
|
|
|
|
2011-06-19 20:29:38 -06:00
|
|
|
/*
|
|
|
|
* Plugin loading functions
|
|
|
|
*/
|
2011-06-22 00:14:21 -06:00
|
|
|
namespace DFHack
|
2011-06-19 20:29:38 -06:00
|
|
|
{
|
2011-06-22 00:14:21 -06:00
|
|
|
DFLibrary * OpenPlugin (const char * filename)
|
|
|
|
{
|
2011-06-24 21:35:29 -06:00
|
|
|
dlerror();
|
|
|
|
DFLibrary * ret = (DFLibrary *) dlopen(filename, RTLD_NOW);
|
|
|
|
if(!ret)
|
|
|
|
{
|
|
|
|
std::cerr << dlerror() << std::endl;
|
|
|
|
}
|
|
|
|
return ret;
|
2011-06-22 00:14:21 -06:00
|
|
|
}
|
|
|
|
void * LookupPlugin (DFLibrary * plugin ,const char * function)
|
|
|
|
{
|
|
|
|
return (DFLibrary *) dlsym((void *)plugin, function);
|
|
|
|
}
|
|
|
|
void ClosePlugin (DFLibrary * plugin)
|
|
|
|
{
|
|
|
|
dlclose((void *) plugin);
|
|
|
|
}
|
2011-06-19 20:29:38 -06:00
|
|
|
}
|
|
|
|
|
2011-06-12 15:17:40 -06:00
|
|
|
/*******************************************************************************
|
|
|
|
* SDL part starts here *
|
|
|
|
*******************************************************************************/
|
2011-06-16 15:53:39 -06:00
|
|
|
bool FirstCall(void);
|
|
|
|
bool inited = false;
|
|
|
|
|
2011-06-12 15:17:40 -06:00
|
|
|
DFhackCExport int SDL_NumJoysticks(void)
|
|
|
|
{
|
2011-06-14 08:13:28 -06:00
|
|
|
DFHack::Core & c = DFHack::Core::getInstance();
|
2011-07-11 15:07:42 -06:00
|
|
|
// the 'inited' variable should be normally protected by a lock. It isn't
|
2011-07-17 03:06:45 -06:00
|
|
|
// this is harmless enough. only thing this can cause is a slight delay before
|
|
|
|
// DF input events start to be processed by Core
|
2011-07-11 15:07:42 -06:00
|
|
|
int ret = c.Update();
|
|
|
|
if(ret == 0)
|
|
|
|
inited = true;
|
|
|
|
return ret;
|
2011-06-12 15:17:40 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// ptr to the real functions
|
|
|
|
//static void (*_SDL_GL_SwapBuffers)(void) = 0;
|
|
|
|
static void (*_SDL_Quit)(void) = 0;
|
|
|
|
static int (*_SDL_Init)(uint32_t flags) = 0;
|
2011-07-09 03:33:58 -06:00
|
|
|
static SDL::Thread * (*_SDL_CreateThread)(int (*fn)(void *), void *data) = 0;
|
2011-06-12 15:17:40 -06:00
|
|
|
//static int (*_SDL_Flip)(void * some_ptr) = 0;
|
|
|
|
/*
|
|
|
|
// hook - called every tick in OpenGL mode of DF
|
|
|
|
DFhackCExport void SDL_GL_SwapBuffers(void)
|
|
|
|
{
|
|
|
|
if(_SDL_GL_SwapBuffers)
|
|
|
|
{
|
|
|
|
if(!errorstate)
|
|
|
|
{
|
|
|
|
SHM_Act();
|
|
|
|
}
|
|
|
|
counter ++;
|
|
|
|
_SDL_GL_SwapBuffers();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
// hook - called every tick in the 2D mode of DF
|
|
|
|
DFhackCExport int SDL_Flip(void * some_ptr)
|
|
|
|
{
|
|
|
|
if(_SDL_Flip)
|
|
|
|
{
|
|
|
|
if(!errorstate)
|
|
|
|
{
|
|
|
|
SHM_Act();
|
|
|
|
}
|
|
|
|
counter ++;
|
|
|
|
return _SDL_Flip(some_ptr);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2011-07-09 03:33:58 -06:00
|
|
|
static SDL::Mutex * (*_SDL_CreateMutex)(void) = 0;
|
|
|
|
DFhackCExport SDL::Mutex * SDL_CreateMutex(void)
|
2011-06-16 15:53:39 -06:00
|
|
|
{
|
|
|
|
return _SDL_CreateMutex();
|
|
|
|
}
|
|
|
|
|
2011-07-09 03:33:58 -06:00
|
|
|
static int (*_SDL_mutexP)(SDL::Mutex * mutex) = 0;
|
|
|
|
DFhackCExport int SDL_mutexP(SDL::Mutex * mutex)
|
2011-06-16 15:53:39 -06:00
|
|
|
{
|
|
|
|
return _SDL_mutexP(mutex);
|
|
|
|
}
|
|
|
|
|
2011-07-09 03:33:58 -06:00
|
|
|
static int (*_SDL_mutexV)(SDL::Mutex * mutex) = 0;
|
|
|
|
DFhackCExport int SDL_mutexV(SDL::Mutex * mutex)
|
2011-06-16 15:53:39 -06:00
|
|
|
{
|
|
|
|
return _SDL_mutexV(mutex);
|
|
|
|
}
|
|
|
|
|
2011-07-09 03:33:58 -06:00
|
|
|
static void (*_SDL_DestroyMutex)(SDL::Mutex * mutex) = 0;
|
|
|
|
DFhackCExport void SDL_DestroyMutex(SDL::Mutex * mutex)
|
2011-06-16 15:53:39 -06:00
|
|
|
{
|
|
|
|
_SDL_DestroyMutex(mutex);
|
|
|
|
}
|
|
|
|
|
2011-06-12 15:17:40 -06:00
|
|
|
// hook - called at program exit
|
|
|
|
DFhackCExport void SDL_Quit(void)
|
|
|
|
{
|
2011-06-14 08:13:28 -06:00
|
|
|
DFHack::Core & c = DFHack::Core::getInstance();
|
|
|
|
c.Shutdown();
|
2011-06-12 15:17:40 -06:00
|
|
|
if(_SDL_Quit)
|
|
|
|
{
|
|
|
|
_SDL_Quit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-07 19:55:37 -06:00
|
|
|
// called by DF to check input events
|
2011-07-09 03:33:58 -06:00
|
|
|
static int (*_SDL_PollEvent)(SDL::Event* event) = 0;
|
|
|
|
DFhackCExport int SDL_PollEvent(SDL::Event* event)
|
2011-07-07 19:55:37 -06:00
|
|
|
{
|
2011-07-09 03:33:58 -06:00
|
|
|
int orig_return = _SDL_PollEvent(event);
|
2011-07-07 19:55:37 -06:00
|
|
|
// only send events to Core after we get first SDL_NumJoysticks call
|
|
|
|
// DF event loop is possibly polling for SDL events before things get inited properly
|
|
|
|
// SDL handles it. We don't, because we use some other parts of SDL too.
|
2011-07-11 15:07:42 -06:00
|
|
|
|
|
|
|
// possible data race. whatever. it's a flag, we don't mind all that much
|
2011-07-07 19:55:37 -06:00
|
|
|
if(inited && event != 0)
|
|
|
|
{
|
|
|
|
DFHack::Core & c = DFHack::Core::getInstance();
|
2011-07-09 03:33:58 -06:00
|
|
|
return c.SDL_Event(event, orig_return);
|
2011-07-07 19:55:37 -06:00
|
|
|
}
|
2011-07-09 03:33:58 -06:00
|
|
|
return orig_return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t (*_SDL_ThreadID)(void) = 0;
|
|
|
|
DFhackCExport uint32_t SDL_ThreadID()
|
|
|
|
{
|
|
|
|
return _SDL_ThreadID();
|
2011-07-07 19:55:37 -06:00
|
|
|
}
|
|
|
|
|
2011-07-09 03:33:58 -06:00
|
|
|
static SDL::Cond * (*_SDL_CreateCond)(void) = 0;
|
|
|
|
DFhackCExport SDL::Cond *SDL_CreateCond(void)
|
|
|
|
{
|
|
|
|
return _SDL_CreateCond();
|
|
|
|
}
|
|
|
|
static void (*_SDL_DestroyCond)(SDL::Cond *) = 0;
|
|
|
|
DFhackCExport void SDL_DestroyCond(SDL::Cond *cond)
|
|
|
|
{
|
|
|
|
_SDL_DestroyCond(cond);
|
|
|
|
}
|
|
|
|
static int (*_SDL_CondSignal)(SDL::Cond *) = 0;
|
|
|
|
DFhackCExport int SDL_CondSignal(SDL::Cond *cond)
|
|
|
|
{
|
|
|
|
return _SDL_CondSignal(cond);
|
|
|
|
}
|
|
|
|
static int (*_SDL_CondWait)(SDL::Cond *, SDL::Mutex *) = 0;
|
|
|
|
DFhackCExport int SDL_CondWait(SDL::Cond *cond, SDL::Mutex * mut)
|
|
|
|
{
|
|
|
|
return _SDL_CondWait(cond, mut);
|
|
|
|
}
|
2011-07-07 19:55:37 -06:00
|
|
|
|
2011-06-12 15:17:40 -06:00
|
|
|
// hook - called at program start, initialize some stuffs we'll use later
|
|
|
|
DFhackCExport int SDL_Init(uint32_t flags)
|
|
|
|
{
|
2011-06-22 00:14:21 -06:00
|
|
|
freopen("stdout.log", "w", stdout);
|
|
|
|
freopen("stderr.log", "w", stderr);
|
2011-07-09 03:33:58 -06:00
|
|
|
// horrible casts not supported by the C or C++ standards. Only POSIX. Damn you, POSIX.
|
2011-06-12 15:17:40 -06:00
|
|
|
// find real functions
|
|
|
|
//_SDL_GL_SwapBuffers = (void (*)( void )) dlsym(RTLD_NEXT, "SDL_GL_SwapBuffers");
|
|
|
|
_SDL_Init = (int (*)( uint32_t )) dlsym(RTLD_NEXT, "SDL_Init");
|
|
|
|
//_SDL_Flip = (int (*)( void * )) dlsym(RTLD_NEXT, "SDL_Flip");
|
|
|
|
_SDL_Quit = (void (*)( void )) dlsym(RTLD_NEXT, "SDL_Quit");
|
2011-07-09 03:33:58 -06:00
|
|
|
_SDL_CreateThread = (SDL::Thread* (*)(int (*fn)(void *), void *data))dlsym(RTLD_NEXT, "SDL_CreateThread");
|
|
|
|
_SDL_CreateMutex = (SDL::Mutex*(*)())dlsym(RTLD_NEXT,"SDL_CreateMutex");
|
|
|
|
_SDL_DestroyMutex = (void (*)(SDL::Mutex*))dlsym(RTLD_NEXT,"SDL_DestroyMutex");
|
|
|
|
_SDL_mutexP = (int (*)(SDL::Mutex*))dlsym(RTLD_NEXT,"SDL_mutexP");
|
|
|
|
_SDL_mutexV = (int (*)(SDL::Mutex*))dlsym(RTLD_NEXT,"SDL_mutexV");
|
|
|
|
_SDL_PollEvent = (int (*)(SDL::Event*))dlsym(RTLD_NEXT,"SDL_PollEvent");
|
|
|
|
_SDL_ThreadID = (uint32_t (*)())dlsym(RTLD_NEXT,"SDL_ThreadID");
|
|
|
|
|
|
|
|
_SDL_CreateCond = (SDL::Cond * (*)())dlsym(RTLD_NEXT,"SDL_CreateCond");
|
|
|
|
_SDL_DestroyCond = (void(*)(SDL::Cond *))dlsym(RTLD_NEXT,"SDL_DestroyCond");
|
|
|
|
_SDL_CondSignal = (int (*)(SDL::Cond *))dlsym(RTLD_NEXT,"SDL_CondSignal");
|
|
|
|
_SDL_CondWait = (int (*)(SDL::Cond *, SDL::Mutex *))dlsym(RTLD_NEXT,"SDL_CondWait");
|
2011-06-12 15:17:40 -06:00
|
|
|
|
|
|
|
// check if we got them
|
2011-07-09 03:33:58 -06:00
|
|
|
if(_SDL_Init && _SDL_Quit && _SDL_CreateThread
|
|
|
|
&& _SDL_CreateMutex && _SDL_DestroyMutex && _SDL_mutexP
|
|
|
|
&& _SDL_mutexV && _SDL_PollEvent && _SDL_ThreadID
|
|
|
|
&& _SDL_CondSignal && _SDL_CondWait && _SDL_CreateCond && _SDL_DestroyCond)
|
2011-06-12 15:17:40 -06:00
|
|
|
{
|
|
|
|
fprintf(stderr,"dfhack: hooking successful\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// bail, this would be a disaster otherwise
|
|
|
|
fprintf(stderr,"dfhack: something went horribly wrong\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2011-07-07 19:55:37 -06:00
|
|
|
int ret = _SDL_Init(flags);
|
|
|
|
return ret;
|
2011-06-12 15:17:40 -06:00
|
|
|
}
|