Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement save for scenebridge #949

Merged
merged 6 commits into from
Feb 6, 2024

Conversation

DiogoMendonc-a
Copy link
Contributor

Description

Include a summary of the changes here.

Checklist

  • Self-review changes.
  • Evaluate impact on the documentation.
  • Ensure test coverage.
  • Write new samples.
  • Add entry to the changelog's unreleased section.

@DiogoMendonc-a DiogoMendonc-a force-pushed the 352-implement-save-for-scenebridge branch from 95628c3 to f0b525f Compare February 5, 2024 18:05
Copy link
Contributor

github-actions bot commented Feb 5, 2024

PR Preview Action v1.4.7
🚀 Deployed preview to https://GameDevTecnico.github.io/cubos/docs-preview/pr-949/
on branch gh-pages at 2024-02-06 13:03 UTC

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Clang-Tidy found issue(s) with the introduced code (1/5)

core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/tests/reflection/comparison.cpp Outdated Show resolved Hide resolved
core/tests/reflection/comparison.cpp Outdated Show resolved Hide resolved
core/tests/reflection/comparison.cpp Outdated Show resolved Hide resolved
core/tests/reflection/comparison.cpp Outdated Show resolved Hide resolved
core/tests/reflection/comparison.cpp Outdated Show resolved Hide resolved
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Clang-Tidy found issue(s) with the introduced code (2/5)

core/tests/reflection/comparison.cpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Clang-Tidy found issue(s) with the introduced code (3/5)

engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Clang-Tidy found issue(s) with the introduced code (4/5)

engine/src/scene/bridge.cpp Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Clang-Tidy found issue(s) with the introduced code (5/5)

core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
core/include/cubos/core/reflection/comparison.hpp Outdated Show resolved Hide resolved
Copy link

codecov bot commented Feb 5, 2024

Codecov Report

Attention: 125 lines in your changes are missing coverage. Please review.

Comparison is base (7fdc5f5) 35.38% compared to head (ffbe9cf) 35.36%.

Files Patch % Lines
engine/src/scene/bridge.cpp 0.00% 101 Missing ⚠️
core/src/reflection/comparison.cpp 83.33% 7 Missing ⚠️
core/include/cubos/core/ecs/blueprint.hpp 0.00% 6 Missing ⚠️
core/src/memory/any_value.cpp 0.00% 6 Missing ⚠️
core/src/data/ser/json.cpp 16.66% 5 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main     #949      +/-   ##
==========================================
- Coverage   35.38%   35.36%   -0.02%     
==========================================
  Files         287      289       +2     
  Lines       23872    24022     +150     
==========================================
+ Hits         8447     8496      +49     
- Misses      15425    15526     +101     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@github-actions github-actions bot dismissed stale reviews from themself February 5, 2024 18:35

No Clang-Tidy warnings found so I assume my comments were addressed

Copy link
Member

@RiscadoA RiscadoA left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for working on this! Overall LGTM, will approve, but make sure to resolve the comments I wrote before merging. Also: regarding the blueprint realation serialization change (to use '@'), make sure that docs match the new format. IIRC i wrote some stuff explaining the previous format, not sure where (perhaps in the bridge docs or sample)

core/src/data/ser/json.cpp Outdated Show resolved Hide resolved
core/src/reflection/comparison.cpp Outdated Show resolved Hide resolved
engine/src/scene/bridge.cpp Show resolved Hide resolved
@DiogoMendonc-a DiogoMendonc-a merged commit 916dde9 into main Feb 6, 2024
11 checks passed
@DiogoMendonc-a DiogoMendonc-a deleted the 352-implement-save-for-scenebridge branch February 6, 2024 15:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants