Skip to content
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

Adds new Processing sketch templates to enhance the user's initial coding experience in the Processing IDE. #1020

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

SushantBansal-tech
Copy link

Changes

  • Created new templates in Template.java:

    • Animation Sketch
    • Interactive Sketch
    • Fullscreen Sketch
    • Resizeable Sketch
  • Updated Editor.java to support:

    • Dynamic template selection
    • Clearing previous code before inserting new template
    • Flexible template menu generation

Purpose

Provide beginners and experienced users with ready-to-use sketch templates that demonstrate different Processing capabilities, making it easier to start coding quickly.

Copy link
Collaborator

@Stefterv Stefterv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @SushantBansal-tech Thank you for your efforts!

Testing your change locally, I'm seeing an initial issue that the menu bar item is not a sub-menu, which breaks on the macOS menu-bar

Please make the templates user-definable from the Sketchbook folder

and please make the templates in the repo a .pde file instead of encoded into Java as you did right now

I also think it should insert the template without removing the existing code. I'm worried that people will lose their work otherwise

@SableRaf
Copy link
Collaborator

SableRaf commented Mar 28, 2025

Thanks for your work!

Adding to Stef's feedback: the idea was to have a submenu in the File menu called New from Template and under that submenu, you'd have the 4 built-in templates to choose from.

The desired behavior is to open a new sketch window with the template rather than insert the code in the existing sketch window. Adding a template to a new tab is not desirable either.

@Stefterv: could we start with the built-in templates for now and look at user-defined templates later? I feel like user-defined templates add some complexity to the UX that we haven't discussed yet.

@Stefterv
Copy link
Collaborator

For me the whole point of the templates is to be able to customise them

@SushantBansal-tech
Copy link
Author

@Stefterv @SableRaf I will update this

@SushantBansal-tech
Copy link
Author

@Stefterv can you please provide the screenshot of MACOS , so I can identify the problem easily.

@Stefterv
Copy link
Collaborator

@SushantBansal-tech

Screen.Recording.2025-03-28.at.08.06.12.mov

Here's a video of the issue

@SableRaf
Copy link
Collaborator

I agree that being able to customize templates is useful, and we should definitely support that. At the same time, I see a lot of value in starting with built-in templates. As @hx2A pointed out in this comment, even just a couple of ready-made options would already be helpful in real teaching situations.

Just to reiterate, my proposed plan was:

We can start with a predefined set of maybe three templates in the menu. It's easiest to implement and gives us something useful right away.

Then we can look into the following improvements:

  1. A preference option in Settings to pick a default template to use every time you hit “New...”
  2. A templates folder in the sketchbook to store user-created templates.
  3. A menu item to save the current sketch as a custom template.

I think it's more manageable to get the basic functionality working first, especially since the UX for creating and managing custom templates still needs to be defined.

@Stefterv
Copy link
Collaborator

Okay, can we at least have user-definable templates in the sketchbook folder? We can skip all the UX changes proposed and at least have the functionality

@SushantBansal-tech
Copy link
Author

@Stefterv can you please provide the confirmation what I have to do Either the templates should be built-in or user-defined ?
what should be the location of templates ?

@Stefterv
Copy link
Collaborator

Both, I would say the templates would be defined in build/shared/lib/templates in the repo and in Base.getSketchbookFolder() + /templates on the users machine

In this way we can have pre-defined templates and user-defined ones.

@SushantBansal-tech
Copy link
Author

SushantBansal-tech commented Mar 28, 2025

@Stefterv I am trying to do but facing some difficulties and here is the change i am trying to do

`// Ensure the templates menu is a proper sub-menu
JMenu templatesMenu = new JMenu(Language.text("menu.file.templates"));
System.out.println("Creating Templates sub-menu");
loadTemplates(templatesMenu);
fileMenu.add(templatesMenu);

// Load templates from the Sketchbook folder
private void loadTemplates(JMenu templatesMenu) {
    File repoTemplatesDir = new File("build/shared/lib/templates");
    System.out.println("Loading templates from repository directory: " + repoTemplatesDir.getAbsolutePath());
    addTemplatesFromDirectory(repoTemplatesDir, templatesMenu);

    File userTemplatesDir = new File(Base.getSketchbookFolder(), "templates");
    System.out.println("Loading templates from user sketchbook directory: " + userTemplatesDir.getAbsolutePath());
    addTemplatesFromDirectory(userTemplatesDir, templatesMenu);
}

// Adjust the template insertion logic
private void insertTemplateCode(String templateCode) {
    appendText(templateCode); // Use appendText instead of insertText
}

// Method to append text into the editor without removing existing code
@SuppressWarnings("unused")
public void appendText(String text) {
    int caret = getCaretOffset();
    setSelection(caret, caret);
    textarea.setSelectedText(text);
}
private void addTemplatesFromDirectory(File directory, JMenu templatesMenu) {
    if (directory.exists() && directory.isDirectory()) {
        File[] templateFiles = directory.listFiles((dir, name) -> name.toLowerCase().endsWith(".pde"));
        if (templateFiles != null) {
            for (File templateFile : templateFiles) {
                System.out.println("Found template file: " + templateFile.getAbsolutePath());
                JMenuItem templateItem = new JMenuItem(templateFile.getName());
                templateItem.addActionListener(e -> {
                    try {
                        // Correct usage of Files.readAllBytes(Path)
                        String templateCode = new String(Files.readAllBytes(templateFile.toPath()));
                        insertTemplateCode(templateCode);
                    } catch (IOException ex) {
                        ex.printStackTrace();
                    }
                });
                templatesMenu.add(templateItem);
            }
        } else {
            System.out.println("No template files found in directory: " + directory.getAbsolutePath());
        }
    } else {
        System.out.println("Directory does not exist or is not a directory: " + directory.getAbsolutePath());
    }
}`

@Stefterv
Copy link
Collaborator

Hi @SushantBansal-tech, could you explain a bit more about which difficulty you are running in to?

This looks to me it is heading into a positive direction

I've you are asking about how to make a sub-menu, I think you can add a menu to a menu as a menu item if I understand correctly.

By the way, for File repoTemplatesDir please use Platform.getContentFile()

@SushantBansal-tech
Copy link
Author

@Stefterv Yes I have add a menu to a menu as a menu item .
Can you explain also how to load templates

@Stefterv
Copy link
Collaborator

Stefterv commented Mar 29, 2025

I just looked into it and the best strategy I can see for loading the templates is to modify Base.handleNew() to return the Editor created on line 1127. Then you can call this method and set the contents of the sketch after the Editor loads

@SushantBansal-tech
Copy link
Author

@Stefterv I want to add pre-defined templates in templates under file and user-defined termplates in skectbook ??
image

@SushantBansal-tech
Copy link
Author

SushantBansal-tech commented Mar 29, 2025

@Stefterv These are the changes I have done : ` private void loadTemplates(JMenu templatesMenu) {
// Load predefined templates from the repository
File repoTemplatesDir = Platform.getContentFile("lib/templates");
System.out.println("Loading templates from repository directory: " + repoTemplatesDir.getAbsolutePath());
addTemplatesFromDirectory(repoTemplatesDir, templatesMenu);

    // Load user-defined templates from the Sketchbook folder
    File userTemplatesDir = new File(Base.getSketchbookFolder(), "templates");
    System.out.println("Loading templates from user sketchbook directory: " + userTemplatesDir.getAbsolutePath());
    addTemplatesFromDirectory(userTemplatesDir, templatesMenu);
}

private void addTemplatesFromDirectory(File directory, JMenu templatesMenu) {
if (directory.exists() && directory.isDirectory()) {
File[] templateFiles = directory.listFiles((dir, name) -> name.toLowerCase().endsWith(".pde"));
if (templateFiles != null) {
for (File templateFile : templateFiles) {
System.out.println("Found template file: " + templateFile.getAbsolutePath());
JMenuItem templateItem = new JMenuItem(templateFile.getName());
templateItem.addActionListener(e -> {
try {
// Correct usage of Files.readAllBytes(Path)
String templateCode = new String(Files.readAllBytes(templateFile.toPath()));
insertTemplateCode(templateCode);
} catch (IOException ex) {
ex.printStackTrace();
}
});
templatesMenu.add(templateItem);
}
} else {
System.out.println("No template files found in directory: " + directory.getAbsolutePath());
}
} else {
System.out.println("Directory does not exist or is not a directory: " + directory.getAbsolutePath());
}
}`

@SableRaf
Copy link
Collaborator

@Stefterv I want to add pre-defined templates in templates under file and user-defined termplates in skectbook ??

The idea was to put all of them in Templates. Also I'd call the menu item File > New From Template.

@SushantBansal-tech
Copy link
Author

SushantBansal-tech commented Mar 29, 2025

@Stefterv @SableRaf I Have load the template as .pde .. Please confirm about the sketchbook (user-defined templates will be there)??
image

@Stefterv
Copy link
Collaborator

Stefterv commented Mar 29, 2025

File userTemplatesDir = new File(Base.getSketchbookFolder(), "templates"); This is exactly how it's supposed to be if that is what you mean

And yes they should show up in that list

@SableRaf
Copy link
Collaborator

SableRaf commented Mar 29, 2025

Thanks for your question @SushantBansal-tech

Built-in templates should be stored in the Processing repo at build/shared/lib/templates, while user-defined templates go in the sketchbook folder at Base.getSketchbookFolder() + /templates.

Both types should appear together under File > New from template, so users see all templates in one place, regardless of where the corresponding .pde files are stored.

I hope this clears up any ambiguity.

@Stefterv
Copy link
Collaborator

Also I think we can hide .pde extension? @SableRaf

@SushantBansal-tech
Copy link
Author

@SableRaf @Stefterv user defined templates are in sketchbook+/templates and pre-defined templates are in file->Templates
image
image

@Stefterv
Copy link
Collaborator

Hi @SushantBansal-tech Thank you for your effort!

Just wanted to clarify that we meant that the user-defined templates go in the same list as the pre-defined ones

So the final list would be
-Template 1
-Template 2
-Template 3
-Template 4
-User Template 1
-User Template 2

Sorry for the mixup! Maybe next time we can make a mockup @SableRaf ?

@SushantBansal-tech
Copy link
Author

@SableRaf @Stefterv sure I will do this ...

Hi @SushantBansal-tech Thank you for your effort!

Just wanted to clarify that we meant that the user-defined templates go in the same list as the pre-defined ones

So the final list would be -Template 1 -Template 2 -Template 3 -Template 4 -User Template 1 -User Template 2

Sorry for the mixup! Maybe next time we can make a mockup @SableRaf ?

@SableRaf
Copy link
Collaborator

image

@SushantBansal-tech: See this mockup for reference on the menu structure.

@SushantBansal-tech
Copy link
Author

@SableRaf @Stefterv ` private void loadTemplates(JMenu templatesMenu) {
List allTemplates = new ArrayList<>();

// Load predefined templates from the repository
File repoTemplatesDir = Platform.getContentFile("lib/templates");
System.out.println("Loading templates from repository directory: " + repoTemplatesDir.getAbsolutePath());
addTemplatesFromDirectory(repoTemplatesDir, allTemplates);

// Load user-defined templates from the Sketchbook folder
File userTemplatesDir = new File(Base.getSketchbookFolder(), "templates");
System.out.println("Loading templates from user sketchbook directory: " + userTemplatesDir.getAbsolutePath());
addTemplatesFromDirectory(userTemplatesDir, allTemplates);

// Add all templates to the menu
// Print all templates to the console
System.out.println("All loaded templates:");
for (File template : allTemplates) {
  System.out.println("Template: " + template.getAbsolutePath());
}
addTemplatesToMenu(allTemplates, templatesMenu);

}is the code right setup??private void addTemplatesToMenu(List templates, JMenu templatesMenu) {
for (File templateFile : templates) {
String templateName = templateFile.getName().replace(".pde", "");
JMenuItem templateItem = new JMenuItem(templateName);
templateItem.addActionListener(e -> {
try {
String templateCode = new String(Files.readAllBytes(templateFile.toPath()));
System.out.println("Template code read from file: " + templateCode);

      Editor newEditor = base.handleNew();
      if (newEditor != null) {
        System.out.println("New editor created. Inserting template code.");
        newEditor.insertText(templateCode);
      } else {
        System.err.println("Failed to create new editor.");
      }
    } catch (IOException ex) {
      ex.printStackTrace();
    }
  });
  templatesMenu.add(templateItem);
}

}`

Copy link
Collaborator

@Stefterv Stefterv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @SushantBansal-tech the general structure looks fine now, but please fix the items I have marked.

In general, please make sure you're only adding code that is necessary and try not to leave parts left over from development

item.addActionListener(e -> handleOpenPrompt());
defaultFileMenu.add(item);
// item = Toolkit.newJMenuItem(Language.text("menu.file.open"), 'O');
// item.addActionListener(e -> handleOpenPrompt());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please clean up any comments and unused code left in your Pull Request

@@ -0,0 +1,50 @@
package processing.app.ui;

public class Template {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No longer used correct?

// Load user-defined templates from the Sketchbook folder
File userTemplatesDir = new File(Base.getSketchbookFolder(), "templates");

System.out.println("Loading templates from user sketchbook directory: " + userTemplatesDir.getAbsolutePath());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please replace all occurrences of System.out.println with Messages.Log, this will ensure that only people running the PDE in DEBUG mode will see this message


Editor newEditor = base.handleNew();
if (newEditor != null) {
System.out.println("New editor created. Inserting template code.");
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please only print something when something is wrong. This will just create noise in the log

@SushantBansal-tech
Copy link
Author

@Stefterv I have done the requested changes ..
Screenshot 2025-04-01 232137
Now user defined templates will be present in sketchbook->templates and File->Templates..

Copy link
Collaborator

@Stefterv Stefterv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking good! A few small things and one I missed in the first review

@@ -598,6 +596,10 @@ public JMenu initDefaultFileMenu() {
item.addActionListener(e -> thinkDifferentExamples());
defaultFileMenu.add(item);

item = Toolkit.newJMenuItem(Language.text("menu.file.templates"), 'T');
//item.addActionListener(e -> handleTemplates());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One more comment

@@ -0,0 +1,9 @@
// Basic Template
void setup() {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and @SableRaf named these in his original suggestion, so please change the file names to those of something else more appropriate

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure

@@ -1288,6 +1289,8 @@ private void openContribBundle(String path) {
});
}

// Open templates to start with any work
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another

@@ -21,6 +21,7 @@ menu.file.recent = Open Recent
menu.file.sketchbook = Sketchbook...
menu.file.sketchbook.empty = Empty Sketchbook
menu.file.examples = Examples...
menu.file.templates=Templates
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this should be menu.file.templates=New from Template

cc @Stefterv

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay sir

@SableRaf
Copy link
Collaborator

SableRaf commented Apr 1, 2025

@Sushant0124 @Stefterv I also added one comment about the menu item's name.

@SushantBansal-tech
Copy link
Author

@SableRaf @Stefterv Sir I have done the requested changes as discussed above.

@@ -586,9 +586,7 @@ public JMenu initDefaultFileMenu() {
item.addActionListener(e -> handleNew());
defaultFileMenu.add(item);

item = Toolkit.newJMenuItem(Language.text("menu.file.open"), 'O');
item.addActionListener(e -> handleOpenPrompt());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just realised that the file->open menu item certainly should not be deleted here

// Load templates from both the repository and the user's Sketchbook folder
private void loadTemplates(JMenu templatesMenu) {
templatesMenu.removeAll();
System.out.println("templatesMenu"+templatesMenu.getComponentCount());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

System.out.println

@SushantBansal-tech
Copy link
Author

@Stefterv @SableRaf can you see this again ..

@Stefterv
Copy link
Collaborator

Stefterv commented Apr 1, 2025

Screenshot 2025-04-01 at 21 21 44

Templates open scrolled down somehow, is this something we need to fix @SableRaf

Seeing the same on macOS and on Windows

@SushantBansal-tech
Copy link
Author

@SableRaf @Stefterv can you give me idea how can I fix this . I also realize the same

Screenshot 2025-04-01 at 21 21 44

Templates open scrolled down somehow, is this something we need to fix @SableRaf

Seeing the same on macOS and on Windows

@SableRaf
Copy link
Collaborator

SableRaf commented Apr 1, 2025

Templates open scrolled down somehow, is this something we need to fix @SableRaf

Is the issue directly related to this PR or is it something else? It should be fixed before the feature goes live but it could be done via a separate issue.

@Stefterv
Copy link
Collaborator

Stefterv commented Apr 1, 2025

It's a separate issue with the insertText function, it could be mitigated in this PR but I'd rather fix the underlying issue

@SushantBansal-tech
Copy link
Author

@SableRaf @Stefterv I have done this using this code snippet

newEditor.insertText(templateCode);
            JEditTextArea textArea = newEditor.getTextArea();
            textArea.setCaretPosition(0);
            textArea.scrollTo(0, 0);

image

@SushantBansal-tech
Copy link
Author

@SableRaf @Stefterv I have solve the problem

@SableRaf
Copy link
Collaborator

SableRaf commented Apr 1, 2025

Thanks @Sushant0124. That seems to work on my end! We'll see what @Stefterv thinks about the workaround.

@SushantBansal-tech
Copy link
Author

@Stefterv I have commit all the requested changes..

@Stefterv
Copy link
Collaborator

Stefterv commented Apr 2, 2025

Hard disagree sorry! If we patch every bug with hacky solutions like this we will head into unmaintainable code really soon. This can be a separate issue and doesn't have to block this one.
I was digging into it a bit just now and the insertText just assumes you want to scroll to the end of the inserted text.

@SushantBansal-tech
Copy link
Author

@Stefterv I apologize for my previous changes .Is there any alternative approach or any solution we can work together on this

Hard disagree sorry! If we patch every bug with hacky solutions like this we will head into unmaintainable code really soon. This can be a separate issue and doesn't have to block this one. I was digging into it a bit just now and the insertText just assumes you want to scroll to the end of the inserted text.

@SableRaf
Copy link
Collaborator

SableRaf commented Apr 2, 2025

Hey @SushantBansal-tech no need to apologize! I really appreciate that you came up with a creative solution—you’re doing great.

The reason we try to avoid quick patches like this is that they can make the code harder to maintain over time. It’s usually better to address the root cause rather than just fixing one instance.

We don’t need to solve it in this PR—we will open a separate issue to look into it. Thanks again for your efforts.

@SushantBansal-tech
Copy link
Author

@SableRaf @Stefterv May I remove this code snippet from my branch

JEditTextArea textArea = newEditor.getTextArea();
            textArea.setCaretPosition(0);
            textArea.scrollTo(0, 0);

@SushantBansal-tech
Copy link
Author

@SableRaf @Stefterv Can you please tell me when this PR will be merged? If there is sone other problems I will solve it keeping in mid to maintain the code structure.

@SableRaf
Copy link
Collaborator

SableRaf commented Apr 2, 2025

Hi @SushantBansal-tech,

Unfortunately, testing revealed an incompatibility with Processing modes that cannot be resolved with the current approach. Addressing this will require deeper re-architecturing that is beyond the scope of this PR. As a result, we will not be merging it. Note that this decision is not a reflection on the quality of your contribution.

Your efforts are much appreciated and will be taken into consideration when reviewing your GSoC application, regardless of the merge status of this PR. As a reminder, having a merged PR is not a requirement for a successful application. It’s more important to show thoughtfulness in your proposal and demonstrate your understanding of the project.

Thank you for your enthusiasm and your willingness to improve Processing. Good luck with your GSoC application!

@SushantBansal-tech
Copy link
Author

@SableRaf Okay I understand , I will make the proposal with my full Efforts , And one more thing Can i work on some other issues as a part of a contributor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants