You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Make all file access 64-bit (uint64_t)
This changes the types of a big number of variables. General rules: - Using `uint64_t` in general. We also considered `int64_t` but eventually settled on keeping it unsigned, which is also closer to what one would expect with `size_t`/`off_t`. - We only keep `int64_t` for `seek_end` (takes a negative offset from the end) and for the `Variant` bindings, since `Variant::INT` is `int64_t`. This means we only need to guard against passing negative values in `core_bind.cpp`. - Using `uint32_t` integers for concepts not needing such a huge range, like pages, blocks, etc. In addition: - Improve usage of integer types in some related places; namely, `DirAccess`, core binds. Note: - On Windows, `_ftelli64` reports invalid values when using 32-bit MinGW with version < 8.0. This was an upstream bug fixed in 8.0. It breaks support for big files on 32-bit Windows builds made with that toolchain. We might add a workaround. Fixes #44363. Fixes godotengine/godot-proposals#400. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
This commit is contained in:
committed by
Rémi Verschelde
parent
74174676b8
commit
817ffc01e1
@@ -32,7 +32,7 @@
|
||||
|
||||
#include "core/print_string.h"
|
||||
|
||||
void FileAccessCompressed::configure(const String &p_magic, Compression::Mode p_mode, int p_block_size) {
|
||||
void FileAccessCompressed::configure(const String &p_magic, Compression::Mode p_mode, uint32_t p_block_size) {
|
||||
magic = p_magic.ascii().get_data();
|
||||
if (magic.length() > 4) {
|
||||
magic = magic.substr(0, 4);
|
||||
@@ -67,10 +67,10 @@ Error FileAccessCompressed::open_after_magic(FileAccess *p_base) {
|
||||
ERR_FAIL_V_MSG(ERR_FILE_CORRUPT, "Can't open compressed file '" + p_base->get_path() + "' with block size 0, it is corrupted.");
|
||||
}
|
||||
read_total = f->get_32();
|
||||
int bc = (read_total / block_size) + 1;
|
||||
int acc_ofs = f->get_position() + bc * 4;
|
||||
int max_bs = 0;
|
||||
for (int i = 0; i < bc; i++) {
|
||||
uint32_t bc = (read_total / block_size) + 1;
|
||||
uint64_t acc_ofs = f->get_position() + bc * 4;
|
||||
uint32_t max_bs = 0;
|
||||
for (uint32_t i = 0; i < bc; i++) {
|
||||
ReadBlock rb;
|
||||
rb.offset = acc_ofs;
|
||||
rb.csize = f->get_32();
|
||||
@@ -147,15 +147,15 @@ void FileAccessCompressed::close() {
|
||||
f->store_32(cmode); //write compression mode 4
|
||||
f->store_32(block_size); //write block size 4
|
||||
f->store_32(write_max); //max amount of data written 4
|
||||
int bc = (write_max / block_size) + 1;
|
||||
uint32_t bc = (write_max / block_size) + 1;
|
||||
|
||||
for (int i = 0; i < bc; i++) {
|
||||
for (uint32_t i = 0; i < bc; i++) {
|
||||
f->store_32(0); //compressed sizes, will update later
|
||||
}
|
||||
|
||||
Vector<int> block_sizes;
|
||||
for (int i = 0; i < bc; i++) {
|
||||
int bl = i == (bc - 1) ? write_max % block_size : block_size;
|
||||
for (uint32_t i = 0; i < bc; i++) {
|
||||
uint32_t bl = i == (bc - 1) ? write_max % block_size : block_size;
|
||||
uint8_t *bp = &write_ptr[i * block_size];
|
||||
|
||||
Vector<uint8_t> cblock;
|
||||
@@ -167,7 +167,7 @@ void FileAccessCompressed::close() {
|
||||
}
|
||||
|
||||
f->seek(16); //ok write block sizes
|
||||
for (int i = 0; i < bc; i++) {
|
||||
for (uint32_t i = 0; i < bc; i++) {
|
||||
f->store_32(block_sizes[i]);
|
||||
}
|
||||
f->seek_end();
|
||||
@@ -189,8 +189,9 @@ bool FileAccessCompressed::is_open() const {
|
||||
return f != nullptr;
|
||||
}
|
||||
|
||||
void FileAccessCompressed::seek(size_t p_position) {
|
||||
void FileAccessCompressed::seek(uint64_t p_position) {
|
||||
ERR_FAIL_COND_MSG(!f, "File must be opened before use.");
|
||||
|
||||
if (writing) {
|
||||
ERR_FAIL_COND(p_position > write_max);
|
||||
|
||||
@@ -203,7 +204,7 @@ void FileAccessCompressed::seek(size_t p_position) {
|
||||
} else {
|
||||
at_end = false;
|
||||
read_eof = false;
|
||||
int block_idx = p_position / block_size;
|
||||
uint32_t block_idx = p_position / block_size;
|
||||
if (block_idx != read_block) {
|
||||
read_block = block_idx;
|
||||
f->seek(read_blocks[read_block].offset);
|
||||
@@ -225,7 +226,8 @@ void FileAccessCompressed::seek_end(int64_t p_position) {
|
||||
seek(read_total + p_position);
|
||||
}
|
||||
}
|
||||
size_t FileAccessCompressed::get_position() const {
|
||||
|
||||
uint64_t FileAccessCompressed::get_position() const {
|
||||
ERR_FAIL_COND_V_MSG(!f, 0, "File must be opened before use.");
|
||||
if (writing) {
|
||||
return write_pos;
|
||||
@@ -233,7 +235,8 @@ size_t FileAccessCompressed::get_position() const {
|
||||
return read_block * block_size + read_pos;
|
||||
}
|
||||
}
|
||||
size_t FileAccessCompressed::get_len() const {
|
||||
|
||||
uint64_t FileAccessCompressed::get_len() const {
|
||||
ERR_FAIL_COND_V_MSG(!f, 0, "File must be opened before use.");
|
||||
if (writing) {
|
||||
return write_max;
|
||||
@@ -281,9 +284,9 @@ uint8_t FileAccessCompressed::get_8() const {
|
||||
|
||||
return ret;
|
||||
}
|
||||
int FileAccessCompressed::get_buffer(uint8_t *p_dst, int p_length) const {
|
||||
|
||||
uint64_t FileAccessCompressed::get_buffer(uint8_t *p_dst, uint64_t p_length) const {
|
||||
ERR_FAIL_COND_V(!p_dst && p_length > 0, -1);
|
||||
ERR_FAIL_COND_V(p_length < 0, -1);
|
||||
ERR_FAIL_COND_V_MSG(!f, -1, "File must be opened before use.");
|
||||
ERR_FAIL_COND_V_MSG(writing, -1, "File has not been opened in read mode.");
|
||||
|
||||
@@ -292,7 +295,7 @@ int FileAccessCompressed::get_buffer(uint8_t *p_dst, int p_length) const {
|
||||
return 0;
|
||||
}
|
||||
|
||||
for (int i = 0; i < p_length; i++) {
|
||||
for (uint64_t i = 0; i < p_length; i++) {
|
||||
p_dst[i] = read_ptr[read_pos];
|
||||
read_pos++;
|
||||
if (read_pos >= read_block_size) {
|
||||
|
||||
Reference in New Issue
Block a user