1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
/*
NET2 is a threaded, event based, network IO library for SDL.
Copyright (C) 2002 Bob Pendleton
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation; either version 2.1
of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA
If you do not wish to comply with the terms of the LGPL please
contact the author as other terms are available for a fee.
Bob Pendleton
Bob@Pendleton.com
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "SDL.h"
#include "SDL_thread.h"
#include "fastevents.h"
// ----------------------------------------
//
// error handling code
//
static char *error = NULL;
static __inline__ void
setError(char *err)
{
error = err;
}
char *
FE_GetError()
{
return error;
}
//----------------------------------------
//
// Threads, mutexs, thread utils, and
// thread safe wrappers
//
static SDL_mutex *eventLock = NULL;
static SDL_cond *eventWait = NULL;
static SDL_TimerID eventTimer = 0;
//----------------------------------------
//
//
//
int
FE_PushEvent(SDL_Event *ev)
{
SDL_LockMutex(eventLock);
while (-1 == SDL_PushEvent(ev))
SDL_CondWait(eventWait, eventLock);
SDL_CondSignal(eventWait);
SDL_UnlockMutex(eventLock);
return 1;
}
//----------------------------------------
//
//
//
void
FE_PumpEvents()
{
SDL_LockMutex(eventLock);
SDL_PumpEvents();
SDL_UnlockMutex(eventLock);
}
//----------------------------------------
//
//
//
int
FE_PollEvent(SDL_Event *event)
{
int val = 0;
SDL_LockMutex(eventLock);
val = SDL_PollEvent(event);
if (0 < val)
SDL_CondSignal(eventWait);
SDL_UnlockMutex(eventLock);
return val;
}
//----------------------------------------
//
// Replacement for SDL_WaitEvent
//
int
FE_WaitEvent(SDL_Event *event)
{
int val = 0;
SDL_LockMutex(eventLock);
while (0 >= (val = SDL_PollEvent(event)))
SDL_CondWait(eventWait, eventLock);
SDL_CondSignal(eventWait);
SDL_UnlockMutex(eventLock);
return val;
}
//----------------------------------------
//
//
//
static Uint32
timerCallback(Uint32 interval, void *param)
{
SDL_LockMutex(eventLock);
SDL_CondBroadcast(eventWait);
SDL_UnlockMutex(eventLock);
return interval;
}
//----------------------------------------
//
//
//
int
FE_Init()
{
if (0 == (SDL_INIT_TIMER & SDL_WasInit(SDL_INIT_TIMER)))
SDL_InitSubSystem(SDL_INIT_TIMER);
eventLock = SDL_CreateMutex();
if (NULL == eventLock) {
setError("FE: can't create a mutex");
return -1;
}
eventWait = SDL_CreateCond();
if (NULL == eventWait) {
setError("FE: can't create a condition variable");
return -1;
}
eventTimer = SDL_AddTimer(10, timerCallback, NULL);
if (NULL == eventTimer) {
setError("FE: can't add a timer");
return -1;
}
return 0;
}
//----------------------------------------
//
//
//
void
FE_Quit()
{
SDL_DestroyMutex(eventLock);
eventLock = NULL;
SDL_DestroyCond(eventWait);
eventWait = NULL;
SDL_RemoveTimer(eventTimer);
}
|