Added: #2360 SOL file (Flash Local Shared Object - flash cookie) editor

This commit is contained in:
Jindra Petřík
2024-11-10 19:50:55 +01:00
parent 0b776dd06a
commit 3712c3be45
59 changed files with 3842 additions and 150 deletions
@@ -50,6 +50,7 @@ import com.jpexs.decompiler.flash.gui.debugger.DebugAdapter;
import com.jpexs.decompiler.flash.gui.debugger.DebugLoaderDataModified;
import com.jpexs.decompiler.flash.gui.debugger.DebuggerTools;
import com.jpexs.decompiler.flash.gui.pipes.FirstInstance;
import com.jpexs.decompiler.flash.gui.soleditor.SolEditorFrame;
import com.jpexs.decompiler.flash.helpers.SWFDecompilerPlugin;
import com.jpexs.decompiler.flash.tags.DefineBinaryDataTag;
import com.jpexs.decompiler.flash.tags.DefineVideoStreamTag;
@@ -3424,4 +3425,9 @@ public class Main {
}
return null;
}
public static void openSolEditor() {
SolEditorFrame solEdit = new SolEditorFrame();
solEdit.setVisible(true);
}
}
@@ -859,6 +859,10 @@ public abstract class MainFrameMenu implements MenuBuilder {
}
Main.advancedSettings();
}
protected void solEditorActionPerformed(ActionEvent evt) {
Main.openSolEditor();
}
protected void searchMemoryActionPerformed(ActionEvent evt) {
Main.loadFromMemory();
@@ -1332,6 +1336,8 @@ public abstract class MainFrameMenu implements MenuBuilder {
addMenuItem("/tools/replace", translate("menu.tools.replace"), "replace32", this::replaceActionPerformed, PRIORITY_TOP, null, true, null, false);
addMenuItem("/tools/abcExplorer", translate("menu.tools.abcexplorer"), "abcexplorer32", this::abcExplorerActionPerformed, PRIORITY_TOP, null, true, null, false);
addMenuItem("/tools/gotoDocumentClass", translate("menu.tools.gotoDocumentClass"), "gotomainclass32", this::gotoDocumentClassActionPerformed, PRIORITY_TOP, null, true, null, false);
addMenuItem("/tools/solEditor", translate("menu.tools.solEditor"), "soleditor32", this::solEditorActionPerformed, PRIORITY_TOP, null, true, null, false);
if (Platform.isWindows()) {
addMenuItem("/tools/searchMemory", translate("menu.tools.searchMemory"), "loadmemory16", this::searchMemoryActionPerformed, PRIORITY_MEDIUM, null, true, null, false);
}
@@ -1351,7 +1357,6 @@ public abstract class MainFrameMenu implements MenuBuilder {
//addMenuItem("/tools/debugger/debuggerInjectLoader", "Inject Loader", "debuggerreplace16", this::debuggerInjectLoader, PRIORITY_MEDIUM, null, true,false);
addMenuItem("/tools/debugger/debuggerShowLog", translate("menu.debugger.showlog"), "debuggerlog16", this::debuggerShowLogActionPerformed, PRIORITY_MEDIUM, null, true, null,false);
finishMenu("/tools/debugger");*/
addMenuItem("/tools/gotoDocumentClass", translate("menu.tools.gotoDocumentClass"), "gotomainclass32", this::gotoDocumentClassActionPerformed, PRIORITY_TOP, null, true, null, false);
finishMenu("/tools");
//Settings
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

@@ -547,4 +547,8 @@ config.name.lastSessionEasySwf = Last Simple editor session file
config.description.lastSessionEasySwf = Contains the selected SWF from the last session in Simple editor
config.name.maxScriptLineLength = Maximum script line length
config.description.maxScriptLineLength = Maximum line length in the script editor before line wrapping occurs. 0 = unlimited. On linux there might be problems on displaying very large lines so that's why it's limited by default.
config.description.maxScriptLineLength = Maximum line length in the script editor before line wrapping occurs. 0 = unlimited. On linux there might be problems on displaying very large lines so that's why it's limited by default.
#after 21.1.3
config.name.lastSolEditorDirectory = Last Sol editor directory
config.description.lastSolEditorDirectory = Directory where last SOL file was opened/saved
@@ -1010,4 +1010,7 @@ contextmenu.convertPlaceObjectType = Convert place object type
work.decompiling.allScripts.ucf = Decompiling all scripts to get uninitialized class fields. This may take a while
#after 21.1.1
menu.file.view.easy = Simple editor
menu.file.view.easy = Simple editor
#after 21.1.3
menu.tools.solEditor = Sol editor
@@ -0,0 +1,20 @@
dialog.title = Sol editor
button.new = New
button.open = Open...
button.save = Save
button.saveAs = Save as...
filter.sol = SOL files (*.sol)
error.cannotOpen = Cannot open file.
error.parse = Parse error. %reason% on line %line%.
info.saved = File successfully saved.
filename = File name:
amfVersion = AMF version:
warning.loseChanges = Current file is modified. Do you really want to lose changes?
untitled = Untitled
@@ -0,0 +1,313 @@
/*
* Copyright (C) 2010-2024 JPEXS
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.jpexs.decompiler.flash.gui.soleditor;
import com.jpexs.decompiler.flash.configuration.Configuration;
import com.jpexs.decompiler.flash.exporters.amf.amf0.Amf0Exporter;
import com.jpexs.decompiler.flash.exporters.amf.amf3.Amf3Exporter;
import com.jpexs.decompiler.flash.gui.AppFrame;
import com.jpexs.decompiler.flash.gui.AppStrings;
import com.jpexs.decompiler.flash.gui.FasterScrollPane;
import com.jpexs.decompiler.flash.gui.View;
import com.jpexs.decompiler.flash.gui.ViewMessages;
import com.jpexs.decompiler.flash.gui.editor.LineMarkedEditorPane;
import com.jpexs.decompiler.flash.importers.amf.amf0.Amf0Importer;
import com.jpexs.decompiler.flash.importers.amf.amf3.Amf3Importer;
import com.jpexs.decompiler.flash.importers.amf.amf3.Amf3ParseException;
import com.jpexs.decompiler.flash.sol.SolFile;
import com.jpexs.helpers.Helper;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Map;
import javax.swing.Box;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFileChooser;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import javax.swing.filechooser.FileFilter;
/**
*
* @author JPEXS
*/
public class SolEditorFrame extends AppFrame {
private File openedFile = null;
private boolean modified = false;
private final JButton saveAsButton;
private final JButton saveButton;
private JTextField fileNameField = new JTextField(30);
private JComboBox<Integer> amfVersionComboBox = new JComboBox<>();
private JLabel amfVersionLabel = new JLabel();
private LineMarkedEditorPane editor = new LineMarkedEditorPane();
private final DocumentListener modifiedListener;
public SolEditorFrame() {
setDefaultCloseOperation(HIDE_ON_CLOSE);
setTitle(translate("dialog.title"));
modifiedListener = new DocumentListener() {
@Override
public void insertUpdate(DocumentEvent e) {
setModified();
}
@Override
public void removeUpdate(DocumentEvent e) {
setModified();
}
@Override
public void changedUpdate(DocumentEvent e) {
setModified();
}
private void setModified() {
if (modified) {
return;
}
modified = true;
updateTitle();
}
};
Container cnt = getContentPane();
cnt.setLayout(new BorderLayout());
JPanel topPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
JButton newButton = new JButton(translate("button.new"), View.getIcon("newswf16"));
newButton.addActionListener(this::newActionPerformed);
JButton openButton = new JButton(translate("button.open"), View.getIcon("open16"));
openButton.addActionListener(this::openActionPerformed);
saveButton = new JButton(translate("button.save"), View.getIcon("save16"));
saveButton.addActionListener(this::saveActionPerformed);
saveButton.setEnabled(false);
saveAsButton = new JButton(translate("button.saveAs"), View.getIcon("saveas16"));
saveAsButton.addActionListener(this::saveAsActionPerformed);
topPanel.add(newButton);
topPanel.add(openButton);
topPanel.add(saveButton);
topPanel.add(saveAsButton);
fileNameField.setText(translate("untitled"));
fileNameField.getDocument().addDocumentListener(modifiedListener);
DefaultComboBoxModel<Integer> amfVersionModel = new DefaultComboBoxModel<>();
amfVersionModel.addElement(0);
amfVersionModel.addElement(3);
amfVersionComboBox.setModel(amfVersionModel);
amfVersionComboBox.setSelectedIndex(1);
amfVersionLabel.setText("" + amfVersionComboBox.getSelectedItem());
amfVersionComboBox.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
amfVersionLabel.setText(amfVersionComboBox.getSelectedItem().toString());
}
});
amfVersionLabel.setVisible(false);
JPanel bottomPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
bottomPanel.add(new JLabel(translate("filename")));
bottomPanel.add(fileNameField);
bottomPanel.add(Box.createHorizontalStrut(20));
bottomPanel.add(new JLabel(translate("amfVersion")));
bottomPanel.add(amfVersionComboBox);
bottomPanel.add(amfVersionLabel);
cnt.add(new FasterScrollPane(editor), BorderLayout.CENTER);
cnt.add(topPanel, BorderLayout.NORTH);
cnt.add(bottomPanel, BorderLayout.SOUTH);
editor.setText("{\r\n\r\n}");
setSize(800, 600);
View.centerScreen(this);
View.setWindowIcon(this, "soleditor");
}
private void newActionPerformed(ActionEvent e) {
if (modified && ViewMessages.showConfirmDialog(this, translate("warning.loseChanges"), AppStrings.translate("message.warning"), JOptionPane.WARNING_MESSAGE) != JOptionPane.OK_OPTION) {
return;
}
openedFile = null;
editor.setText("{\r\n\r\n}");
modified = false;
amfVersionComboBox.setEnabled(true);
amfVersionComboBox.setSelectedItem(3);
amfVersionLabel.setVisible(false);
amfVersionComboBox.setVisible(true);
updateTitle();
fileNameField.setText(translate("untitled"));
}
private void openActionPerformed(ActionEvent e) {
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileHidingEnabled(false);
fileChooser.setFileFilter(new FileFilter() {
@Override
public boolean accept(File f) {
return f.isDirectory() || f.getName().toLowerCase().endsWith(".sol");
}
@Override
public String getDescription() {
return translate("filter.sol");
}
});
fileChooser.setCurrentDirectory(new File(Configuration.lastSolEditorDirectory.get()));
if (fileChooser.showOpenDialog(this) != JFileChooser.APPROVE_OPTION) {
return;
}
File newFile = Helper.fixDialogFile(fileChooser.getSelectedFile());
try (FileInputStream fis = new FileInputStream(newFile)) {
SolFile solFile = new SolFile(fis);
Map<String, Object> values = solFile.getAmfValues();
String newFileName = solFile.getFileName();
int newAmfVersion = solFile.getAmfVersion();
switch (newAmfVersion) {
case 0:
editor.setText(Amf0Exporter.amfMapToString(values, 0, "\r\n"));
break;
case 3:
editor.setText(Amf3Exporter.amfMapToString(values, " ", "\r\n", 0));
break;
default:
throw new IllegalArgumentException("No AMF version found");
}
fileNameField.setText(newFileName);
amfVersionComboBox.setSelectedItem(newAmfVersion);
amfVersionLabel.setText("" + newAmfVersion);
} catch (IOException | IllegalArgumentException ex) {
ViewMessages.showMessageDialog(this, translate("error.cannotOpen") + " " + ex.getLocalizedMessage(), AppStrings.translate("error"), JOptionPane.ERROR_MESSAGE);
return;
}
modified = false;
openedFile = newFile;
updateTitle();
Configuration.lastSolEditorDirectory.set(newFile.getParentFile().getAbsolutePath());
saveButton.setEnabled(true);
saveAsButton.setEnabled(true);
amfVersionComboBox.setEnabled(false);
amfVersionComboBox.setVisible(false);
amfVersionLabel.setVisible(true);
}
private void updateTitle() {
setTitle(translate("dialog.title") + (openedFile != null ? " - " + (modified ? "*" : "") + openedFile.getAbsolutePath() : ""));
}
private void saveActionPerformed(ActionEvent e) {
if (openedFile == null) {
saveAsActionPerformed(e);
return;
}
saveAs(openedFile);
}
private void saveAs(File saveFile) {
try {
String amfText = editor.getText();
String fileName = fileNameField.getText();
int amfVersion = (Integer) amfVersionComboBox.getSelectedItem();
Map<String, Object> amfValues;
switch (amfVersion) {
case 0:
Amf0Importer amf0Importer = new Amf0Importer();
amfValues = amf0Importer.stringToAmfMap(amfText);
break;
case 3:
Amf3Importer amf3Importer = new Amf3Importer();
amfValues = amf3Importer.stringToAmfMap(amfText);
break;
default:
return; //should not happen
}
try (FileOutputStream fos = new FileOutputStream(saveFile)) {
SolFile solFile = new SolFile(fileName, amfVersion, amfValues);
solFile.writeTo(fos);
}
openedFile = saveFile;
Configuration.lastSolEditorDirectory.set(saveFile.getParentFile().getAbsolutePath());
modified = false;
updateTitle();
amfVersionComboBox.setEnabled(false);
amfVersionComboBox.setVisible(false);
amfVersionLabel.setVisible(true);
ViewMessages.showMessageDialog(this, translate("info.saved"), AppStrings.translate("message.info"), JOptionPane.INFORMATION_MESSAGE);
} catch (Amf3ParseException ex) {
editor.gotoLine((int) ex.line);
editor.markError();
ViewMessages.showMessageDialog(this, translate("error.parse").replace("%reason%", ex.text).replace("%line%", "" + ex.line), AppStrings.translate("error"), JOptionPane.ERROR_MESSAGE);
} catch (IOException ex) {
ViewMessages.showMessageDialog(this, ex.getLocalizedMessage(), AppStrings.translate("error"), JOptionPane.ERROR_MESSAGE);
}
}
private void saveAsActionPerformed(ActionEvent e) {
JFileChooser fileChooser = new JFileChooser();
fileChooser.setFileHidingEnabled(false);
fileChooser.setFileFilter(new FileFilter() {
@Override
public boolean accept(File f) {
return f.isDirectory() || f.getName().toLowerCase().endsWith(".sol");
}
@Override
public String getDescription() {
return translate("filter.sol");
}
});
fileChooser.setCurrentDirectory(new File(Configuration.lastSolEditorDirectory.get()));
if (fileChooser.showSaveDialog(this) != JFileChooser.APPROVE_OPTION) {
return;
}
File newFile = Helper.fixDialogFile(fileChooser.getSelectedFile());
saveAs(newFile);
}
@Override
public void setVisible(boolean b) {
super.setVisible(b);
if (b) {
editor.setContentType("text/javascript");
editor.setText("{\r\n\r\n}");
editor.getDocument().addDocumentListener(modifiedListener);
}
}
}