scummvm/backends/platform/ps2/asyncfio.cpp
Max Lingua 804910c422 - 0.13.x friendly ;-)
- new GUI/themes

- no more funky colors!

- load/delete saved games


- cleaned-up Makefile.PS2 :
- dropped multiple extra paths
- dropped deprecated deps (UCL, MPEG2)


- all possible devices are supported to store, play and save games:

- CD
- HD
- USB
- MC
- REMOTE ! (this could actually be anywhere on the internet
as long as you run "ps2client listen" on the machine on
the other side that hosts the games)


- tested from :
- ps2link
- uLE
- toxicOS


- tested with:
- bass
- bs1
- mi1
- comi
- indy4
- ft
- ite
- ihnm
- elvira1
- dig
- kyra
- lure
- simon2
- goblins1

Played all those games in 1 session using RTL. Very smooth,
sub-second RTL experience. No crash!


- new PAL/NTSC detection : we are now reading the flavor from PS2 ROM,
it should work on all PS2 slim too


- new PAL TV centering : no more missing chunk of games on top/bottom


- we can now read the savefiles from Linux/SDL and other backends!
if you add that you can read them from remote together with the
games that you already have there, you can imagine the fun ;-)


- we fully implement RTL with every games/engine


- we nicely reboot / shutdown on quit


- fully support for themes/savegames paths. Run from MC, play the
games on remote and store your data on USB or HD. No limits!


- universal write/read for every media (of course no write on CD/DVD!)


- fully async / DMA read-write access to every media (even MC!)


- optimized cache/read-ahead for every media - now COMI is fast and
enjoyable from remote as it is from CD ;-)


- non polluting MC storage, just 1 folder + 1 icon, so that you can
copy all your settings / saved games to another MC in one go!

svn-id: r39102
2009-03-04 03:55:00 +00:00

244 lines
5.5 KiB
C++

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program 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 General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL$
* $Id$
*
*/
#include "asyncfio.h"
#include <tamtypes.h>
#include <kernel.h>
#include <fileio.h>
#include <assert.h>
#include <string.h>
#include <fileXio_rpc.h>
#include "backends/platform/ps2/ps2debug.h"
#define DEFAULT_MODE (FIO_S_IRUSR | FIO_S_IWUSR | FIO_S_IRGRP | FIO_S_IWGRP | FIO_S_IROTH | FIO_S_IWOTH)
AsyncFio::AsyncFio(void) {
_runningOp = NULL;
memset((int *)_ioSlots, 0, MAX_HANDLES * sizeof(int));
ee_sema_t newSema;
newSema.init_count = 1;
newSema.max_count = 1;
_ioSema = CreateSema(&newSema);
}
AsyncFio::~AsyncFio(void) {
DeleteSema(_ioSema);
}
int AsyncFio::open(const char *name, int ioMode) {
WaitSema(_ioSema);
checkSync();
int res;
fileXioOpen(name, ioMode, DEFAULT_MODE);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
//dbg_printf("FIO: open(%s, %d) => %d\n", name, ioMode, res);
return res;
}
int AsyncFio::open(const char *name, int ioMode, int mode) {
WaitSema(_ioSema);
checkSync();
int res;
fileXioOpen(name, ioMode, mode);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
// dbg_printf("FIO: open ext(%s, %d, %d) => %d", name, ioMode, mode, res);
return res;
}
void AsyncFio::close(int handle) {
WaitSema(_ioSema);
checkSync();
fileXioClose(handle);
int res;
fileXioWaitAsync(FXIO_WAIT, &res);
if (res != 0)
sioprintf("ERROR: fileXioClose failed, EC %d\n", res);
_ioSlots[handle] = 0;
SignalSema(_ioSema);
}
void AsyncFio::checkSync(void) {
if (_runningOp) {
fileXioWaitAsync(FXIO_WAIT, (int *)_runningOp);
_runningOp = NULL;
}
}
void AsyncFio::read(int fd, void *dest, unsigned int len) {
WaitSema(_ioSema);
checkSync();
assert(fd < MAX_HANDLES);
_runningOp = _ioSlots + fd;
fileXioRead(fd, (unsigned char*)dest, len);
SignalSema(_ioSema);
}
void AsyncFio::write(int fd, const void *src, unsigned int len) {
WaitSema(_ioSema);
checkSync();
assert(fd < MAX_HANDLES);
_runningOp = _ioSlots + fd;
fileXioWrite(fd, (unsigned char*)src, len);
SignalSema(_ioSema);
}
void AsyncFio::remove(const char *path) {
int res;
WaitSema(_ioSema);
checkSync();
fileXioRemove(path);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
}
int AsyncFio::seek(int fd, int offset, int whence) {
int res;
WaitSema(_ioSema);
checkSync();
fileXioLseek(fd, offset, whence);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
return res;
}
int AsyncFio::mkdir(const char *name) {
int res;
WaitSema(_ioSema);
checkSync();
fileXioMkdir(name, DEFAULT_MODE);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
return res;
}
int AsyncFio::dopen(const char *name) {
int res;
WaitSema(_ioSema);
checkSync();
fileXioDopen(name);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
dbg_printf("FIO: dopen(%s) => %d\n", name, res);
return res;
}
int AsyncFio::dread(int fd, iox_dirent_t *dest) {
int res;
WaitSema(_ioSema);
checkSync();
fileXioDread(fd, dest);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
return res;
}
void AsyncFio::dclose(int fd) {
int res;
WaitSema(_ioSema);
checkSync();
fileXioDclose(fd);
fileXioWaitAsync(FXIO_WAIT, &res);
//assert(res == 0);
dbg_printf("FIO: dclose(%d) => %d\n", fd, res);
if (res != 0)
sioprintf("ERROR: fileXioDclose failed, EC %d\n", res);
SignalSema(_ioSema);
}
int AsyncFio::chdir(const char *name) {
int res;
WaitSema(_ioSema);
checkSync();
fileXioChdir(name);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
return res;
}
int AsyncFio::mount(const char *mountpoint, const char *mountstring, int flag) {
int res;
WaitSema(_ioSema);
checkSync();
fileXioMount(mountpoint, mountstring, flag);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
return res;
}
int AsyncFio::umount(const char *mountpoint) {
int res;
WaitSema(_ioSema);
checkSync();
fileXioUmount(mountpoint);
fileXioWaitAsync(FXIO_WAIT, &res);
SignalSema(_ioSema);
return res;
}
int AsyncFio::sync(int fd) {
WaitSema(_ioSema);
if (_runningOp == _ioSlots + fd)
checkSync();
int res = _ioSlots[fd];
_ioSlots[fd] = 0;
SignalSema(_ioSema);
return res;
}
bool AsyncFio::poll(int fd) {
bool retVal = false;
if (PollSema(_ioSema) >= 0) {
if (_runningOp == _ioSlots + fd) {
if (fileXioWaitAsync(FXIO_NOWAIT, (int *)_runningOp) == FXIO_COMPLETE) {
_runningOp = NULL;
retVal = true;
} else
retVal = false;
} else
retVal = true;
SignalSema(_ioSema);
}
return retVal;
}
bool AsyncFio::fioAvail(void) {
bool retVal = false;
if (PollSema(_ioSema) > 0) {
if (_runningOp) {
if (fileXioWaitAsync(FXIO_NOWAIT, (int *)_runningOp) == FXIO_COMPLETE) {
_runningOp = NULL;
retVal = true;
} else
retVal = false;
} else
retVal = true;
SignalSema(_ioSema);
}
return retVal;
}