io.github.jeremgamer.editor.panels.Actions.java Source code

Java tutorial

Introduction

Here is the source code for io.github.jeremgamer.editor.panels.Actions.java

Source

/**
 *   Copyright 2014/2015 JeremGamer
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License. * 
 */

package io.github.jeremgamer.editor.panels;

import io.github.jeremgamer.editor.Editor;
import io.github.jeremgamer.editor.files.ActionSave;
import io.github.jeremgamer.editor.panels.components.ActionPanel;
import io.github.jeremgamer.editor.panels.components.ButtonPanel;
import io.github.jeremgamer.editor.panels.components.OtherPanel;
import io.github.jeremgamer.resources.images.ImageGetter;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;

import javax.imageio.ImageIO;
import javax.swing.BorderFactory;
import javax.swing.BoxLayout;
import javax.swing.DefaultListModel;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;

import org.apache.commons.io.FileUtils;
import org.apache.commons.io.filefilter.TrueFileFilter;

public class Actions extends JPanel {

    /**
     * 
     */
    private static final long serialVersionUID = 977674064141686270L;

    static JList<String> actionList = new JList<String>();
    DefaultListModel<String> data = new DefaultListModel<String>();
    boolean isOpen = false;
    @SuppressWarnings("unused")
    private JFrame frame;
    private String previousSelection;

    public Actions(final JFrame frame, final ActionPanel ap) {
        this.frame = frame;

        this.setBorder(BorderFactory.createTitledBorder(""));
        JButton add = null;
        try {
            add = new JButton(new ImageIcon(ImageIO.read(ImageGetter.class.getResource("add.png"))));
        } catch (IOException e) {
            e.printStackTrace();
        }
        add.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent event) {
                try {
                    JOptionPane jop = new JOptionPane();
                    @SuppressWarnings("static-access")
                    String name = jop.showInputDialog(null, "Nommez l'action :", "Crer une action",
                            JOptionPane.QUESTION_MESSAGE);

                    if (name != null) {
                        for (int i = 0; i < data.getSize(); i++) {
                            if (data.get(i).equals(name)) {
                                name += "1";
                            }
                        }
                        data.addElement(name);
                        new ActionSave(name);
                        OtherPanel.updateLists();
                        ButtonPanel.updateLists();
                        ActionPanel.updateLists();
                    }
                } catch (IOException e) {
                    e.printStackTrace();
                }

            }

        });

        JButton remove = null;
        try {
            remove = new JButton(new ImageIcon(ImageIO.read(ImageGetter.class.getResource("remove.png"))));
        } catch (IOException e) {
            e.printStackTrace();
        }
        remove.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent event) {
                try {
                    if (actionList.getSelectedValue() != null) {
                        File file = new File("projects/" + Editor.getProjectName() + "/actions/"
                                + actionList.getSelectedValue() + ".rbd");
                        JOptionPane jop = new JOptionPane();
                        @SuppressWarnings("static-access")
                        int option = jop.showConfirmDialog(null,
                                "tes-vous sr de vouloir supprimer cette action?", "Avertissement",
                                JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE);

                        if (option == JOptionPane.OK_OPTION) {
                            if (actionList.getSelectedValue().equals(ap.getFileName())) {
                                ap.setFileName("");
                            }
                            ap.hide();
                            file.delete();
                            data.remove(actionList.getSelectedIndex());
                            OtherPanel.updateLists();
                            ButtonPanel.updateLists();
                        }
                    }
                } catch (NullPointerException npe) {
                    npe.printStackTrace();
                }

            }

        });

        JPanel buttons = new JPanel();
        buttons.setLayout(new BoxLayout(buttons, BoxLayout.LINE_AXIS));
        buttons.add(add);
        buttons.add(remove);

        updateList();
        actionList.addMouseListener(new MouseAdapter() {
            @SuppressWarnings("unchecked")
            public void mouseClicked(MouseEvent evt) {
                JList<String> list = (JList<String>) evt.getSource();
                if (evt.getClickCount() == 2) {
                    int index = list.locationToIndex(evt.getPoint());
                    if (isOpen == false) {
                        ap.show();
                        ap.load(new File("projects/" + Editor.getProjectName() + "/actions/"
                                + list.getModel().getElementAt(index) + ".rbd"));
                        previousSelection = list.getSelectedValue();
                        isOpen = true;
                    } else {
                        try {
                            if (previousSelection.equals(list.getModel().getElementAt(index))) {
                                ap.hide();
                                previousSelection = list.getSelectedValue();
                                list.clearSelection();
                                isOpen = false;
                            } else {
                                ap.hideThenShow();
                                previousSelection = list.getSelectedValue();
                                ap.load(new File("projects/" + Editor.getProjectName() + "/actions/"
                                        + list.getModel().getElementAt(index) + ".rbd"));
                            }
                        } catch (NullPointerException npe) {
                            ap.hide();
                            list.clearSelection();
                        }
                    }
                } else if (evt.getClickCount() == 3) {
                    int index = list.locationToIndex(evt.getPoint());
                    if (isOpen == false) {
                        ap.show();
                        ap.load(new File("projects/" + Editor.getProjectName() + "/actions/"
                                + list.getModel().getElementAt(index) + ".rbd"));
                        previousSelection = list.getSelectedValue();
                        isOpen = true;
                    } else {
                        try {
                            if (previousSelection.equals(list.getModel().getElementAt(index))) {
                                ap.hide();
                                previousSelection = list.getSelectedValue();
                                list.clearSelection();
                                isOpen = false;
                            } else {
                                ap.hideThenShow();
                                previousSelection = list.getSelectedValue();
                                ap.load(new File("projects/" + Editor.getProjectName() + "/actions/"
                                        + list.getModel().getElementAt(index) + ".rbd"));
                            }
                        } catch (NullPointerException npe) {
                            ap.hide();
                            list.clearSelection();
                        }
                    }
                }
            }
        });
        JScrollPane listPane = new JScrollPane(actionList);
        listPane.getVerticalScrollBar().setUnitIncrement(Editor.SCROLL_SPEED);
        this.setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
        this.add(buttons);
        this.add(listPane);
        OtherPanel.updateLists();
    }

    public void clearSelection() {
        actionList.clearSelection();
    }

    protected void updateList() {
        data.clear();
        File dir = new File("projects/" + Editor.getProjectName() + "/actions");
        if (!dir.exists()) {
            dir.mkdirs();
        }
        for (File file : FileUtils.listFiles(dir, TrueFileFilter.INSTANCE, TrueFileFilter.INSTANCE)) {
            data.addElement(file.getName().replace(".rbd", ""));
        }
        actionList.setModel(data);
    }

    public static String[] getActions() {
        ArrayList<String> list = new ArrayList<String>();
        for (int i = 0; i < actionList.getModel().getSize(); i++) {
            list.add(actionList.getModel().getElementAt(i));
        }
        return list.toArray(new String[0]);
    }

}