-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Promisify the preload functions #2698
Comments
I was thinking about promisifying the loading functions since they already are promises underneath (using fetch) but I didn't get the time to try anything out. What you propose seem to me a good path to start exploring. A few notes: The promisified function by convention (as per Bluebird) is to suffix We need to consider the case where the data that was loaded in would have the property The current way to deal with parallel |
@limzykenneth I intend to start work on these with the Perhaps, when p5.js gets its first major version we can switch them out so that the old style |
How about having the user's preload function optionally return a promise (and/or and array of promises). If a promise is returned then it's awaited before setup is called. That way, in the future, the user can just mark their preload as 'async' and 'await' their async methods within. |
That was the plan, yes, I already have code to this end locally. However, I was also considering making the setup and draw functions also have support for this to make them consistent and allow for asynchronous things in the draw loop (Not recommended obviously, but there's definitely a case for it imo) Is there a case for adding a let v1, v2, v3;
async function preload() {
{ v1, v2, v3 } = await loadKeys({
v1: loadJSONAsync('json'),
v2: loadStringsAsync('strings'),
v3: loadModelAsync('model')
});
} |
Actually, thinking about it, we can deprecate the whole |
i think it might be a bit of a leap to require beginners to grok the whole async thing off the bat. certainly it makes sense to support it for more advanced scenarios, but i think the just-throw-stuff-in-preload-and-we'll-take-care-of-it idea works well for those still learning the ropes. i'm guessing you're replacing the refcounting stuff with just a bucket of promises? |
Yeah, you're right - preload is definitely simple, but the concept of |
yeah those placeholder objects are definitely a little janky. something that could probably have been solved well with |
assigning this bug to @meiamsome since there is a pending PR, just to indicate work is in progress. :) |
If no one else minds, I would be interested in taking this on and converting the preloads to all use promises under the hood. I suggest this would involve adding
loadXPromise(..)
versions of each of the current loading functions and having the olderloadX(...)
functions be mapped onto them, perhaps along the lines of the following snippet, that should be able to keep backwards compatibility viable.In the future, we could then deprecate the use of the return directly and prefer to use
loadX().promise.then(ret => variable = ret)
and after a long deprecation time we could convert to something like the following:And then deprecate the use of
.promise
. I think this makes sense from a future standpoint where we get rid of the currentloadX
behaviour but that is a somewhat desirable feature. Perhaps it may even be a good idea to letpreload
return a promise. This would let users doWhich would be relatively new user friendly I think. Browser support is getting there for async/await so I think this is actually viable in the near future.
It is notable, however that using
await
like this would actually cause the loads to be called one-by-one, so perhaps this is not the best solution.The text was updated successfully, but these errors were encountered: