misc/libphyslayer/physfslualoader.c
author koda
Mon, 25 Feb 2013 00:20:09 +0100
branchphysfslayer
changeset 8549 af104e59ea8e
parent 8524 a65e9bcf0a03
child 9991 3858d99476f5
permissions -rw-r--r--
due to popular demand, add a compile time switch to manually select whether to build the internal physfs (default) or not

#include "lua.h"
#include "physfs.h"

#define BUFSIZE 1024

void *physfsReaderBuffer;

PHYSFS_DECL const char * physfsReader(lua_State *L, PHYSFS_File *f, size_t *size)
{

    if(PHYSFS_eof(f))
    {
        return NULL;
    }
    else
    {
        *size = PHYSFS_readBytes(f, physfsReaderBuffer, BUFSIZE);

        if(*size == 0)
            return NULL;
        else
            return physfsReaderBuffer;
    }
}

PHYSFS_DECL void physfsReaderSetBuffer(void *buffer)
{
    physfsReaderBuffer = buffer;
}