misc/libphyslayer/physfslualoader.c
author Wuzzy <Wuzzy2@mail.ru>
Wed, 08 Aug 2018 14:10:32 +0200
changeset 13641 007813b81f1b
parent 13537 ecdf6ce2301e
permissions -rw-r--r--
Use light gray color for volume change, just like for the auto camera msgs The idea is that these are "local" messages for local changes

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

#include "physfscompat.h"

#define BUFSIZE 1024
#define UNUSED(x) (void)(x)

void *physfsReaderBuffer;

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

    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;
}