diff options
author | Spartan322 <Megacake1234@gmail.com> | 2024-10-27 03:11:53 -0400 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-10-31 06:59:43 -0400 |
commit | 35f01391e0dd380c58f085badbf7be22a627c9f9 (patch) | |
tree | e555c129eb829a05ff2ee435b36e7d50950836d1 | |
parent | 259c757ccea4c8e223713019ca5ab95788fcf92e (diff) | |
download | redot-cpp-35f01391e0dd380c58f085badbf7be22a627c9f9.tar.gz |
Rebrand godot-cpp to redot-cpp
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 12 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 16 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 92 | ||||
-rw-r--r-- | LICENSE.md | 1 | ||||
-rw-r--r-- | README.md | 60 | ||||
-rw-r--r-- | binding_generator.py | 3 | ||||
-rw-r--r-- | doc/cmake.md | 2 | ||||
-rw-r--r-- | gdextension/README.md | 10 | ||||
-rwxr-xr-x | misc/scripts/check_ci_log.py | 8 | ||||
-rwxr-xr-x | misc/scripts/copyright_headers.py | 10 | ||||
-rw-r--r-- | misc/scripts/header_guards.py | 4 | ||||
-rwxr-xr-x | misc/scripts/make_tarball.sh | 12 | ||||
-rw-r--r-- | test/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/README.md | 4 | ||||
-rwxr-xr-x | test/generate_xcframework.sh | 2 | ||||
-rw-r--r-- | test/project/example.gdextension | 4 | ||||
-rwxr-xr-x | test/run-tests.sh | 4 | ||||
-rw-r--r-- | tools/godotcpp.py | 4 |
18 files changed, 128 insertions, 122 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index b52ad6f..c4f51ad 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,5 +1,5 @@ name: Bug report -description: Report a bug in the godot-cpp GDExtension/GDNative integration +description: Report a bug in the redot-cpp GDExtension/GDNative integration body: - type: markdown @@ -8,12 +8,12 @@ body: - When reporting bugs, you'll make our life simpler (and the fix will come sooner) if you follow the guidelines in this template. - Write a descriptive issue title above. - The golden rule is to **always open *one* issue for *one* bug**. If you notice several bugs and want to report them, make sure to create one new issue for each of them. - - Search [open](https://github.com/godotengine/godot-cpp/issues) and [closed](https://github.com/godotengine/godot-cpp/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported. If you don't find a relevant match or if you're unsure, don't hesitate to **open a new issue**. The bugsquad will handle it from there if it's a duplicate. - - Verify that you are using a [supported Godot version](https://docs.godotengine.org/en/latest/about/release_policy.html). + - Search [open](https://github.com/Redot-Engine/redot-cpp/issues) and [closed](https://github.com/Redot-Engine/redot-cpp/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported. If you don't find a relevant match or if you're unsure, don't hesitate to **open a new issue**. The bugsquad will handle it from there if it's a duplicate. + - Verify that you are using a [supported Redot version](https://docs.Redot-Engine.org/en/latest/about/release_policy.html). - type: input attributes: - label: Godot version + label: Redot version description: > Specify the Git commit hash if using a development or non-official build. If you use a custom build, please test if your issue is reproducible in official builds too. @@ -23,7 +23,7 @@ body: - type: input attributes: - label: godot-cpp version + label: redot-cpp version description: > Specify the Git commit hash if using a development build. placeholder: 3.3.stable, 4.0.dev (3041becc6) @@ -63,7 +63,7 @@ body: attributes: label: Minimal reproduction project description: | - - A small Godot project which reproduces the issue, with no unnecessary files included. Be sure to not include the `.godot` folder in the archive (but keep `project.godot`). + - A small Redot project which reproduces the issue, with no unnecessary files included. Be sure to not include the `.godot` folder in the archive (but keep `project.godot`). - Required, unless the reproduction steps are trivial and don't require any project files to be followed. In this case, write "N/A" in the field. - Drag and drop a ZIP archive to upload it. **Do not select another field until the project is done uploading.** - **If you've been asked by a maintainer to upload a minimal reproduction project, you *must* do so within 7 days.** Otherwise, your bug report will be closed as it'll be considered too difficult to diagnose. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index f787bec..84c9190 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,14 +1,14 @@ blank_issues_enabled: false contact_links: - - name: Godot proposals - url: https://github.com/godotengine/godot-proposals - about: Please submit feature proposals on the Godot proposals repository, not here. + - name: Redot proposals + url: https://github.com/Redot-Engine/redot-proposals + about: Please submit feature proposals on the Redot proposals repository, not here. - - name: Godot documentation repository - url: https://github.com/godotengine/godot-docs - about: Please report issues with documentation on the Godot documentation repository, not here. + - name: Redot documentation repository + url: https://github.com/Redot-Engine/redot-docs + about: Please report issues with documentation on the Redot documentation repository, not here. - - name: Godot community channels - url: https://godotengine.org/community + - name: Redot community channels + url: https://Redot-Engine.org/community about: Please ask for technical support on one of the other community channels, not here. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9f5db7..7204d3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,8 +5,8 @@ on: env: # Only used for the cache key. Increment version to force clean build. GODOT_BASE_BRANCH: master - # Used to select the version of Godot to run the tests with. - GODOT_TEST_VERSION: master + # Used to select the version of Redot to run the tests with. + REDOT_TEST_VERSION: master # Use UTF-8 on Linux. LANG: en_US.UTF-8 LC_ALL: en_US.UTF-8 @@ -26,16 +26,16 @@ jobs: - name: 🐧 Linux (GCC) os: ubuntu-22.04 platform: linux - artifact-name: godot-cpp-linux-glibc2.27-x86_64-release - artifact-path: bin/libgodot-cpp.linux.template_release.x86_64.a + artifact-name: redot-cpp-linux-glibc2.27-x86_64-release + artifact-path: bin/libredot-cpp.linux.template_release.x86_64.a run-tests: true cache-name: linux-x86_64 - name: 🐧 Linux (GCC, Double Precision) os: ubuntu-22.04 platform: linux - artifact-name: godot-cpp-linux-glibc2.27-x86_64-double-release - artifact-path: bin/libgodot-cpp.linux.template_release.double.x86_64.a + artifact-name: redot-cpp-linux-glibc2.27-x86_64-double-release + artifact-path: bin/libredot-cpp.linux.template_release.double.x86_64.a flags: precision=double run-tests: false cache-name: linux-x86_64-f64 @@ -43,16 +43,16 @@ jobs: - name: 🏁 Windows (x86_64, MSVC) os: windows-2019 platform: windows - artifact-name: godot-cpp-windows-msvc2019-x86_64-release - artifact-path: bin/libgodot-cpp.windows.template_release.x86_64.lib + artifact-name: redot-cpp-windows-msvc2019-x86_64-release + artifact-path: bin/libredot-cpp.windows.template_release.x86_64.lib run-tests: false cache-name: windows-x86_64-msvc - name: 🏁 Windows (x86_64, MinGW) os: windows-2019 platform: windows - artifact-name: godot-cpp-linux-mingw-x86_64-release - artifact-path: bin/libgodot-cpp.windows.template_release.x86_64.a + artifact-name: redot-cpp-linux-mingw-x86_64-release + artifact-path: bin/libredot-cpp.windows.template_release.x86_64.a flags: use_mingw=yes run-tests: false cache-name: windows-x86_64-mingw @@ -60,8 +60,8 @@ jobs: - name: 🍎 macOS (universal) os: macos-latest platform: macos - artifact-name: godot-cpp-macos-universal-release - artifact-path: bin/libgodot-cpp.macos.template_release.universal.a + artifact-name: redot-cpp-macos-universal-release + artifact-path: bin/libredot-cpp.macos.template_release.universal.a flags: arch=universal run-tests: false cache-name: macos-universal @@ -69,8 +69,8 @@ jobs: - name: 🤖 Android (arm64) os: ubuntu-22.04 platform: android - artifact-name: godot-cpp-android-arm64-release - artifact-path: bin/libgodot-cpp.android.template_release.arm64.a + artifact-name: redot-cpp-android-arm64-release + artifact-path: bin/libredot-cpp.android.template_release.arm64.a flags: arch=arm64 run-tests: false cache-name: android-arm64 @@ -78,8 +78,8 @@ jobs: - name: 🍏 iOS (arm64) os: macos-latest platform: ios - artifact-name: godot-cpp-ios-arm64-release - artifact-path: bin/libgodot-cpp.ios.template_release.arm64.a + artifact-name: redot-cpp-ios-arm64-release + artifact-path: bin/libredot-cpp.ios.template_release.arm64.a flags: arch=arm64 run-tests: false cache-name: ios-arm64 @@ -87,8 +87,8 @@ jobs: - name: 🌐 Web (wasm32) os: ubuntu-22.04 platform: web - artifact-name: godot-cpp-web-wasm32-release - artifact-path: bin/libgodot-cpp.web.template_release.wasm32.a + artifact-name: redot-cpp-web-wasm32-release + artifact-path: bin/libredot-cpp.web.template_release.wasm32.a run-tests: false cache-name: web-wasm32 @@ -103,7 +103,7 @@ jobs: with: submodules: recursive - - name: Restore Godot build cache + - name: Restore Redot build cache uses: ./.github/actions/godot-cache-restore with: cache-name: ${{ matrix.cache-name }} @@ -138,36 +138,36 @@ jobs: run: | python -m pip install scons==4.0.0 - - name: Generate godot-cpp sources only + - name: Generate redot-cpp sources only run: | scons platform=${{ matrix.platform }} verbose=yes build_library=no ${{ matrix.flags }} scons -c - - name: Build godot-cpp (debug) + - name: Build redot-cpp (debug) run: | scons platform=${{ matrix.platform }} verbose=yes target=template_debug ${{ matrix.flags }} - - name: Build test without rebuilding godot-cpp (debug) + - name: Build test without rebuilding redot-cpp (debug) run: | cd test scons platform=${{ matrix.platform }} verbose=yes target=template_debug ${{ matrix.flags }} build_library=no - - name: Build test and godot-cpp (release) + - name: Build test and redot-cpp (release) run: | cd test scons platform=${{ matrix.platform }} verbose=yes target=template_release ${{ matrix.flags }} - - name: Save Godot build cache + - name: Save Redot build cache uses: ./.github/actions/godot-cache-save with: cache-name: ${{ matrix.cache-name }} continue-on-error: true - - name: Download latest Godot artifacts + - name: Download latest Redot artifacts uses: dsnopek/action-download-artifact@1322f74e2dac9feed2ee76a32d9ae1ca3b4cf4e9 - if: matrix.run-tests && env.GODOT_TEST_VERSION == 'master' + if: matrix.run-tests && env.REDOT_TEST_VERSION == 'master' with: - repo: godotengine/godot + repo: Redot-Engine/redot-engine branch: master event: push workflow: linux_builds.yml @@ -176,29 +176,29 @@ jobs: search_artifacts: true check_artifacts: true ensure_latest: true - path: godot-artifacts + path: redot-artifacts - - name: Prepare Godot artifacts for testing - if: matrix.run-tests && env.GODOT_TEST_VERSION == 'master' + - name: Prepare Redot artifacts for testing + if: matrix.run-tests && env.REDOT_TEST_VERSION == 'master' run: | - chmod +x ./godot-artifacts/godot.linuxbsd.editor.x86_64.mono - echo "GODOT=$(pwd)/godot-artifacts/godot.linuxbsd.editor.x86_64.mono" >> $GITHUB_ENV + chmod +x ./redot-artifacts/redot.linuxbsd.editor.x86_64.mono + echo "REDOT=$(pwd)/redot-artifacts/redot.linuxbsd.editor.x86_64.mono" >> $GITHUB_ENV - - name: Download requested Godot version for testing - if: matrix.run-tests && env.GODOT_TEST_VERSION != 'master' + - name: Download requested Redot version for testing + if: matrix.run-tests && env.REDOT_TEST_VERSION != 'master' run: | - wget "https://github.com/godotengine/godot-builds/releases/download/${GODOT_TEST_VERSION}/Godot_v${GODOT_TEST_VERSION}_linux.x86_64.zip" -O Godot.zip - unzip -a Godot.zip - chmod +x "Godot_v${GODOT_TEST_VERSION}_linux.x86_64" - echo "GODOT=$(pwd)/Godot_v${GODOT_TEST_VERSION}_linux.x86_64" >> $GITHUB_ENV + wget "https://github.com/Redot-Engine/redot-engine/releases/download/redot-${REDOT_TEST_VERSION}/Redot_v${REDOT_TEST_VERSION}_linux.x86_64.zip" -O Redot.zip + unzip -a Redot.zip + chmod +x "Redot_v${REDOT_TEST_VERSION}_linux.x86_64" + echo "REDOT=$(pwd)/Redot_v${REDOT_TEST_VERSION}_linux.x86_64" >> $GITHUB_ENV - name: Run tests if: matrix.run-tests run: | - $GODOT --headless --version + $REDOT --headless --version cd test # Need to run the editor so .godot is generated... but it crashes! Ignore that :-) - (cd project && (timeout 30 $GODOT --import --headless >/dev/null 2>&1 || true)) + (cd project && (timeout 30 $REDOT --import --headless >/dev/null 2>&1 || true)) ./run-tests.sh - name: Upload artifact @@ -222,14 +222,14 @@ jobs: sudo apt-get update -qq sudo apt-get install -qqq build-essential pkg-config cmake - - name: Build godot-cpp + - name: Build redot-cpp run: | cmake -DCMAKE_BUILD_TYPE=Release . make -j $(nproc) VERBOSE=1 - name: Build test GDExtension library run: | - cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." . + cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../redot-headers" -DCPP_BINDINGS_PATH=".." . make -j $(nproc) VERBOSE=1 linux-cmake-ninja: @@ -246,14 +246,14 @@ jobs: sudo apt-get update -qq sudo apt-get install -qqq build-essential pkg-config cmake ninja-build - - name: Build godot-cpp + - name: Build redot-cpp run: | cmake -DCMAKE_BUILD_TYPE=Release -GNinja . cmake --build . -j $(nproc) --verbose - name: Build test GDExtension library run: | - cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -GNinja . + cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../redot-headers" -DCPP_BINDINGS_PATH=".." -GNinja . cmake --build . -j $(nproc) --verbose windows-msvc-cmake: @@ -265,12 +265,12 @@ jobs: with: submodules: recursive - - name: Build godot-cpp + - name: Build redot-cpp run: | cmake -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 16 2019" . cmake --build . --verbose --config Release - name: Build test GDExtension library run: | - cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -G"Visual Studio 16 2019" . + cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../redot-headers" -DCPP_BINDINGS_PATH=".." -G"Visual Studio 16 2019" . cmake --build . --verbose --config Release @@ -1,5 +1,6 @@ # MIT License +Copyright (c) 2024-present Redot Engine contributors Copyright (c) 2017-present Godot Engine contributors. Permission is hereby granted, free of charge, to any person obtaining a copy @@ -1,22 +1,22 @@ -# godot-cpp +# redot-cpp > [!WARNING] > > This repository's `master` branch is only usable with -> [GDExtension](https://godotengine.org/article/introducing-gd-extensions) -> from Godot's `master` branch. +> [GDExtension](https://redotengine.org/article/introducing-gd-extensions) +> from Redot's `master` branch. > -> For users of stable branches, switch to the branch matching your target Godot version: -> - [`4.2`](https://github.com/godotengine/godot-cpp/tree/4.2) -> - [`4.1`](https://github.com/godotengine/godot-cpp/tree/4.1) -> - [`4.0`](https://github.com/godotengine/godot-cpp/tree/4.0) +> For users of stable branches, switch to the branch matching your target Redot version: +> - [`4.2`](https://github.com/Redot-Engine/redot-cpp/tree/4.2) +> - [`4.1`](https://github.com/Redot-Engine/redot-cpp/tree/4.1) +> - [`4.0`](https://github.com/Redot-Engine/redot-cpp/tree/4.0) > -> Or check out the Git tag matching your Godot version (e.g. `godot-4.1.1-stable`). +> Or check out the Git tag matching your Redot version (e.g. `redot-4.3-stable`). > > For GDNative users (Godot 3.x), switch to the [`3.x`](https://github.com/godotengine/godot-cpp/tree/3.x) > or the [`3.5`](https://github.com/godotengine/godot-cpp/tree/3.5) branch. -This repository contains the *C++ bindings* for the [**Godot Engine**](https://github.com/godotengine/godot)'s GDExtensions API. +This repository contains the *C++ bindings* for the [**Redot Engine**](https://github.com/Redot-Engine/godot)'s GDExtensions API. - [**Versioning**](#versioning) - [**Compatibility**](#compatibility) @@ -26,10 +26,10 @@ This repository contains the *C++ bindings* for the [**Godot Engine**](https:// ## Versioning -This repositories follows the same branch versioning as the main [Godot Engine -repository](https://github.com/godotengine/godot): +This repositories follows the same branch versioning as the main [Redot Engine +repository](https://github.com/Redot-Engine/redot-engine): -- `master` tracks the current GDExtension development branch for the next Godot +- `master` tracks the current GDExtension development branch for the next Redot 4.x minor release. - `3.x` tracks the development of the GDNative plugin for the next 3.x minor release. @@ -37,30 +37,30 @@ repository](https://github.com/godotengine/godot): in the corresponding branch. Stable releases are also tagged on this repository: -[**Tags**](https://github.com/godotengine/godot-cpp/tags). +[**Tags**](https://github.com/Redot-Engine/redot-cpp/tags). -**For any project built against a stable release of Godot, we recommend using +**For any project built against a stable release of Redot, we recommend using this repository as a Git submodule, checking out the specific tag matching your -Godot version.** +Redot version.** -> As the `master` branch of Godot is constantly getting updated, if you are -> using `godot-cpp` against a more current version of Godot, see the instructions +> As the `master` branch of Redot is constantly getting updated, if you are +> using `redot-cpp` against a more current version of Redot, see the instructions > in the `gdextension` folder to update the relevant files. ## Compatibility > [!WARNING] > -> The GDExtension API is brand new in Godot 4.0, and is still -considered in **beta** stage, despite Godot 4.0 itself being released. +> The GDExtension API is brand new in Redot 4.0, and is still +considered in **beta** stage, despite Redot 4.0 itself being released. > > This applies to both the GDExtension interface header, the API JSON, and this -first-party `godot-cpp` extension. +first-party `redot-cpp` extension. > -> Some compatibility breakage is to be expected as GDExtension and `godot-cpp` +> Some compatibility breakage is to be expected as GDExtension and `redot-cpp` > get more used, documented, and critical issues get resolved. See the -> [Godot issue tracker](https://github.com/godotengine/godot/issues?q=is%3Aissue+is%3Aopen+label%3Atopic%3Agdextension) -> and the [godot-cpp issue tracker](https://github.com/godotengine/godot-cpp/issues) +> [Redot issue tracker](https://github.com/Redot-Engine/redot-engine/issues?q=is%3Aissue+is%3Aopen+label%3Atopic%3Agdextension) +> and the [redot-cpp issue tracker](https://github.com/Redot-Engine/redot-cpp/issues) > for a list of known issues, and be sure to provide feedback on issues and PRs > which affect your use of this extension. @@ -68,7 +68,7 @@ first-party `godot-cpp` extension. We greatly appreciate help in maintaining and extending this project. If you wish to help out, ensure you have an account on GitHub and create a "fork" of -this repository. See [Pull request workflow](https://docs.godotengine.org/en/stable/community/contributing/pr_workflow.html) +this repository. See [Pull request workflow](https://docs.redotengine.org/en/stable/community/contributing/pr_workflow.html) for instructions. Please install clang-format and copy the files in `misc/hooks` into `.git/hooks` @@ -76,16 +76,16 @@ so formatting is done before your changes are submitted. ## Getting started -You need the same C++ pre-requisites installed that are required for the `godot` repository. Follow the [official build instructions for your target platform](https://docs.godotengine.org/en/latest/contributing/development/compiling/index.html#building-for-target-platforms). +You need the same C++ pre-requisites installed that are required for the `redot-engine` repository. Follow the [official build instructions for your target platform](https://docs.redotengine.org/en/latest/contributing/development/compiling/index.html#building-for-target-platforms). Getting started with GDExtensions is a bit similar to what it was for 3.x but also a bit different. -This new approach is much more akin to how core Godot modules are structured. +This new approach is much more akin to how core Redot modules are structured. Compiling this repository generates a static library to be linked with your shared lib, just like before. -To use the shared lib in your Godot project you'll need a `.gdextension` +To use the shared lib in your Redot project you'll need a `.gdextension` file, which replaces what was the `.gdnlib` before. See [example.gdextension](test/project/example.gdextension) used in the test project: @@ -126,7 +126,7 @@ GDExtensionBool GDE_EXPORT example_library_init(GDExtensionInterfaceGetProcAddre } ``` -The `initialize_example_module()` should register the classes in ClassDB, very like a Godot module would do. +The `initialize_example_module()` should register the classes in ClassDB, very like a Redot module would do. ```cpp using namespace godot; @@ -142,8 +142,8 @@ Any node and resource you register will be available in the corresponding `Creat ## Examples and templates -See the [godot-cpp-template](https://github.com/godotengine/godot-cpp-template) project for a +See the [redot-cpp-template](https://github.com/Redot-Engine/redot-cpp-template) project for a generic reusable template. Or checkout the code for the [Summator example](https://github.com/paddy-exe/GDExtensionSummator) -as shown in the [official documentation](https://docs.godotengine.org/en/latest/tutorials/scripting/gdextension/gdextension_cpp_example.html). +as shown in the [official documentation](https://docs.redotengine.org/en/latest/tutorials/scripting/gdextension/gdextension_cpp_example.html). diff --git a/binding_generator.py b/binding_generator.py index b8b76ba..bb87646 100644 --- a/binding_generator.py +++ b/binding_generator.py @@ -2197,6 +2197,7 @@ def generate_version_header(api, output_dir): header.append(f"#define GODOT_VERSION_MINOR {api['header']['version_minor']}") header.append(f"#define GODOT_VERSION_PATCH {api['header']['version_patch']}") header.append(f"#define GODOT_VERSION_STATUS \"{api['header']['version_status']}\"") + header.append(f"#define GODOT_VERSION_STATUS_VERSION \"{api['header']['version_status_version']}\"") header.append(f"#define GODOT_VERSION_BUILD \"{api['header']['version_build']}\"") header.append("") @@ -3013,6 +3014,8 @@ header = """\ /* GODOT ENGINE */ /* https://godotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/doc/cmake.md b/doc/cmake.md index 3dd77f5..68dbc0a 100644 --- a/doc/cmake.md +++ b/doc/cmake.md @@ -18,7 +18,7 @@ - `ANDROID_TOOLCHAIN_NAME`: The android toolchain (arm-linux-androideabi-4.9 or aarch64-linux-android-4.9 or x86-4.9 or x86_64-4.9) - `ANDROID_PLATFORM`: The android platform version (android-23) -- More info [here](https://godot.readthedocs.io/en/latest/development/compiling/compiling_for_android.html) +- More info [here](https://docs.redotengine.org/en/latest/contributing/development/compiling/compiling_for_android) ## Examples ```shell diff --git a/gdextension/README.md b/gdextension/README.md index 1e11f9a..f50a2e1 100644 --- a/gdextension/README.md +++ b/gdextension/README.md @@ -1,20 +1,20 @@ # GDExtension header and API This repository contains the C header and API JSON for -[**Godot Engine**](https://github.com/godotengine/godot)'s *GDExtensions* API. +[**Redot Engine**](https://github.com/Redot-Engine/redot-engine)'s *GDExtensions* API. ## Updating header and API If the current branch is not up-to-date for your needs, or if you want to sync -the header and API JSON with your own modified version of Godot, here is the +the header and API JSON with your own modified version of Redot, here is the update procedure used to sync this repository with upstream releases: -- Compile [Godot Engine](https://github.com/godotengine/godot) at the specific +- Compile [Redot Engine](https://github.com/Redot-Engine/redot-engine) at the specific version/commit which you are using. - * Or if you use an official release, download that version of the Godot editor. + * Or if you use an official release, download that version of the Redot editor. - Use the compiled or downloaded executable to generate the `extension_api.json` and `gdextension_interface.h` files with: ``` -godot --dump-extension-api --dump-gdextension-interface +redot --dump-extension-api --dump-gdextension-interface ``` diff --git a/misc/scripts/check_ci_log.py b/misc/scripts/check_ci_log.py index d024a3e..7abf00e 100755 --- a/misc/scripts/check_ci_log.py +++ b/misc/scripts/check_ci_log.py @@ -28,10 +28,10 @@ if ( or file_contents.find("Aborted (core dumped)") != -1 or file_contents.find("terminate called without an active exception") != -1 ): - print("FATAL ERROR: Godot has been crashed.") + print("FATAL ERROR: Redot has been crashed.") sys.exit(52) -# Finding memory leaks in Godot is quite difficult, because we need to take into +# Finding memory leaks in Redot is quite difficult, because we need to take into # account leaks also in external libraries. They are usually provided without # debugging symbols, so the leak report from it usually has only 2/3 lines, # so searching for 5 element - "#4 0x" - should correctly detect the vast @@ -42,7 +42,7 @@ if file_contents.find("ERROR: LeakSanitizer:") != -1: print("ERROR: Memory leak was found") sys.exit(53) -# It may happen that Godot detects leaking nodes/resources and removes them, so +# It may happen that Redot detects leaking nodes/resources and removes them, so # this possibility should also be handled as a potential error, even if # LeakSanitizer doesn't report anything @@ -58,7 +58,7 @@ if file_contents.find("Assertion failed") != -1: print("ERROR: Assertion failed in project, check execution log for more info") sys.exit(55) -# For now Godot leaks a lot of rendering stuff so for now we just show info +# For now Redot leaks a lot of rendering stuff so for now we just show info # about it and this needs to be re-enabled after fixing this memory leaks. if file_contents.find("were leaked") != -1 or file_contents.find("were never freed") != -1: diff --git a/misc/scripts/copyright_headers.py b/misc/scripts/copyright_headers.py index 2b1201b..2ffa01b 100755 --- a/misc/scripts/copyright_headers.py +++ b/misc/scripts/copyright_headers.py @@ -9,9 +9,11 @@ header = """\ /* $filename */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -76,8 +78,8 @@ for f in sys.argv[1:]: while line.strip() == "" and line != "": # Skip empty lines at the top line = fileread.readline() - if line.find("/**********") == -1: # Godot header starts this way - # Maybe starting with a non-Godot comment, abort header magic + if line.find("/**********") == -1: # Redot header starts this way + # Maybe starting with a non-Redot comment, abort header magic header_done = True while not header_done: # Handle header now diff --git a/misc/scripts/header_guards.py b/misc/scripts/header_guards.py index c99c422..15672d3 100644 --- a/misc/scripts/header_guards.py +++ b/misc/scripts/header_guards.py @@ -8,8 +8,8 @@ if len(sys.argv) < 2: print("Invalid usage of header_guards.py, it should be called with a path to one or multiple files.") sys.exit(1) -HEADER_CHECK_OFFSET = 30 -HEADER_BEGIN_OFFSET = 31 +HEADER_CHECK_OFFSET = 32 +HEADER_BEGIN_OFFSET = 33 HEADER_END_OFFSET = -1 changed = [] diff --git a/misc/scripts/make_tarball.sh b/misc/scripts/make_tarball.sh index 9e02b80..e9ab183 100755 --- a/misc/scripts/make_tarball.sh +++ b/misc/scripts/make_tarball.sh @@ -1,7 +1,7 @@ #!/bin/sh if [ ! -e "version.py" ]; then - echo "This script should be ran from the root folder of the Godot repository." + echo "This script should be ran from the root folder of the Redot repository." exit 1 fi @@ -11,7 +11,7 @@ while getopts "h?sv:g:" opt; do echo "Usage: $0 [OPTIONS...]" echo echo " -s script friendly file name (godot.tar.gz)" - echo " -v godot version for file name (e.g. 4.0-stable)" + echo " -v redot version for file name (e.g. 4.0-stable)" echo " -g git treeish to archive (e.g. master)" echo exit 1 @@ -35,17 +35,17 @@ else fi if [ ! -z "$script_friendly_name" ]; then - NAME=godot + NAME=redot else if [ ! -z "$godot_version" ]; then - NAME=godot-$godot_version + NAME=redot-$godot_version else - NAME=godot-$HEAD + NAME=redot-$HEAD fi fi CURDIR=$(pwd) -TMPDIR=$(mktemp -d -t godot-XXXXXX) +TMPDIR=$(mktemp -d -t redot-XXXXXX) echo "Generating tarball for revision $HEAD with folder name '$NAME'." echo diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index f1c4c0d..7c2e984 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -133,7 +133,7 @@ if(CMAKE_VERSION VERSION_GREATER "3.13") ) else() target_link_libraries(${PROJECT_NAME} - ${CPP_BINDINGS_PATH}/bin/libgodot-cpp.${SYSTEM_NAME}.${BUILD_TYPE}$<$<NOT:$<PLATFORM_ID:Android>>:.${BITS}>.a + ${CPP_BINDINGS_PATH}/bin/libredot-cpp.${SYSTEM_NAME}.${BUILD_TYPE}$<$<NOT:$<PLATFORM_ID:Android>>:.${BITS}>.a ) endif() diff --git a/test/README.md b/test/README.md index 5313e33..6ed0a05 100644 --- a/test/README.md +++ b/test/README.md @@ -1,6 +1,6 @@ -# godot-cpp integration test +# redot-cpp integration test -This project is used to perform integration testing of the godot-cpp +This project is used to perform integration testing of the redot-cpp extension, to validate PRs and implemented APIs. ## License diff --git a/test/generate_xcframework.sh b/test/generate_xcframework.sh index 7adddff..653cb56 100755 --- a/test/generate_xcframework.sh +++ b/test/generate_xcframework.sh @@ -4,4 +4,4 @@ scons arch=universal ios_simulator=yes platform=ios target=$1 $2 scons arch=arm64 ios_simulator=no platform=ios target=$1 $2 xcodebuild -create-xcframework -library ./project/bin/libgdexample.ios.$1.a -library ./project/bin/libgdexample.ios.$1.simulator.a -output ./project/bin/libgdexample.ios.$1.xcframework -xcodebuild -create-xcframework -library ../bin/libgodot-cpp.ios.$1.arm64.a -library ../bin/libgodot-cpp.ios.$1.universal.simulator.a -output ./project/bin/libgodot-cpp.ios.$1.xcframework +xcodebuild -create-xcframework -library ../bin/libredot-cpp.ios.$1.arm64.a -library ../bin/libredot-cpp.ios.$1.universal.simulator.a -output ./project/bin/libredot-cpp.ios.$1.xcframework diff --git a/test/project/example.gdextension b/test/project/example.gdextension index 8e2f794..51c6f37 100644 --- a/test/project/example.gdextension +++ b/test/project/example.gdextension @@ -36,8 +36,8 @@ web.release.wasm32 = "res://bin/libgdexample.web.template_release.wasm32.nothrea [dependencies] ios.debug = { - "res://bin/libgodot-cpp.ios.template_debug.xcframework": "" + "res://bin/libredot-cpp.ios.template_debug.xcframework": "" } ios.release = { - "res://bin/libgodot-cpp.ios.template_release.xcframework": "" + "res://bin/libredot-cpp.ios.template_release.xcframework": "" } diff --git a/test/run-tests.sh b/test/run-tests.sh index 728f6d4..d6e4ea3 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -1,11 +1,11 @@ #!/bin/bash -GODOT=${GODOT:-godot} +REDOT=${REDOT:-redot} END_STRING="==== TESTS FINISHED ====" FAILURE_STRING="******** FAILED ********" -OUTPUT=$($GODOT --path project --debug --headless --quit) +OUTPUT=$($REDOT --path project --debug --headless --quit) ERRCODE=$? echo "$OUTPUT" diff --git a/tools/godotcpp.py b/tools/godotcpp.py index b2a63dc..afa3c49 100644 --- a/tools/godotcpp.py +++ b/tools/godotcpp.py @@ -245,7 +245,7 @@ def options(opts, env): opts.Add( BoolVariable( key="build_library", - help="Build the godot-cpp library.", + help="Build the redot-cpp library.", default=env.get("build_library", True), ) ) @@ -548,7 +548,7 @@ def _godot_cpp(env): env.AppendUnique(CPPPATH=[env.Dir(d) for d in [extension_dir, "include", "gen/include"]]) library = None - library_name = "libgodot-cpp" + env["suffix"] + env["LIBSUFFIX"] + library_name = "libredot-cpp" + env["suffix"] + env["LIBSUFFIX"] if env["build_library"]: library = env.StaticLibrary(target=env.File("bin/%s" % library_name), source=sources) |