godot/scene
Pedro J. Estébanez 469fa47e06
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>
2021-05-17 15:06:19 +02:00
..
2d Merge pull request #39976 from aaronfranke/tilemap-vec2i 2021-05-13 14:48:16 +02:00
3d Fix accessing scene tree without checking: MeshInstance3D::create_debug_tangents, GIProbe::bake 2021-05-16 14:01:01 +02:00
animation Merge pull request #41416 from TokageItLab/fix_animation_tree_cache 2021-05-09 13:57:18 +02:00
audio Fixes small typos and grammar correction 2021-03-12 19:05:16 +05:30
debugger Fixes small typos and grammar correction 2021-03-12 19:05:16 +05:30
gui Merge pull request #48690 from KoBeWi/static_shader_picker 2021-05-17 14:51:12 +02:00
main Tweak CanvasItem/material sampling property hints for readability 2021-05-06 03:05:37 +02:00
resources Make all file access 64-bit (uint64_t) 2021-05-17 15:06:19 +02:00
register_scene_types.cpp Create ColorPicker shaders statically 2021-05-17 11:39:20 +02:00
register_scene_types.h Update copyright statements to 2021 2021-01-01 20:19:21 +01:00
scene_string_names.cpp Scene: Remove unused mesh_materials StringNames 2021-04-15 13:02:10 +02:00
scene_string_names.h Scene: Remove unused mesh_materials StringNames 2021-04-15 13:02:10 +02:00
SCsub SCons: Add explicit dependencies on thirdparty code in cloned env 2020-12-18 10:29:34 +01:00