-
Notifications
You must be signed in to change notification settings - Fork 5
/
devtools.bsh
170 lines (147 loc) · 4.28 KB
/
devtools.bsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import javax.swing.*;
import bsh.Interpreter;
import bsh.BshClassManager;
import bsh.ClassPathException;
import bsh.util.JConsole;
import bsh.util.NameCompletionTable;
import javax.swing.JFrame;
import it.alcacoop.fibs.CommandDispatcher.Command;
DEBUG = null;
jf = null;
opened_filepath = null;
doNewFile() {
opened_filepath = null;
deveditor.setText("");
}
doOpenFile() {
fc = new JFileChooser();
fc.setCurrentDirectory(pathToFile("./data"));
returnVal = fc.showOpenDialog(jf);
filepath = fc.getSelectedFile().getAbsolutePath();
content = game.platform.readFile(filepath);
deveditor.setText(content);
opened_filepath = filepath;
}
doSaveFile() {
if (opened_filepath != null) {
game.platform.writeFile(opened_filepath, deveditor.getText());
} else {
doSaveFileAs();
}
}
doSaveFileAs() {
fc = new JFileChooser();
fc.setCurrentDirectory(pathToFile("./data"));
returnVal = fc.showSaveDialog(jf);
filepath = fc.getSelectedFile().getAbsolutePath();
game.platform.writeFile(filepath, deveditor.getText());
opened_filepath = filepath;
}
doEvalSelection() {
try {
devconsole.println("");
eval(deveditor.getSelectedText()+";\n");
} catch(e) {
devconsole.error(e);
}
}
doEvalFile() {
try {
devconsole.println("");
eval(deveditor.getText()+";\n");
} catch(e) {
devconsole.error(e);
}
}
createDevToolsWindow() {
actionPerformed(e) {
cmd = e.getActionCommand();
if(cmd.equals("Open")) {
doOpenFile();
} else if(cmd.equals("Save")) {
doSaveFile();
} else if(cmd.equals("Save As")) {
doSaveFileAs();
} else if(cmd.equals("New")) {
doNewFile();
} else if(cmd.equals("Class Browser")) {
classBrowser();
} else if(cmd.equals("Eval Selected Text")) {
doEvalSelection();
} else if(cmd.equals("Eval File")) {
doEvalFile();
}
}
menuBar = new JMenuBar();
menu = new JMenu("File");
menuBar.add(menu);
//a group of JMenuItems
menuItem = new JMenuItem("Open",
KeyEvent.VK_O);
menuItem.setAccelerator(KeyStroke.
getKeyStroke(
KeyEvent.VK_O, ActionEvent.CTRL_MASK));
menuItem.addActionListener(this);
menu.add(menuItem);
menuItem = new JMenuItem("Save",
KeyEvent.VK_S);
menuItem.setAccelerator(KeyStroke.
getKeyStroke(
KeyEvent.VK_S, ActionEvent.CTRL_MASK));
menuItem.addActionListener(this);
menu.add(menuItem);
menuItem = new JMenuItem("Save As",
KeyEvent.VK_A);
menuItem.setAccelerator(KeyStroke.
getKeyStroke(
KeyEvent.VK_S, ActionEvent.CTRL_MASK | ActionEvent.SHIFT_MASK));
menuItem.addActionListener(this);
menu.add(menuItem);
// TOOLS
menu = new JMenu("Tools");
menuBar.add(menu);
//a group of JMenuItems
menuItem = new JMenuItem("Class Browser",
KeyEvent.VK_B);
menuItem.setAccelerator(KeyStroke.
getKeyStroke(
KeyEvent.VK_B, ActionEvent.CTRL_MASK));
menuItem.addActionListener(this);
menu.add(menuItem);
menuItem = new JMenuItem("Eval Selected Text",
KeyEvent.VK_E);
menuItem.setAccelerator(KeyStroke.
getKeyStroke(
KeyEvent.VK_E, ActionEvent.CTRL_MASK));
menuItem.addActionListener(this);
menu.add(menuItem);
menuItem = new JMenuItem("Eval File",
KeyEvent.VK_B);
menuItem.setAccelerator(KeyStroke.
getKeyStroke(
KeyEvent.VK_E, ActionEvent.CTRL_MASK | ActionEvent.SHIFT_MASK));
menuItem.addActionListener(this);
menu.add(menuItem);
jf = new JFrame();
jf.setJMenuBar(menuBar);
jf.setLayout(new java.awt.BorderLayout());
jscroll = new JScrollPane(deveditor);
//Create a split pane with the two scroll panes in it.
splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT,
jscroll, devconsole);
splitPane.setOneTouchExpandable(true);
splitPane.setDividerLocation(400);
//Provide minimum sizes for the two components in the split pane
Dimension minimumSize = new Dimension(100, 50);
jscroll.setMinimumSize(minimumSize);
deveditor.setMinimumSize(minimumSize);
devconsole.setMinimumSize(minimumSize);
jf.getContentPane().add(splitPane, java.awt.BorderLayout.CENTER);
jf.setSize(400, 600);
jf.setVisible(true);
jf.show();
}
createDevToolsWindow();
send(a) {
disp.dispatch(Command.SEND_COMMAND, a);
}