aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/iphone
diff options
context:
space:
mode:
authorOystein Eftevaag2007-11-14 23:19:09 +0000
committerOystein Eftevaag2007-11-14 23:19:09 +0000
commit41456707d64228c4271a53c4928647419574ee57 (patch)
treeeb51b72957cc0056f811d2fb4e5dde62f13648cf /backends/platform/iphone
parent0dc9a12db9377d233182dbe079934815c8d74e87 (diff)
downloadscummvm-rg350-41456707d64228c4271a53c4928647419574ee57.tar.gz
scummvm-rg350-41456707d64228c4271a53c4928647419574ee57.tar.bz2
scummvm-rg350-41456707d64228c4271a53c4928647419574ee57.zip
iPhone: Implemented timers, and disabled mutexes (was causing deadlocks in SnM and COMI, for some reason
svn-id: r29506
Diffstat (limited to 'backends/platform/iphone')
-rw-r--r--backends/platform/iphone/iphone_video.m1
-rw-r--r--backends/platform/iphone/osys_iphone.cpp57
-rw-r--r--backends/platform/iphone/osys_iphone.h7
3 files changed, 51 insertions, 14 deletions
diff --git a/backends/platform/iphone/iphone_video.m b/backends/platform/iphone/iphone_video.m
index becd30b7d7..fda41654f2 100644
--- a/backends/platform/iphone/iphone_video.m
+++ b/backends/platform/iphone/iphone_video.m
@@ -242,6 +242,7 @@ bool iPhone_fetchEvent(int *outEvent, float *outX, float *outY)
- (void)mouseDragged:(GSEvent*)event
{
+ //printf("mouseDragged()\n");
struct CGPoint point = GSEventGetLocationInWindow(event);
[self addEvent:
[[NSDictionary alloc] initWithObjectsAndKeys:
diff --git a/backends/platform/iphone/osys_iphone.cpp b/backends/platform/iphone/osys_iphone.cpp
index 34eaaefb14..4cc2a8b8e5 100644
--- a/backends/platform/iphone/osys_iphone.cpp
+++ b/backends/platform/iphone/osys_iphone.cpp
@@ -64,6 +64,8 @@ OSystem_IPHONE::OSystem_IPHONE() :
}
OSystem_IPHONE::~OSystem_IPHONE() {
+ AudioQueueDispose(s_AudioQueue.queue, true);
+
delete _savefile;
delete _mixer;
delete _timer;
@@ -71,15 +73,23 @@ OSystem_IPHONE::~OSystem_IPHONE() {
delete _fullscreen;
}
+int OSystem_IPHONE::timerHandler(int t)
+{
+ DefaultTimerManager *tm = (DefaultTimerManager *)g_system->getTimerManager();
+ tm->handler();
+ return t;
+}
+
void OSystem_IPHONE::initBackend() {
_savefile = new DefaultSaveFileManager();
_mixer = new Audio::Mixer();
_timer = new DefaultTimerManager();
- setSoundCallback(Audio::Mixer::mixCallback, _mixer);
-
gettimeofday(&_startTime, NULL);
+ setSoundCallback(Audio::Mixer::mixCallback, _mixer);
+ setTimerCallback(&OSystem_IPHONE::timerHandler, 10);
+
OSystem::initBackend();
}
@@ -395,6 +405,14 @@ void OSystem_IPHONE::setMouseCursor(const byte *buf, uint w, uint h, int hotspot
bool OSystem_IPHONE::pollEvent(Common::Event &event) {
//printf("pollEvent()\n");
+ long curTime = getMillis();
+
+ if (_timerCallback && (curTime >= _timerCallbackNext)) {
+ //printf("Time for a callback\n");
+ //_timerCallbackTimer = _timerCallback(_timerCallbackTimer);
+ _timerCallbackNext = curTime + _timerCallbackTimer;
+ }
+
if (_queuedInputEvent.type != (Common::EventType)0) {
event = _queuedInputEvent;
_queuedInputEvent.type = (Common::EventType)0;
@@ -408,8 +426,6 @@ bool OSystem_IPHONE::pollEvent(Common::Event &event) {
int x = (int)((1.0 - yUnit) * _screenWidth);
int y = (int)(xUnit * _screenHeight);
- long curTime = getMillis();
-
switch ((InputEvent)eventType) {
case kInputMouseDown:
//printf("Mouse down at (%u, %u)\n", x, y);
@@ -482,7 +498,7 @@ bool OSystem_IPHONE::pollEvent(Common::Event &event) {
event.kbd.flags = _queuedInputEvent.kbd.flags = 0;
event.kbd.keycode = _queuedInputEvent.kbd.keycode = Common::KEYCODE_1;
- event.kbd.ascii = _queuedInputEvent.kbd.ascii = 27;
+ event.kbd.ascii = _queuedInputEvent.kbd.ascii = '1';
} else if (vecXNorm > 0.75 && vecYNorm > -0.5 && vecYNorm < 0.5) {
// Swipe right
return false;
@@ -553,27 +569,28 @@ uint32 OSystem_IPHONE::getMillis() {
}
void OSystem_IPHONE::delayMillis(uint msecs) {
- //printf("delayMillis(%d)\n", msecs);
+ printf("delayMillis(%d)\n", msecs);
usleep(msecs * 1000);
}
OSystem::MutexRef OSystem_IPHONE::createMutex(void) {
- pthread_mutex_t *mutex = (pthread_mutex_t *) malloc(sizeof(pthread_mutex_t));
- pthread_mutex_init(mutex, NULL);
- return (MutexRef)mutex;
+ //pthread_mutex_t *mutex = (pthread_mutex_t *) malloc(sizeof(pthread_mutex_t));
+ //pthread_mutex_init(mutex, NULL);
+ //return (MutexRef)mutex;
+ return NULL;
}
void OSystem_IPHONE::lockMutex(MutexRef mutex) {
- pthread_mutex_lock((pthread_mutex_t *) mutex);
+ //pthread_mutex_lock((pthread_mutex_t *) mutex);
}
void OSystem_IPHONE::unlockMutex(MutexRef mutex) {
- pthread_mutex_unlock((pthread_mutex_t *) mutex);
+ //pthread_mutex_unlock((pthread_mutex_t *) mutex);
}
void OSystem_IPHONE::deleteMutex(MutexRef mutex) {
- pthread_mutex_destroy((pthread_mutex_t *) mutex);
- free(mutex);
+ //pthread_mutex_destroy((pthread_mutex_t *) mutex);
+ //free(mutex);
}
void OSystem_IPHONE::AQBufferCallback(void *in, AudioQueueRef inQ, AudioQueueBufferRef outQB) {
@@ -634,8 +651,20 @@ int OSystem_IPHONE::getOutputSampleRate() const {
return AUDIO_SAMPLE_RATE;
}
+void OSystem_IPHONE::setTimerCallback(TimerProc callback, int interval) {
+ //printf("setTimerCallback()\n");
+
+ if (callback != NULL) {
+ _timerCallbackTimer = interval;
+ _timerCallbackNext = getMillis() + interval;
+ _timerCallback = callback;
+ } else {
+ _timerCallback = NULL;
+ }
+}
+
void OSystem_IPHONE::quit() {
- AudioQueueDispose(s_AudioQueue.queue, true);
+
}
void OSystem_IPHONE::setWindowCaption(const char *caption) {
diff --git a/backends/platform/iphone/osys_iphone.h b/backends/platform/iphone/osys_iphone.h
index 7e0a046604..3f12a0ca72 100644
--- a/backends/platform/iphone/osys_iphone.h
+++ b/backends/platform/iphone/osys_iphone.h
@@ -34,6 +34,7 @@
#define AUDIO_SAMPLE_RATE 44100
typedef void (*SoundProc)(void *param, byte *buf, int len);
+typedef int (*TimerProc)(int interval);
typedef struct AQCallbackStruct {
AudioQueueRef queue;
@@ -80,6 +81,10 @@ protected:
long _lastSecondaryTap;
int _gestureStartX, _gestureStartY;
+ int _timerCallbackNext;
+ int _timerCallbackTimer;
+ TimerProc _timerCallback;
+
public:
OSystem_IPHONE();
@@ -134,6 +139,7 @@ public:
virtual bool setSoundCallback(SoundProc proc, void *param);
virtual void clearSoundCallback();
virtual int getOutputSampleRate() const;
+ virtual void setTimerCallback(TimerProc callback, int interval);
virtual void quit();
@@ -145,6 +151,7 @@ public:
protected:
static void AQBufferCallback(void *in, AudioQueueRef inQ, AudioQueueBufferRef outQB);
+ static int timerHandler(int t);
};
#endif