feat(es_extended/client/modules/scaleform): add scaleform util function and refactor existing scaleforms #1581
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This utility function streamlines working with scaleform movie methods, allowing for simpler and more readable calls to scaleform functions. With this change, scaleform methods can be invoked in a much cleaner manner, making it easier to work with complex scaleforms that require multiple method calls.
Motivation
Working directly with scaleforms often leads to messy, hard-to-maintain code, especially when dealing with complex scaleforms that require several method calls. This PR introduces a utility function that abstracts the complexity and simplifies interactions with scaleforms, maintaining readability and reducing boilerplate code.
Implementation Details
ESX.Scaleform.Utils.RunMethod
abstracts away the repetitive boilerplate involved in invoking scaleform movie methods. It handles method execution, argument passing, and return value handling.number
,string
,boolean
), automatically determining the appropriate method to pass the arguments to.SetScaleformMovieAsNoLongerNeeded
.Usage Example
PR Checklist