@Override
public void resume() {
}
}, "", 0, 0, false);
TiledMapPacker packer = new TiledMapPacker();
inputDir = new File(m_jtfInput.getText());
outputDir = new File(m_jtfOutput.getText());
if (!inputDir.exists()) {
throw new RuntimeException("Input directory does not exist");
}
try {
packer.processMap(inputDir, outputDir, settings);
} catch (IOException ex) {
Logger.getLogger(JPacker.class.getName()).log(Level.SEVERE, null, ex);
}