misc/libphyslayer/physfslualoader.c
author Wuzzy <Wuzzy2@mail.ru>
Mon, 28 Oct 2019 18:58:13 +0100
changeset 15489 3c0a3c824c49
parent 13537 ecdf6ce2301e
permissions -rw-r--r--
Racer: Force-enable solid land Otherwise, the land could degrade after each round, making the game progressively easier for later players

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