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 a Texture2D to support Lottie animation #91580

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

beicause
Copy link
Contributor

@beicause beicause commented May 5, 2024

Related proposals:

Edit:
Currently my implemention is a Texture2D that generates a sprite sheet, configured through the properties frame_begin, frame_end, frame_count and rows, and scale to change image size.

Also, this PR implement a resource loader for lottie json. Although editor import plugin may be better, it breaks the built-in json editor.

Here are two ways to use the LottieTexture2D:

  1. Set frame_count to you want to generate a sprite sheet which and be used directly in Spriteframes, which requires more memory.
  2. Set frame_count to 1 and attach this texture to Sprite or TextureRect, then update frame_begin in _process() to play the animation, which Increases CPU load for frame processing.

@Chaosus Chaosus added this to the 4.x milestone May 5, 2024
@AThousandShips AThousandShips changed the title Implement a simple Resource for load lottie animation Implement simple support for Lottie animation May 5, 2024
@fire
Copy link
Member

fire commented May 5, 2024

I'll put this on my list to review for the pipeline import.

@fire
Copy link
Member

fire commented May 5, 2024

  1. Run the godot engine binary with --doctool to update the documentation
  2. I'll try to give you guidance for the "json" property being set as the default value

Here are the changes: beicause/godot@lottie...V-Sekai:godot:vsk-lottie-4.3

  1. Thoughts on extending Ref<Image> directly? You could also extend Ref<Texture2D>.
  2. There's a system to convert ".json" to "LottieSheet" that is missing that goes through the ResourceImporter.

@beicause
Copy link
Contributor Author

beicause commented May 6, 2024

Thanks for your guide.
I have changed it to inherit Texture2D. Now in editor it display Lottie normally, but when running the game it's empty. I don't find the reason.

@beicause beicause changed the title Implement simple support for Lottie animation Implement a Texture2D to support Lottie animation May 6, 2024
@fire
Copy link
Member

fire commented May 6, 2024

I was stuck, I suspect we need to use the resource importer system that takes json and gives a LottieTexture2D

@beicause
Copy link
Contributor Author

beicause commented May 6, 2024

I was stuck, I suspect we need to use the resource importer system that takes json and gives a LottieTexture2D

Don't open json directly. Create a LottieTexture2D and add the json as subresource.

@beicause
Copy link
Contributor Author

beicause commented May 6, 2024

I'm not very familiar with custom resource. I still can't understan why using code to set this texture works:

texture=LottieTexture2D.create_from_string(FileAccess.get_file_as_string("res://lottie.json"),1.0)

But setting the texture in editor doesn't work in games. ( Update: create_from_json doesn't work too. Fixed by disabling JSON::stringify sort_keys )

For resource importer, since lottie extension name is also .json and will be recognized as JSON, we have to customize one, for example .lottie. Or don't implement resource importer for Lottie, just create it manually and use JSON as property.

@fire
Copy link
Member

fire commented May 6, 2024

So there's a way to create a resource importer plugin that scans for "*.json" as lottie.

I'll try to give you instructions as soon as I can or you can try it.

@Calinou
Copy link
Member

Calinou commented May 6, 2024

This implementation is simple and just works for me, by generating animation frame on-demand.

While this is a simpler approach, note that it'll result in less smooth animations that no longer look crisp when zoomed in (e.g. due to Camera2D zoom or canvas_items stretch mode).

I think Lottie's biggest use case is that it allows for vector-based 2D animation with an arbitrary amount of frames (in other words, things can be freely interpolated). While you could choose to import at a high framerate (which doesn't seem to be adjustable in this importer right now), targeting 60 FPS will require a lot of memory.

This might be a dealbreaker for some use cases, so it's worth considering whether a true vector-based approach is more suitable first.

Performance is also an important caveat, similar to AnimatedTexture. Updating texture data often is slow, and it can also be inflexible (e.g. it might not obey pausing as expected).

On the bright side, this texture-based approach has some upsides, such as being easier to use in 3D (e.g. with Sprite3D). A vector-based solution wouldn't be usable in 3D unless rendered to a texture via ViewportTexture, in which case it would also lose its vector-based nature.

@beicause
Copy link
Contributor Author

beicause commented May 6, 2024

The common use case of Lottie is UI or other short duration animation, where AnimatedTexture is convenient. We can add a resource loader to import Lottie as AnimatedTexture
( I just find AnimatedTexture is deprecated, so it's not a good solution. )

@hermet
Copy link

hermet commented May 7, 2024

Hello, Texture (or AnimatedTexture) methods have several advantages.

Primarily, GPU with direct drawing is not always good & faster since the following factors:

  • When using Lottie as a static resource like SVG, or when animations are paused, the result from one rendering can be quickly reused in subsequent frames. This is particularly evident when using Lottie with UI assets that rarely change resolution.
  • Lottie requires more composition steps than expected to complete a scene. This process involves using a temporary framebuffer to create intermediate scenes, and then extracting pixel information from the framebuffer for blending. These requirements can be quite burdensome on a GPU-based graphics pipeline compared to current software rendering & texturing method.
  • Sometimes, the GPU might have too many burdens to complete real-time game graphics.

On the other hand, directly outputting vector drawings without going through textures can be more efficient in terms of memory use & performance in situations such as:

  • Super high resolution for Lottie Scenes.
  • Outputting very simple Lottie design resources (such as icons) without any composition.

Obviously it could be more beneficial to unify the vector drawing primitives as a single form in the Godot, however, implementing complex rendering logic like Lottie directly in Godot can be costly in terms of development resources and maintenance. Therefore, using third-party libraries may be advisable. In such architectures, typically using FBOs or textures can provide a stable integration structure during the main rendering and thorvg rendering.

Moving forward, ThorVG would be able to attempt hardware acceleration through its own hw rendering backend in order to integrate with Godot's main rendering pipeline, targeting FBOs for drawing. Nevertheless, if performance issues arise, attempting an aggressive integration structure based on direct drawing methods and sharing rendering contexts might be considered, although it will be comparatively challenging.

@beicause
Copy link
Contributor Author

beicause commented May 9, 2024

Godot editor gets stuck sometimes, especially when frame_count is high or there are multiple lottie files in the project, may because of ThorVG 0.13.2.
Tried ThorVG 0.12.10, it's stuck too, although less frequently.
Call stack:
2024-05-09 15-30-32 screen

@fire
Copy link
Member

fire commented May 9, 2024

@beicause @hermet Is there a test project I can send to help ThorVG debug this?

@beicause
Copy link
Contributor Author

beicause commented May 9, 2024

@beicause @hermet Is there a test project I can send to help ThorVG debug this?

thorvg_test.zip

@hermet
Copy link

hermet commented May 10, 2024

Hmm... it looks threading dead lock. let me review the patch first.

Copy link

@hermet hermet left a comment

Choose a reason for hiding this comment

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

@beicause Could you please check the comments?

Also an opinion:
I just noticed that generating all frame images like this is quite intensive. I expect that dynamically updating the texture every frame by using ThorVG animation would be better for saving texture memory and reducing the harsh initialization bottleneck.

modules/svg/lottie_texture.cpp Outdated Show resolved Hide resolved
modules/svg/lottie_texture.cpp Outdated Show resolved Hide resolved
modules/svg/lottie_texture.cpp Outdated Show resolved Hide resolved
@beicause
Copy link
Contributor Author

beicause commented May 10, 2024

I think it's easier to use it in AnimationSprite2D/SpriteFrames by generating multiple frames at the same time. And if you just want one frame, you can set frame_count to 1 and set frame_begin. Playing the animation by dynamic updating the texture needs more codes for users.

Another option is implementing a import plugin to import Lottie as a image texture, like SVG. This avoids run-time cost, but increases app size.

@fire
Copy link
Member

fire commented May 10, 2024

Another option is to treat this like theora like a video.

@beicause
Copy link
Contributor Author

@hermet Hello, I made the change 6e56a6c according to your guidance, but still get stuck sometimes.

Copy link

@hermet hermet left a comment

Choose a reason for hiding this comment

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

Thank you for your update. I have some additional feedback on your code, although it might not help to resolve this issue.

Unfortunately, I've tried similar calls with our ThorVG example with your attached resource(lottie.json in lottie_test.zip) using one extra thread but didn't encounter any issues, and even the thread sanitizer didn’t report anything.

I might need more context. Could you please conduct some tests and observe the results?

  1. Disable the ThorVG threading feature and see the result:
    -> Remove #define THORVG_THREAD_SUPPORT in inc/config.h.
  2. Does this worker thread seems not same with the thread which calls initialize_svg_module?
    image
  3. How many LottieTexture2D instances are created from this issue, and does update_image() calls are made just once per its instance?

modules/svg/lottie_texture.cpp Outdated Show resolved Hide resolved
modules/svg/lottie_texture.cpp Outdated Show resolved Hide resolved
modules/svg/lottie_texture.cpp Show resolved Hide resolved
modules/svg/lottie_texture.cpp Show resolved Hide resolved
Copy link
Contributor Author

@beicause beicause left a comment

Choose a reason for hiding this comment

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

@hermet
After disabling ThorVG thread support, I get in the infinite(?) loop in sw_engine/tvgSwRle.cpp static void _cubicTo(lines 665)
Sometimes it's OK, but sometimes the rc is very negative, I print it as follow:
2024-05-13 00-07-58屏幕截图

Then I wait arc gradually decreasing, but rw.bezStack is (-1682252790473928, -1682252790480408), which is too negative and impassable to reach.
2024-05-13 00-50-47屏幕截图

Additional info: In the same game project, the left successfully run, while the right is stuck, log diff:
2024-05-13 14-14-11屏幕截图

@hermet
Copy link

hermet commented May 13, 2024

@beicause It looks data corruption or overflow @_@. Could you please share me the size of picture here?
image

@beicause
Copy link
Contributor Author

beicause commented May 14, 2024

@beicause It looks data corruption or overflow @_@. Could you please share me the size of picture here? image

The size of picture is correct and this call returns SUCCESS. _update_image is only called once at startup. It's strange that the render behavior is inconsistent ( not every time it gets stuck ).
I also try some other Lottie files, but don't reproduce the issue.

@bestvcboy
Copy link

May I ask which version Lottie Texture2D will be released in? Will it come out in 4.3 dev 7? I'm in a hurry waiting for this. thanks

@akien-mga
Copy link
Member

This is still a work in progress (draft) and we are in feature freeze for 4.3, so at the earliest this could be merged for 4.4, if it's ready and approved by the import team.

@bestvcboy
Copy link

bestvcboy commented May 27, 2024

Boss, can you compile a godot 4.3 dev6 c# version for me to use first? Thank you in advance.

@beicause
Copy link
Contributor Author

@bestvcboy You can download it from Github Action Artifacts. I also create a lottie-next branch that sync to godot master and thorvg main.

It's recommended to fetch this pr and compile Godot if you really want to try it, which is not very difficult.

@bestvcboy
Copy link

I have compiled it and used it, but my JSON has been loaded in and won't move. It will be displayed as an image.
robothelp.json

@beicause
Copy link
Contributor Author

@bestvcboy Please see the class doc. The texture won't update automatically. You should use it in SpriteFrames or update frame_begin in script.

@bestvcboy
Copy link

 LottieTexture2D d1 = GD.Load<LottieTexture2D>("res://robothelp.json");
 var animatedSprite = GetNode<AnimatedSprite2D>("AnimatedSprite2D");
 for (int i = 0; i < 200; i++)
 {
     d1.FrameBegin = i;
     animatedSprite.SpriteFrames.AddFrame("run", d1);
 }
 animatedSprite.Play("run");
  It will be displayed as an image.

@beicause
Copy link
Contributor Author

beicause commented May 27, 2024

@bestvcboy You add the same texture to every frame so it don't play. Here are two ways to use.

  1. Set frame_count to you want and generate a sprite sheet then add it to Spriteframes with animation editor( or write code that adds AtlasTexture, so does the editor ).
  2. Set frame_count to 1 and attach this texture to Sprite or TextureRect, then update the texture in _process() to play animation.

@bestvcboy
Copy link

Thank you very much, it's already possible. The speed of solving the problem is really exciting and I want to shed tears.

@bestvcboy
Copy link

Encountered another problem. It's completely normal in edit mode, but after running, The scale of AnimatedSprite2D will change on its own, and once I change it back, it will still change back on its own. Very unstable. The method I use is to add frame_count to AnimatedSprite2D.

@beicause
Copy link
Contributor Author

@bestvcboy Counld you please describe your problem more detail?

@bestvcboy
Copy link

I feel a bit dizzy. Every time I encounter a different problem, this time when I join the elf, framecount, Every little picture is exactly the same again. I don't know how to do it anymore.I am sending an email to your: 1494181792@qq.com

@beicause beicause force-pushed the lottie branch 2 times, most recently from e328e98 to 69be17b Compare May 31, 2024 05:34
@beicause beicause force-pushed the lottie branch 2 times, most recently from 0e65d0b to 4c73d50 Compare June 7, 2024 12:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add support for Lottie animation using ThorVG
7 participants