We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello everyone,
I have made multiple .pde files with various classes and I want to now combine them into a single .pde. How can I go about doing this? For example, I run main.pde and if I press the "1" button on my keyboard, 1.pde loads full screen on my display. If I press one again, it exits; if I press the "2" button on my keyboard, 2.pde loads full screen on my display. etc. etc.
If I can simply create multiple "header" files, please point me to the correct syntax to do so. I couldn't find much in the search on this topic and most of the examples I found simply load audio, text, video or image files.
Thank you in advance.
Answers
You can create tabs and copy every sketch on a separate one. This would still create multiple sketches in your project folder, but these will be all in one. In order to have a possibility to switch between different part of code execution, use a variable to store a state and change it with the keyboard event. In your
draw()
you can then create a switch case conditional and call drawing code depending on the state you are in.You have to write a new container sketch with gives you a menu to start the other sketches.
The container sketch / frame sketch has setup and draw.
Since the other sketches also have their own setup and draw, pls rename them to setup1 and draw1, setup2 and draw2...
remove size from all setup() here, the only allowed size() is in the framee sketch
make sure that no functions have the same name
you can use different tabs but you don't have to.
here is a sketch that shows states as has been mentioned