Files
processing4/java
Stef Tervelde 82a4429060 General cleanup of Base
I started cleaning up some of `Base`'s startup sequence for clarity of what is being started when. Nowhere near completion and I think a lot of this class will need to be refactored in the future.

Also removed some of the timing measurement comments

Added some comments to the Processing CLI class
2025-10-22 08:28:34 +02:00
..
2025-02-05 21:33:57 +01:00
2024-12-23 19:00:37 +01:00

Processing Java Mode

This the Java Mode in Processing. It compiles your sketches and runs them. It is the primary mode of Processing.

Folders

  • application assets for exporting applications within the mode
  • generated generated antlr code for the mode, should be moved to a proper antlr plugin within gradle
  • libraries libraries that are available within the mode
  • lsp gradle build system for the language server protocol, in the future we should decouple the lsp from the java mode and pde and move all relevant code here. For now it can be found in src/.../lsp
  • mode legacy files for Ant
  • preprocessor the preprocessor for the mode, same deal as with the lsp, although the decoupling has mostly been done
  • src the main source code for the mode
  • test tests for the mode
  • theme assets for the mode, related to autocomplete and syntax highlighting

Future plans

  • Decouple the lsp and preprocessor from the mode and move them to their own repositories
  • Move the antlr code to a proper plugin within gradle
  • Create a gradle plugin to convert .pde file to .java files
  • Create a gradle based version of Java mode.