mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-19 14:38:07 +00:00
Merge origin/master
This commit is contained in:
@@ -956,7 +956,8 @@ public final class SWF implements SWFContainerItem, Timelined {
|
||||
* Constructs an empty SWF
|
||||
*/
|
||||
public SWF() {
|
||||
|
||||
version = SWF.DEFAULT_VERSION;
|
||||
displayRect = new RECT(0, 1, 0, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1099,7 +1100,7 @@ public final class SWF implements SWFContainerItem, Timelined {
|
||||
}
|
||||
}
|
||||
|
||||
getASMs(true); // Add scriptNames to ASMs
|
||||
getASMs(true); // Add scriptNames to ASMs
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -60,16 +60,18 @@ public class BinaryDataExporter {
|
||||
int currentIndex = 1;
|
||||
for (final Tag t : tags) {
|
||||
if (t instanceof DefineBinaryDataTag) {
|
||||
DefineBinaryDataTag bdt = (DefineBinaryDataTag) t;
|
||||
if (evl != null) {
|
||||
evl.handleExportingEvent("binarydata", currentIndex, count, t.getName());
|
||||
}
|
||||
|
||||
int characterID = ((DefineBinaryDataTag) t).getCharacterId();
|
||||
int characterID = bdt.getCharacterId();
|
||||
|
||||
final File file = new File(outdir + File.separator + characterID + ".bin");
|
||||
String ext = bdt.innerSwf == null ? ".bin" : ".swf";
|
||||
final File file = new File(outdir + File.separator + characterID + ext);
|
||||
new RetryTask(() -> {
|
||||
try (OutputStream fos = new BufferedOutputStream(new FileOutputStream(file))) {
|
||||
fos.write(((DefineBinaryDataTag) t).binaryData.getRangeData());
|
||||
fos.write(bdt.binaryData.getRangeData());
|
||||
}
|
||||
}, handler).run();
|
||||
|
||||
|
||||
@@ -400,7 +400,7 @@ public abstract class Tag implements NeedsCharacters, Exportable, Serializable {
|
||||
* @throws IOException
|
||||
*/
|
||||
public void writeTag(SWFOutputStream sos) throws IOException {
|
||||
if (isModified()) {
|
||||
if (Configuration.debugCopy.get() || isModified()) {
|
||||
byte[] newData = getData();
|
||||
byte[] newHeaderData = getHeader(newData.length);
|
||||
sos.write(newHeaderData);
|
||||
@@ -463,16 +463,9 @@ public abstract class Tag implements NeedsCharacters, Exportable, Serializable {
|
||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||
OutputStream os = baos;
|
||||
if (Configuration.debugCopy.get()) {
|
||||
// todo: honfika: why only the following tags?
|
||||
if (this instanceof DefineSpriteTag
|
||||
|| this instanceof DefineButtonTag || this instanceof DefineButton2Tag
|
||||
|| this instanceof DefineFont3Tag
|
||||
|| this instanceof DoABCTag || this instanceof DoABC2Tag
|
||||
|| this instanceof PlaceObject2Tag || this instanceof PlaceObject3Tag || this instanceof PlaceObject4Tag) {
|
||||
byte[] originalData = getOriginalData();
|
||||
if (originalData != null) {
|
||||
os = new CopyOutputStream(os, new ByteArrayInputStream(getOriginalData()));
|
||||
}
|
||||
byte[] originalData = getOriginalData();
|
||||
if (originalData != null) {
|
||||
os = new CopyOutputStream(os, new ByteArrayInputStream(getOriginalData()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -107,7 +107,7 @@ public abstract class StaticTextTag extends TextTag {
|
||||
for (TEXTRECORD tr : textRecords) {
|
||||
for (GLYPHENTRY ge : tr.glyphEntries) {
|
||||
glyphBits = SWFOutputStream.enlargeBitCountU(glyphBits, ge.glyphIndex);
|
||||
advanceBits = SWFOutputStream.enlargeBitCountS(advanceBits, ge.glyphAdvance);
|
||||
advanceBits = SWFOutputStream.enlargeBitCountU(advanceBits, ge.glyphAdvance);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -19,6 +19,7 @@ package com.jpexs.decompiler.flash;
|
||||
import com.jpexs.decompiler.flash.configuration.Configuration;
|
||||
import com.jpexs.decompiler.flash.exporters.modes.ScriptExportMode;
|
||||
import com.jpexs.decompiler.flash.exporters.settings.ScriptExportSettings;
|
||||
import java.io.BufferedInputStream;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.util.logging.Handler;
|
||||
@@ -90,7 +91,7 @@ public class ExportTest extends FileTestBase {
|
||||
public void testDecompile(String filePath, ScriptExportMode exportMode) {
|
||||
try {
|
||||
File f = new File(filePath);
|
||||
SWF swf = new SWF(new FileInputStream(filePath), false);
|
||||
SWF swf = new SWF(new BufferedInputStream(new FileInputStream(filePath)), false);
|
||||
String folderName = exportMode == ScriptExportMode.AS ? "output" : "outputp";
|
||||
File fdir = new File(TESTDATADIR + File.separator + folderName + File.separator + f.getName());
|
||||
fdir.mkdirs();
|
||||
|
||||
@@ -0,0 +1,156 @@
|
||||
/*
|
||||
* Copyright (C) 2010-2015 JPEXS, All rights reserved.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 3.0 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library.
|
||||
*/
|
||||
package com.jpexs.decompiler.flash;
|
||||
|
||||
import com.jpexs.decompiler.flash.abc.NotSameException;
|
||||
import com.jpexs.decompiler.flash.configuration.Configuration;
|
||||
import com.jpexs.decompiler.flash.exporters.swf.SwfXmlExporter;
|
||||
import com.jpexs.decompiler.flash.importers.SwfXmlImporter;
|
||||
import com.jpexs.decompiler.flash.tags.DefineSpriteTag;
|
||||
import com.jpexs.decompiler.flash.tags.Tag;
|
||||
import com.jpexs.decompiler.flash.tags.base.FontTag;
|
||||
import com.jpexs.helpers.Helper;
|
||||
import java.io.BufferedInputStream;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.util.logging.Handler;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.LogRecord;
|
||||
import java.util.logging.Logger;
|
||||
import static org.testng.Assert.fail;
|
||||
import org.testng.annotations.AfterClass;
|
||||
import org.testng.annotations.BeforeClass;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class SwfXmlExportImportTest extends FileTestBase {
|
||||
|
||||
@BeforeClass
|
||||
public void init() {
|
||||
Configuration.autoDeobfuscate.set(false);
|
||||
Configuration.debugCopy.set(false);
|
||||
}
|
||||
|
||||
public static final String TESTDATADIR = "testdata/decompile";
|
||||
|
||||
public static Handler loggerHandler;
|
||||
|
||||
@BeforeClass
|
||||
public void addLogger() {
|
||||
Logger logger = Logger.getLogger("");
|
||||
loggerHandler = new Handler() {
|
||||
@Override
|
||||
public void publish(LogRecord record) {
|
||||
if (record.getLevel() == Level.SEVERE) {
|
||||
fail("Error during decompilation", record.getThrown());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void flush() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() throws SecurityException {
|
||||
}
|
||||
};
|
||||
|
||||
logger.addHandler(loggerHandler);
|
||||
}
|
||||
|
||||
@AfterClass
|
||||
public void removeLogger() {
|
||||
if (loggerHandler != null) {
|
||||
Logger logger = Logger.getLogger("");
|
||||
logger.removeHandler(loggerHandler);
|
||||
}
|
||||
}
|
||||
|
||||
@Test(dataProvider = "provideFiles")
|
||||
public void testExportImportXml(String filePath) {
|
||||
try {
|
||||
File f = new File(filePath);
|
||||
SWF swf = new SWF(new BufferedInputStream(new FileInputStream(filePath)), false);
|
||||
String folderName = "xml";
|
||||
File fdir = new File(TESTDATADIR + File.separator + folderName + File.separator + f.getName());
|
||||
fdir.mkdirs();
|
||||
|
||||
File outFile = new File(fdir + File.separator + Helper.makeFileName("swf.xml"));
|
||||
new SwfXmlExporter().exportXml(swf, outFile);
|
||||
String xml = Helper.readTextFile(outFile.getPath());
|
||||
|
||||
SWF swf2 = new SWF();
|
||||
new SwfXmlImporter().importSwf(swf2, xml);
|
||||
|
||||
if (swf.tags.size() != swf2.tags.size()) {
|
||||
throw new NotSameException(0);
|
||||
}
|
||||
|
||||
for (int i = 0; i < swf.tags.size(); i++) {
|
||||
Tag oldTag = swf.tags.get(i);
|
||||
Tag newTag = swf2.tags.get(i);
|
||||
if (oldTag.getClass() != newTag.getClass()) {
|
||||
throw new NotSameException(0);
|
||||
}
|
||||
|
||||
if (oldTag instanceof DefineSpriteTag) {
|
||||
DefineSpriteTag oldSprite = (DefineSpriteTag) oldTag;
|
||||
DefineSpriteTag newSprite = (DefineSpriteTag) newTag;
|
||||
if (oldSprite.subTags.size() != newSprite.subTags.size()) {
|
||||
throw new NotSameException(0);
|
||||
}
|
||||
|
||||
for (int k = 0; k < oldSprite.subTags.size(); k++) {
|
||||
compareTags(oldSprite.subTags.get(k), newSprite.subTags.get(k));
|
||||
}
|
||||
} else if (!(oldTag instanceof FontTag)) {
|
||||
compareTags(oldTag, newTag);
|
||||
}
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
fail("Exception during SWF xml export/import: " + filePath + " " + ex.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
private void compareTags(Tag tag1, Tag tag2) {
|
||||
if (tag1.getClass() != tag2.getClass()) {
|
||||
throw new NotSameException(0);
|
||||
}
|
||||
|
||||
byte[] data1 = tag1.getData();
|
||||
byte[] data2 = tag2.getData();
|
||||
|
||||
int length = Math.min(data1.length, data2.length);
|
||||
for (int j = 0; j < length; j++) {
|
||||
if (data1[j] != data2[j]) {
|
||||
throw new NotSameException(j);
|
||||
}
|
||||
}
|
||||
|
||||
if (data1.length != data2.length) {
|
||||
throw new NotSameException(length);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getTestDataDirs() {
|
||||
return new String[]{TESTDATADIR, FREE_ACTIONSCRIPT_AS2, FREE_ACTIONSCRIPT_AS3};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user