misc/libphyslayer/physfslualoader.c
author koda
Mon, 26 Sep 2016 23:36:00 -0400
changeset 11856 5edd66c2d422
parent 9991 3858d99476f5
child 13542 ecdf6ce2301e
permissions -rw-r--r--
Drop xfire module The service shut down, this is now dead code with potential GPL license incompatibility.

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

#include "physfscompat.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;
}