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

Performance improvements #778

Open
5 of 12 tasks
AlmasB opened this issue Mar 27, 2020 · 0 comments
Open
5 of 12 tasks

Performance improvements #778

AlmasB opened this issue Mar 27, 2020 · 0 comments
Assignees
Labels
in progress On-going / being worked on

Comments

@AlmasB
Copy link
Owner

AlmasB commented Mar 27, 2020

  • Type, bbox and transform do not need to be updated, yet they are included in the update loop. We should have an overridable flag for them to indicate if need updating.
  • translateXProperty() and other properties shouldn't be used in the loop. Raw primitive values should be used instead. Start with a benchmark with lots of entities moving left and right to measure impact.
  • Have a flag for components that don't require injecting other components, should speed up component addition
  • Keep a separate container for non-updated entities?
  • Animations should have their own update inside a scene so they don't interfere with scene update and then we won't need CopyOnWriteArrayList
  • ViewComponent does not always need root without the transform. Removing it will improve performance. Perhaps we can add it dynamically (when needed).
  • ViewComponent parent and view roots do not seem to be necessary. We can bind transforms directly to passed nodes themselves. However, this changes current transform semantics. For example, we wouldn't be able to use translate* to do local transforms of views, we would need then to use layout*. No clear advantage over semantic cost
  • EntityBuilder can pre-create entities and keep a pool of entities that are created on a bg thread. Update: after a few quick tests, there does not seem to be a big performance gain (if any), so this is delayed for now.
  • Do not produce Optional<> objects in the game world update
  • Pre-render text for animations (setCache(true) can help with font based UI)
  • Image.map() can be improved by using setPixels()
  • Don't use Properties in critical sections and use guarded returns for primitives (obs == null) ? primitive : obs.value
@AlmasB AlmasB added the in progress On-going / being worked on label Mar 27, 2020
@AlmasB AlmasB changed the title Do not include components in update to improve performance Performance improvements Mar 28, 2020
@AlmasB AlmasB self-assigned this Mar 28, 2020
AlmasB added a commit that referenced this issue Apr 20, 2020
… to the scene graph based on content. This should significantly improve use of CPU time, #778
ross-holloway94 pushed a commit to ross-holloway94/FXGL that referenced this issue Apr 23, 2020
…tick

* AlmasB/dev:
  entity views (with and without transform + dev) are added dynamically to the scene graph based on content. This should significantly improve use of CPU time, AlmasB#778
  added random occurrence based mini game, closes AlmasB#640
  completed impl of trigger sequence mini game, closes AlmasB#638
  added missing license headers
  sslogger has been merged into the fxgl-logging module, closes AlmasB#771
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in progress On-going / being worked on
Projects
None yet
Development

No branches or pull requests

1 participant