mirror of
https://github.com/nunuhara/xsystem4.git
synced 2026-09-27 09:28:10 +03:00
* Can now extract files from .afa version 3 archives
* Can now extract files from .flat files
* Includes recursively extracting .flat files contained in other
archive formats
* Added option to extract images only
* Now converts images to PNG format by default
* WebP format also supported
Because the table of contents is encrypted in .afa version 3 archives,
the support is a bit limited. Only known file types can be extracted and
they do not retain their original filenames (they are given numbered
filenames instead).
58 lines
1.9 KiB
C
58 lines
1.9 KiB
C
/* Copyright (C) 2019 Nunuhara Cabbage <nunuhara@haniwa.technology>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef SYSTEM4_BUFFER_H
|
|
#define SYSTEM4_BUFFER_H
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
struct buffer {
|
|
uint8_t *buf;
|
|
size_t size;
|
|
size_t index;
|
|
};
|
|
|
|
void buffer_init(struct buffer *r, uint8_t *buf, size_t size);
|
|
int32_t buffer_read_int32(struct buffer *r);
|
|
uint8_t buffer_read_u8(struct buffer *r);
|
|
uint16_t buffer_read_u16(struct buffer *r);
|
|
float buffer_read_float(struct buffer *r);
|
|
struct string *buffer_read_pascal_string(struct buffer *r);
|
|
void buffer_skip(struct buffer *r, size_t off);
|
|
size_t buffer_remaining(struct buffer *r);
|
|
char *buffer_strdata(struct buffer *r);
|
|
|
|
void buffer_write_int32(struct buffer *b, uint32_t v);
|
|
void buffer_write_int32_at(struct buffer *buf, size_t index, uint32_t v);
|
|
void buffer_write_float(struct buffer *b, float f);
|
|
void buffer_write_bytes(struct buffer *b, const uint8_t *bytes, size_t len);
|
|
void buffer_write_string(struct buffer *b, struct string *s);
|
|
void buffer_write_cstring(struct buffer *b, const char *s);
|
|
void buffer_write_pascal_string(struct buffer *b, struct string *s);
|
|
|
|
static inline void buffer_seek(struct buffer *r, size_t off)
|
|
{
|
|
r->index = off;
|
|
}
|
|
|
|
static inline void buffer_align(struct buffer *r, int p)
|
|
{
|
|
r->index = (r->index + (p-1)) & ~(p-1);
|
|
}
|
|
|
|
#endif /* SYSTEM4_BUFFER_H */
|