2015-06-21 09:33:46 -06:00
|
|
|
/*
|
|
|
|
Simple DirectMedia Layer
|
2023-01-09 10:41:41 -07:00
|
|
|
Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file SDL_rwops.h
|
|
|
|
*
|
|
|
|
* This file provides a general interface for SDL to read and write
|
|
|
|
* data streams. It can easily be extended to files, memory, etc.
|
|
|
|
*/
|
|
|
|
|
2016-11-20 22:34:54 -07:00
|
|
|
#ifndef SDL_rwops_h_
|
|
|
|
#define SDL_rwops_h_
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL_stdinc.h>
|
|
|
|
#include <SDL3/SDL_error.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-12-22 09:38:59 -07:00
|
|
|
#include <SDL3/SDL_begin_code.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
/* Set up for C function definitions, even when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* RWops Types */
|
2017-06-04 15:15:39 -06:00
|
|
|
#define SDL_RWOPS_UNKNOWN 0U /**< Unknown stream type */
|
|
|
|
#define SDL_RWOPS_WINFILE 1U /**< Win32 file */
|
|
|
|
#define SDL_RWOPS_STDFILE 2U /**< Stdio file */
|
|
|
|
#define SDL_RWOPS_JNIFILE 3U /**< Android asset */
|
|
|
|
#define SDL_RWOPS_MEMORY 4U /**< Memory stream */
|
|
|
|
#define SDL_RWOPS_MEMORY_RO 5U /**< Read-Only memory stream */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the read/write operation structure -- very basic.
|
|
|
|
*/
|
|
|
|
typedef struct SDL_RWops
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Return the size of the file in this rwops, or -1 if unknown
|
|
|
|
*/
|
|
|
|
Sint64 (SDLCALL * size) (struct SDL_RWops * context);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Seek to \c offset relative to \c whence, one of stdio's whence values:
|
2022-12-23 02:16:11 -07:00
|
|
|
* SDL_RW_SEEK_SET, SDL_RW_SEEK_CUR, SDL_RW_SEEK_END
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
|
|
|
* \return the final offset in the data stream, or -1 on error.
|
|
|
|
*/
|
|
|
|
Sint64 (SDLCALL * seek) (struct SDL_RWops * context, Sint64 offset,
|
|
|
|
int whence);
|
|
|
|
|
|
|
|
/**
|
2022-12-14 13:42:54 -07:00
|
|
|
* Read up to \c size bytes from the data stream to the area pointed
|
|
|
|
* at by \c ptr.
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
2022-12-14 13:42:54 -07:00
|
|
|
* It is an error to use a negative \c size, but this parameter is
|
|
|
|
* signed so you definitely cannot overflow the return value on a
|
|
|
|
* successful run with enormous amounts of data.
|
|
|
|
*
|
|
|
|
* \return the number of objects read, or 0 on end of file, or -1 on error.
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
2022-12-14 13:42:54 -07:00
|
|
|
Sint64 (SDLCALL * read) (struct SDL_RWops * context, void *ptr,
|
|
|
|
Sint64 size);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
2022-12-14 13:42:54 -07:00
|
|
|
* Write exactly \c size bytes from the area pointed at by \c ptr
|
|
|
|
* to data stream. May write less than requested (error, non-blocking i/o,
|
|
|
|
* etc). Returns -1 on error when nothing was written.
|
|
|
|
*
|
|
|
|
* It is an error to use a negative \c size, but this parameter is
|
|
|
|
* signed so you definitely cannot overflow the return value on a
|
|
|
|
* successful run with enormous amounts of data.
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
2022-12-14 13:42:54 -07:00
|
|
|
* \return the number of bytes written, which might be less than \c size,
|
|
|
|
* and -1 on error.
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
2022-12-14 13:42:54 -07:00
|
|
|
Sint64 (SDLCALL * write) (struct SDL_RWops * context, const void *ptr,
|
|
|
|
Sint64 size);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close and free an allocated SDL_RWops structure.
|
|
|
|
*
|
|
|
|
* \return 0 if successful or -1 on write error when flushing data.
|
|
|
|
*/
|
|
|
|
int (SDLCALL * close) (struct SDL_RWops * context);
|
|
|
|
|
|
|
|
Uint32 type;
|
|
|
|
union
|
|
|
|
{
|
2023-03-30 12:26:31 -06:00
|
|
|
#ifdef __ANDROID__
|
2015-06-21 09:33:46 -06:00
|
|
|
struct
|
|
|
|
{
|
2020-08-17 11:50:20 -06:00
|
|
|
void *asset;
|
2015-06-21 09:33:46 -06:00
|
|
|
} androidio;
|
2023-07-09 14:36:00 -06:00
|
|
|
|
2022-06-27 11:19:39 -06:00
|
|
|
#elif defined(__WIN32__) || defined(__GDK__)
|
2015-06-21 09:33:46 -06:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
SDL_bool append;
|
|
|
|
void *h;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
size_t size;
|
|
|
|
size_t left;
|
|
|
|
} buffer;
|
|
|
|
} windowsio;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
SDL_bool autoclose;
|
2022-11-25 10:55:42 -07:00
|
|
|
void *fp;
|
2015-06-21 09:33:46 -06:00
|
|
|
} stdio;
|
2022-11-25 10:55:42 -07:00
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
Uint8 *base;
|
|
|
|
Uint8 *here;
|
|
|
|
Uint8 *stop;
|
|
|
|
} mem;
|
2023-07-09 14:36:00 -06:00
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
void *data1;
|
|
|
|
void *data2;
|
|
|
|
} unknown;
|
|
|
|
} hidden;
|
|
|
|
|
|
|
|
} SDL_RWops;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \name RWFrom functions
|
|
|
|
*
|
|
|
|
* Functions to create SDL_RWops structures from various data streams.
|
|
|
|
*/
|
|
|
|
/* @{ */
|
|
|
|
|
2021-10-08 18:22:48 -06:00
|
|
|
/**
|
|
|
|
* Use this function to create a new SDL_RWops structure for reading from
|
|
|
|
* and/or writing to a named file.
|
|
|
|
*
|
|
|
|
* The `mode` string is treated roughly the same as in a call to the C
|
|
|
|
* library's fopen(), even if SDL doesn't happen to use fopen() behind the
|
|
|
|
* scenes.
|
|
|
|
*
|
|
|
|
* Available `mode` strings:
|
|
|
|
*
|
|
|
|
* - "r": Open a file for reading. The file must exist.
|
|
|
|
* - "w": Create an empty file for writing. If a file with the same name
|
|
|
|
* already exists its content is erased and the file is treated as a new
|
|
|
|
* empty file.
|
|
|
|
* - "a": Append to a file. Writing operations append data at the end of the
|
|
|
|
* file. The file is created if it does not exist.
|
|
|
|
* - "r+": Open a file for update both reading and writing. The file must
|
|
|
|
* exist.
|
|
|
|
* - "w+": Create an empty file for both reading and writing. If a file with
|
|
|
|
* the same name already exists its content is erased and the file is
|
|
|
|
* treated as a new empty file.
|
|
|
|
* - "a+": Open a file for reading and appending. All writing operations are
|
|
|
|
* performed at the end of the file, protecting the previous content to be
|
|
|
|
* overwritten. You can reposition (fseek, rewind) the internal pointer to
|
|
|
|
* anywhere in the file for reading, but writing operations will move it
|
|
|
|
* back to the end of file. The file is created if it does not exist.
|
|
|
|
*
|
|
|
|
* **NOTE**: In order to open a file as a binary file, a "b" character has to
|
|
|
|
* be included in the `mode` string. This additional "b" character can either
|
|
|
|
* be appended at the end of the string (thus making the following compound
|
|
|
|
* modes: "rb", "wb", "ab", "r+b", "w+b", "a+b") or be inserted between the
|
|
|
|
* letter and the "+" sign for the mixed modes ("rb+", "wb+", "ab+").
|
|
|
|
* Additional characters may follow the sequence, although they should have no
|
|
|
|
* effect. For example, "t" is sometimes appended to make explicit the file is
|
|
|
|
* a text file.
|
|
|
|
*
|
|
|
|
* This function supports Unicode filenames, but they must be encoded in UTF-8
|
|
|
|
* format, regardless of the underlying operating system.
|
|
|
|
*
|
|
|
|
* As a fallback, SDL_RWFromFile() will transparently open a matching filename
|
|
|
|
* in an Android app's `assets`.
|
|
|
|
*
|
|
|
|
* Closing the SDL_RWops will close the file handle SDL is holding internally.
|
|
|
|
*
|
|
|
|
* \param file a UTF-8 string representing the filename to open
|
|
|
|
* \param mode an ASCII string representing the mode to be used for opening
|
|
|
|
* the file.
|
|
|
|
* \returns a pointer to the SDL_RWops structure that is created, or NULL on
|
|
|
|
* failure; call SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_RWclose
|
|
|
|
* \sa SDL_RWFromConstMem
|
|
|
|
* \sa SDL_RWFromMem
|
|
|
|
* \sa SDL_RWread
|
|
|
|
* \sa SDL_RWseek
|
|
|
|
* \sa SDL_RWtell
|
|
|
|
* \sa SDL_RWwrite
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromFile(const char *file,
|
|
|
|
const char *mode);
|
|
|
|
|
2021-10-08 18:22:48 -06:00
|
|
|
/**
|
|
|
|
* Use this function to prepare a read-write memory buffer for use with
|
|
|
|
* SDL_RWops.
|
|
|
|
*
|
|
|
|
* This function sets up an SDL_RWops struct based on a memory area of a
|
|
|
|
* certain size, for both read and write access.
|
|
|
|
*
|
|
|
|
* This memory buffer is not copied by the RWops; the pointer you provide must
|
|
|
|
* remain valid until you close the stream. Closing the stream will not free
|
|
|
|
* the original buffer.
|
|
|
|
*
|
|
|
|
* If you need to make sure the RWops never writes to the memory buffer, you
|
|
|
|
* should use SDL_RWFromConstMem() with a read-only buffer of memory instead.
|
|
|
|
*
|
|
|
|
* \param mem a pointer to a buffer to feed an SDL_RWops stream
|
|
|
|
* \param size the buffer size, in bytes
|
|
|
|
* \returns a pointer to a new SDL_RWops structure, or NULL if it fails; call
|
|
|
|
* SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_RWclose
|
|
|
|
* \sa SDL_RWFromConstMem
|
|
|
|
* \sa SDL_RWFromFile
|
|
|
|
* \sa SDL_RWFromMem
|
|
|
|
* \sa SDL_RWread
|
|
|
|
* \sa SDL_RWseek
|
|
|
|
* \sa SDL_RWtell
|
|
|
|
* \sa SDL_RWwrite
|
|
|
|
*/
|
2023-07-09 14:36:00 -06:00
|
|
|
extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromMem(void *mem, size_t size);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to prepare a read-only memory buffer for use with RWops.
|
|
|
|
*
|
|
|
|
* This function sets up an SDL_RWops struct based on a memory area of a
|
|
|
|
* certain size. It assumes the memory area is not writable.
|
|
|
|
*
|
|
|
|
* Attempting to write to this RWops stream will report an error without
|
|
|
|
* writing to the memory buffer.
|
|
|
|
*
|
|
|
|
* This memory buffer is not copied by the RWops; the pointer you provide must
|
|
|
|
* remain valid until you close the stream. Closing the stream will not free
|
|
|
|
* the original buffer.
|
|
|
|
*
|
|
|
|
* If you need to write to a memory buffer, you should use SDL_RWFromMem()
|
|
|
|
* with a writable buffer of memory instead.
|
|
|
|
*
|
|
|
|
* \param mem a pointer to a read-only buffer to feed an SDL_RWops stream
|
|
|
|
* \param size the buffer size, in bytes
|
|
|
|
* \returns a pointer to a new SDL_RWops structure, or NULL if it fails; call
|
|
|
|
* SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_RWclose
|
|
|
|
* \sa SDL_RWFromConstMem
|
|
|
|
* \sa SDL_RWFromFile
|
|
|
|
* \sa SDL_RWFromMem
|
|
|
|
* \sa SDL_RWread
|
|
|
|
* \sa SDL_RWseek
|
|
|
|
* \sa SDL_RWtell
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC SDL_RWops *SDLCALL SDL_RWFromConstMem(const void *mem,
|
2023-07-09 14:36:00 -06:00
|
|
|
size_t size);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* @} *//* RWFrom functions */
|
|
|
|
|
|
|
|
|
2021-10-08 18:22:48 -06:00
|
|
|
/**
|
|
|
|
* Use this function to allocate an empty, unpopulated SDL_RWops structure.
|
|
|
|
*
|
|
|
|
* Applications do not need to use this function unless they are providing
|
|
|
|
* their own SDL_RWops implementation. If you just need a SDL_RWops to
|
|
|
|
* read/write a common data source, you should use the built-in
|
|
|
|
* implementations in SDL, like SDL_RWFromFile() or SDL_RWFromMem(), etc.
|
|
|
|
*
|
2022-12-29 16:07:59 -07:00
|
|
|
* You must free the returned pointer with SDL_DestroyRW(). Depending on your
|
2021-10-08 18:22:48 -06:00
|
|
|
* operating system and compiler, there may be a difference between the
|
|
|
|
* malloc() and free() your program uses and the versions SDL calls
|
|
|
|
* internally. Trying to mix the two can cause crashing such as segmentation
|
|
|
|
* faults. Since all SDL_RWops must free themselves when their **close**
|
|
|
|
* method is called, all SDL_RWops must be allocated through this function, so
|
2022-12-29 16:07:59 -07:00
|
|
|
* they can all be freed correctly with SDL_DestroyRW().
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
|
|
|
* \returns a pointer to the allocated memory on success, or NULL on failure;
|
|
|
|
* call SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2022-12-29 16:07:59 -07:00
|
|
|
* \sa SDL_DestroyRW
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2022-12-29 16:07:59 -07:00
|
|
|
extern DECLSPEC SDL_RWops *SDLCALL SDL_CreateRW(void);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to free an SDL_RWops structure allocated by
|
2022-12-29 16:07:59 -07:00
|
|
|
* SDL_CreateRW().
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
|
|
|
* Applications do not need to use this function unless they are providing
|
|
|
|
* their own SDL_RWops implementation. If you just need a SDL_RWops to
|
|
|
|
* read/write a common data source, you should use the built-in
|
|
|
|
* implementations in SDL, like SDL_RWFromFile() or SDL_RWFromMem(), etc, and
|
|
|
|
* call the **close** method on those SDL_RWops pointers when you are done
|
|
|
|
* with them.
|
|
|
|
*
|
2023-01-25 10:58:29 -07:00
|
|
|
* Only use SDL_DestroyRW() on pointers returned by SDL_CreateRW(). The
|
|
|
|
* pointer is invalid as soon as this function returns. Any extra memory
|
|
|
|
* allocated during creation of the SDL_RWops is not freed by SDL_DestroyRW();
|
|
|
|
* the programmer must be responsible for managing that memory in their
|
|
|
|
* **close** method.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
|
|
|
* \param area the SDL_RWops structure to be freed
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2022-12-29 16:07:59 -07:00
|
|
|
* \sa SDL_CreateRW
|
2021-10-08 18:22:48 -06:00
|
|
|
*/
|
2022-12-29 16:07:59 -07:00
|
|
|
extern DECLSPEC void SDLCALL SDL_DestroyRW(SDL_RWops * area);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-12-23 02:16:11 -07:00
|
|
|
#define SDL_RW_SEEK_SET 0 /**< Seek from the beginning of data */
|
|
|
|
#define SDL_RW_SEEK_CUR 1 /**< Seek relative to current read point */
|
|
|
|
#define SDL_RW_SEEK_END 2 /**< Seek relative to the end of data */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/**
|
2021-11-18 15:24:40 -07:00
|
|
|
* Use this function to get the size of the data stream in an SDL_RWops.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2021-11-18 13:30:36 -07:00
|
|
|
* Prior to SDL 2.0.10, this function was a macro.
|
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param context the SDL_RWops to get the size of the data stream from
|
|
|
|
* \returns the size of the data stream in the SDL_RWops on success, -1 if
|
|
|
|
* unknown or a negative error code on failure; call SDL_GetError()
|
|
|
|
* for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*/
|
|
|
|
extern DECLSPEC Sint64 SDLCALL SDL_RWsize(SDL_RWops *context);
|
|
|
|
|
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Seek within an SDL_RWops data stream.
|
|
|
|
*
|
|
|
|
* This function seeks to byte `offset`, relative to `whence`.
|
|
|
|
*
|
|
|
|
* `whence` may be any of the following values:
|
|
|
|
*
|
2022-12-23 02:16:11 -07:00
|
|
|
* - `SDL_RW_SEEK_SET`: seek from the beginning of data
|
|
|
|
* - `SDL_RW_SEEK_CUR`: seek relative to current read point
|
|
|
|
* - `SDL_RW_SEEK_END`: seek relative to the end of data
|
2015-06-21 09:33:46 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* If this stream can not seek, it will return -1.
|
|
|
|
*
|
|
|
|
* SDL_RWseek() is actually a wrapper function that calls the SDL_RWops's
|
|
|
|
* `seek` method appropriately, to simplify application development.
|
|
|
|
*
|
2021-11-18 13:30:36 -07:00
|
|
|
* Prior to SDL 2.0.10, this function was a macro.
|
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param context a pointer to an SDL_RWops structure
|
|
|
|
* \param offset an offset in bytes, relative to **whence** location; can be
|
|
|
|
* negative
|
2023-01-25 10:58:29 -07:00
|
|
|
* \param whence any of `SDL_RW_SEEK_SET`, `SDL_RW_SEEK_CUR`,
|
|
|
|
* `SDL_RW_SEEK_END`
|
2021-03-21 12:18:39 -06:00
|
|
|
* \returns the final offset in the data stream after the seek or -1 on error.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \sa SDL_RWclose
|
|
|
|
* \sa SDL_RWFromConstMem
|
|
|
|
* \sa SDL_RWFromFile
|
|
|
|
* \sa SDL_RWFromMem
|
|
|
|
* \sa SDL_RWread
|
|
|
|
* \sa SDL_RWtell
|
|
|
|
* \sa SDL_RWwrite
|
2015-06-21 09:33:46 -06:00
|
|
|
*/
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
extern DECLSPEC Sint64 SDLCALL SDL_RWseek(SDL_RWops *context,
|
|
|
|
Sint64 offset, int whence);
|
|
|
|
|
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Determine the current read/write offset in an SDL_RWops data stream.
|
|
|
|
*
|
2021-07-14 15:07:04 -06:00
|
|
|
* SDL_RWtell is actually a wrapper function that calls the SDL_RWops's `seek`
|
2022-12-23 02:16:11 -07:00
|
|
|
* method, with an offset of 0 bytes from `SDL_RW_SEEK_CUR`, to simplify
|
2021-03-21 12:18:39 -06:00
|
|
|
* application development.
|
|
|
|
*
|
2021-11-18 13:30:36 -07:00
|
|
|
* Prior to SDL 2.0.10, this function was a macro.
|
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param context a SDL_RWops data stream object from which to get the current
|
|
|
|
* offset
|
|
|
|
* \returns the current offset in the stream, or -1 if the information can not
|
|
|
|
* be determined.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \sa SDL_RWclose
|
|
|
|
* \sa SDL_RWFromConstMem
|
|
|
|
* \sa SDL_RWFromFile
|
|
|
|
* \sa SDL_RWFromMem
|
|
|
|
* \sa SDL_RWread
|
|
|
|
* \sa SDL_RWseek
|
|
|
|
* \sa SDL_RWwrite
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*/
|
|
|
|
extern DECLSPEC Sint64 SDLCALL SDL_RWtell(SDL_RWops *context);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Read from a data source.
|
|
|
|
*
|
2022-12-14 13:42:54 -07:00
|
|
|
* This function reads up `size` bytes from the data source to the area
|
2023-01-25 10:58:29 -07:00
|
|
|
* pointed at by `ptr`. This function may read less bytes than requested. It
|
|
|
|
* will return zero when the data stream is completely read, or -1 on error.
|
|
|
|
* For streams that support non-blocking operation, if nothing was read
|
|
|
|
* because it would require blocking, this function returns -2 to distinguish
|
|
|
|
* that this is not an error or end-of-file, and the caller can try again
|
|
|
|
* later.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* SDL_RWread() is actually a function wrapper that calls the SDL_RWops's
|
|
|
|
* `read` method appropriately, to simplify application development.
|
|
|
|
*
|
2023-01-25 10:58:29 -07:00
|
|
|
* It is an error to specify a negative `size`, but this parameter is signed
|
|
|
|
* so you definitely cannot overflow the return value on a successful run with
|
|
|
|
* enormous amounts of data.
|
2021-11-18 13:30:36 -07:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param context a pointer to an SDL_RWops structure
|
|
|
|
* \param ptr a pointer to a buffer to read data into
|
2022-12-14 13:42:54 -07:00
|
|
|
* \param size the number of bytes to read from the data source.
|
2023-01-25 10:58:29 -07:00
|
|
|
* \returns the number of bytes read, 0 at end of file, -1 on error, and -2
|
|
|
|
* for data not ready with a non-blocking context.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \sa SDL_RWclose
|
|
|
|
* \sa SDL_RWFromConstMem
|
|
|
|
* \sa SDL_RWFromFile
|
|
|
|
* \sa SDL_RWFromMem
|
|
|
|
* \sa SDL_RWseek
|
|
|
|
* \sa SDL_RWwrite
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*/
|
2023-01-04 23:29:16 -07:00
|
|
|
extern DECLSPEC Sint64 SDLCALL SDL_RWread(SDL_RWops *context, void *ptr, Sint64 size);
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
|
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Write to an SDL_RWops data stream.
|
|
|
|
*
|
2023-01-25 10:58:29 -07:00
|
|
|
* This function writes exactly `size` bytes from the area pointed at by `ptr`
|
|
|
|
* to the stream. If this fails for any reason, it'll return less than `size`
|
|
|
|
* to demonstrate how far the write progressed. On success, it returns `num`.
|
2022-12-14 13:42:54 -07:00
|
|
|
*
|
2023-01-25 10:58:29 -07:00
|
|
|
* On error, this function still attempts to write as much as possible, so it
|
|
|
|
* might return a positive value less than the requested write size. If the
|
|
|
|
* function failed to write anything and there was an actual error, it will
|
|
|
|
* return -1. For streams that support non-blocking operation, if nothing was
|
|
|
|
* written because it would require blocking, this function returns -2 to
|
|
|
|
* distinguish that this is not an error and the caller can try again later.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
|
|
|
* SDL_RWwrite is actually a function wrapper that calls the SDL_RWops's
|
|
|
|
* `write` method appropriately, to simplify application development.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2023-01-25 10:58:29 -07:00
|
|
|
* It is an error to specify a negative `size`, but this parameter is signed
|
|
|
|
* so you definitely cannot overflow the return value on a successful run with
|
|
|
|
* enormous amounts of data.
|
2021-11-18 13:30:36 -07:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param context a pointer to an SDL_RWops structure
|
|
|
|
* \param ptr a pointer to a buffer containing data to write
|
2022-12-14 13:42:54 -07:00
|
|
|
* \param size the number of bytes to write
|
|
|
|
* \returns the number of bytes written, which will be less than `num` on
|
2021-03-21 12:18:39 -06:00
|
|
|
* error; call SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \sa SDL_RWclose
|
|
|
|
* \sa SDL_RWFromConstMem
|
|
|
|
* \sa SDL_RWFromFile
|
|
|
|
* \sa SDL_RWFromMem
|
|
|
|
* \sa SDL_RWread
|
|
|
|
* \sa SDL_RWseek
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*/
|
2022-12-14 13:42:54 -07:00
|
|
|
extern DECLSPEC Sint64 SDLCALL SDL_RWwrite(SDL_RWops *context,
|
|
|
|
const void *ptr, Sint64 size);
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
|
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Close and free an allocated SDL_RWops structure.
|
|
|
|
*
|
|
|
|
* SDL_RWclose() closes and cleans up the SDL_RWops stream. It releases any
|
|
|
|
* resources used by the stream and frees the SDL_RWops itself with
|
2022-12-29 16:07:59 -07:00
|
|
|
* SDL_DestroyRW(). This returns 0 on success, or -1 if the stream failed to
|
2021-03-21 12:18:39 -06:00
|
|
|
* flush to its output (e.g. to disk).
|
|
|
|
*
|
|
|
|
* Note that if this fails to flush the stream to disk, this function reports
|
|
|
|
* an error, but the SDL_RWops is still invalid once this function returns.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2021-11-18 13:30:36 -07:00
|
|
|
* Prior to SDL 2.0.10, this function was a macro.
|
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param context SDL_RWops structure to close
|
|
|
|
* \returns 0 on success or a negative error code on failure; call
|
|
|
|
* SDL_GetError() for more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \sa SDL_RWFromConstMem
|
|
|
|
* \sa SDL_RWFromFile
|
|
|
|
* \sa SDL_RWFromMem
|
|
|
|
* \sa SDL_RWread
|
|
|
|
* \sa SDL_RWseek
|
|
|
|
* \sa SDL_RWwrite
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*/
|
|
|
|
extern DECLSPEC int SDLCALL SDL_RWclose(SDL_RWops *context);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2017-08-09 12:58:38 -06:00
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Load all the data from an SDL data stream.
|
2017-08-09 12:58:38 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* The data is allocated with a zero byte at the end (null terminated) for
|
|
|
|
* convenience. This extra byte is not included in the value reported via
|
|
|
|
* `datasize`.
|
2017-08-09 12:58:38 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* The data should be freed with SDL_free().
|
2017-08-09 12:58:38 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param src the SDL_RWops to read all available data from
|
|
|
|
* \param datasize if not NULL, will store the number of bytes read
|
2023-07-09 14:49:04 -06:00
|
|
|
* \param freesrc if SDL_TRUE, calls SDL_RWclose() on `src` before returning, even in the case of an error
|
2021-03-21 12:18:39 -06:00
|
|
|
* \returns the data, or NULL if there was an error.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2017-08-09 12:58:38 -06:00
|
|
|
*/
|
2021-03-21 12:18:39 -06:00
|
|
|
extern DECLSPEC void *SDLCALL SDL_LoadFile_RW(SDL_RWops *src,
|
|
|
|
size_t *datasize,
|
2023-07-09 14:49:04 -06:00
|
|
|
SDL_bool freesrc);
|
2017-08-09 12:58:38 -06:00
|
|
|
|
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Load all the data from a file path.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* The data is allocated with a zero byte at the end (null terminated) for
|
|
|
|
* convenience. This extra byte is not included in the value reported via
|
|
|
|
* `datasize`.
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* The data should be freed with SDL_free().
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
*
|
2021-11-18 13:30:36 -07:00
|
|
|
* Prior to SDL 2.0.10, this function was a macro wrapping around
|
|
|
|
* SDL_LoadFile_RW.
|
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \param file the path to read all available data from
|
|
|
|
* \param datasize if not NULL, will store the number of bytes read
|
|
|
|
* \returns the data, or NULL if there was an error.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2017-08-09 12:58:38 -06:00
|
|
|
*/
|
Fixed bug 4526 - replace SDL_RW* macros with functions for using in bindings
ace
I got this bug in SDL_ttf:
https://bugzilla.libsdl.org/show_bug.cgi?id=4524
Sylvain proposed solution:
SDL_RWseek(RWops, 0, RW_SEEK_SET);
And it works, but i can use it my project, because it written in C# with SDL2-CS wrapper and there not export for macroses:
#define SDL_RWsize(ctx) (ctx)->size(ctx)
#define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
#define SDL_RWtell(ctx) (ctx)->seek(ctx, 0, RW_SEEK_CUR)
#define SDL_RWread(ctx, ptr, size, n) (ctx)->read(ctx, ptr, size, n)
#define SDL_RWwrite(ctx, ptr, size, n) (ctx)->write(ctx, ptr, size, n)
#define SDL_RWclose(ctx) (ctx)->close(ctx)
Therefore, I suggest replacing this macros with functions so that they can be exported and used in bindings
2019-06-08 18:43:23 -06:00
|
|
|
extern DECLSPEC void *SDLCALL SDL_LoadFile(const char *file, size_t *datasize);
|
2017-08-09 12:58:38 -06:00
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/**
|
|
|
|
* \name Read endian functions
|
|
|
|
*
|
|
|
|
* Read an item of the specified endianness and return in native format.
|
|
|
|
*/
|
|
|
|
/* @{ */
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to read a byte from an SDL_RWops.
|
|
|
|
*
|
|
|
|
* \param src the SDL_RWops to read from
|
|
|
|
* \returns the read byte on success or 0 on failure; call SDL_GetError() for
|
|
|
|
* more information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
|
|
|
* \sa SDL_WriteU8
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC Uint8 SDLCALL SDL_ReadU8(SDL_RWops * src);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to read 16 bits of little-endian data from an SDL_RWops
|
|
|
|
* and return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \returns 16 bits of data in the native byte order of the platform.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_ReadBE16
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC Uint16 SDLCALL SDL_ReadLE16(SDL_RWops * src);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to read 16 bits of big-endian data from an SDL_RWops and
|
|
|
|
* return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \returns 16 bits of data in the native byte order of the platform.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_ReadLE16
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC Uint16 SDLCALL SDL_ReadBE16(SDL_RWops * src);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to read 32 bits of little-endian data from an SDL_RWops
|
|
|
|
* and return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \returns 32 bits of data in the native byte order of the platform.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_ReadBE32
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC Uint32 SDLCALL SDL_ReadLE32(SDL_RWops * src);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to read 32 bits of big-endian data from an SDL_RWops and
|
|
|
|
* return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \returns 32 bits of data in the native byte order of the platform.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_ReadLE32
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC Uint32 SDLCALL SDL_ReadBE32(SDL_RWops * src);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to read 64 bits of little-endian data from an SDL_RWops
|
|
|
|
* and return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \returns 64 bits of data in the native byte order of the platform.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_ReadBE64
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC Uint64 SDLCALL SDL_ReadLE64(SDL_RWops * src);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to read 64 bits of big-endian data from an SDL_RWops and
|
|
|
|
* return in native format.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the data returned will be in
|
|
|
|
* the native byte order.
|
|
|
|
*
|
|
|
|
* \param src the stream from which to read data
|
|
|
|
* \returns 64 bits of data in the native byte order of the platform.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_ReadLE64
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC Uint64 SDLCALL SDL_ReadBE64(SDL_RWops * src);
|
|
|
|
/* @} *//* Read endian functions */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \name Write endian functions
|
|
|
|
*
|
|
|
|
* Write an item of native format to the specified endianness.
|
|
|
|
*/
|
|
|
|
/* @{ */
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to write a byte to an SDL_RWops.
|
|
|
|
*
|
|
|
|
* \param dst the SDL_RWops to write to
|
|
|
|
* \param value the byte value to write
|
|
|
|
* \returns 1 on success or 0 on failure; call SDL_GetError() for more
|
|
|
|
* information.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-08 18:22:48 -06:00
|
|
|
*
|
|
|
|
* \sa SDL_ReadU8
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_WriteU8(SDL_RWops * dst, Uint8 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to write 16 bits in native format to a SDL_RWops as
|
|
|
|
* little-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in little-endian
|
|
|
|
* format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
|
|
|
* \returns 1 on successful write, 0 on error.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_WriteBE16
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_WriteLE16(SDL_RWops * dst, Uint16 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to write 16 bits in native format to a SDL_RWops as
|
|
|
|
* big-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in big-endian format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
|
|
|
* \returns 1 on successful write, 0 on error.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_WriteLE16
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_WriteBE16(SDL_RWops * dst, Uint16 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to write 32 bits in native format to a SDL_RWops as
|
|
|
|
* little-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in little-endian
|
|
|
|
* format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
|
|
|
* \returns 1 on successful write, 0 on error.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_WriteBE32
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_WriteLE32(SDL_RWops * dst, Uint32 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to write 32 bits in native format to a SDL_RWops as
|
|
|
|
* big-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in big-endian format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
|
|
|
* \returns 1 on successful write, 0 on error.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_WriteLE32
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_WriteBE32(SDL_RWops * dst, Uint32 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to write 64 bits in native format to a SDL_RWops as
|
|
|
|
* little-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in little-endian
|
|
|
|
* format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
|
|
|
* \returns 1 on successful write, 0 on error.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_WriteBE64
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_WriteLE64(SDL_RWops * dst, Uint64 value);
|
2021-10-08 18:22:48 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this function to write 64 bits in native format to a SDL_RWops as
|
|
|
|
* big-endian data.
|
|
|
|
*
|
|
|
|
* SDL byteswaps the data only if necessary, so the application always
|
|
|
|
* specifies native format, and the data written will be in big-endian format.
|
|
|
|
*
|
|
|
|
* \param dst the stream to which data will be written
|
|
|
|
* \param value the data to be written, in native format
|
|
|
|
* \returns 1 on successful write, 0 on error.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-10-08 18:22:48 -06:00
|
|
|
* \sa SDL_WriteLE64
|
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC size_t SDLCALL SDL_WriteBE64(SDL_RWops * dst, Uint64 value);
|
|
|
|
/* @} *//* Write endian functions */
|
|
|
|
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2022-12-22 09:38:59 -07:00
|
|
|
#include <SDL3/SDL_close_code.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2016-11-20 22:34:54 -07:00
|
|
|
#endif /* SDL_rwops_h_ */
|