Skip to content
Advertisement

Trying to allow the user to step through a for loop for an algorithm using JS and P5 via a button press

i am trying to figure out how i can enable a user to step through an algorithm using a button click on P5 and JS. The other code i have takes some text and displays some custom character cells that are used in the algorithm i mentioned below. I want the user to click a next button and have it step through and wait for user input before doing each step.

Below is a code snippet

JavaScript

There are no errors in the console on chrome either.

Advertisement

Answer

There are lots of ways to do this. One way is to create an array of functions per step and execute them one at a time whenever a button is pressed.

For example:

JavaScript
JavaScript

This example is somewhat contrived since no animation occurs per step. A more realistic example would involve animation.

One approach that continues to avoid nasty chains of if/elses in the draw function (although that certainly works in a pinch) is to replace draw per step and optionally manipulate noLoop() and loop() as desired to start and stop the animation.

JavaScript
JavaScript

Going further, let’s say you want to repeat a step. That’s pretty easy with this design. Instead of shifting each function permanently from the array of actions, keep an index to reference which action should be taken. In response to a button click, change the index and call the respective function for that behavior. This is one way to implement “scenes” in p5.js. In some cases, it might make sense to use an object with clearly-named keys per state, e.g. {titleScreen: () => ..., endingScreen: () => {...}} etc. See Transitioning from one scene to the next with p5.js for a full treatment of this.

You could also “rotate” the array of behaviors to create cyclical repetitions, like:

JavaScript

If you wish, you can store all of these scene or step functions in separate external files, making the code easy to maintain.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement