diff --git a/ArcFormats/ArcFormats.csproj b/ArcFormats/ArcFormats.csproj
index 50faea71..9a792ecd 100644
--- a/ArcFormats/ArcFormats.csproj
+++ b/ArcFormats/ArcFormats.csproj
@@ -105,6 +105,7 @@
+
@@ -152,6 +153,7 @@
+
diff --git a/ArcFormats/AudioPMW.cs b/ArcFormats/AudioPMW.cs
new file mode 100644
index 00000000..702aa61b
--- /dev/null
+++ b/ArcFormats/AudioPMW.cs
@@ -0,0 +1,72 @@
+//! \file AudioPMW.cs
+//! \date Thu Apr 30 21:22:48 2015
+//! \brief ScenePlayer compressed WAV file.
+//
+// Copyright (C) 2015 by morkt
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to
+// deal in the Software without restriction, including without limitation the
+// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+// sell copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+// IN THE SOFTWARE.
+//
+
+using System.ComponentModel.Composition;
+using System.IO;
+using ZLibNet;
+
+namespace GameRes.Formats.ScenePlayer
+{
+ [Export(typeof(AudioFormat))]
+ public class PmwAudio : WaveAudio
+ {
+ public override string Tag { get { return "PMW"; } }
+ public override string Description { get { return "ScenePlayer compressed WAV audio"; } }
+ public override uint Signature { get { return 0; } }
+
+ public override SoundInput TryOpen (Stream file)
+ {
+ int first = file.ReadByte();
+ if ((first ^ 0x21) != 0x78) // doesn't look like zlib stream
+ return null;
+ file.Position = 0;
+ using (var input = new XoredStream (file, 0x21, true))
+ using (var zstream = new ZLibStream (input, CompressionMode.Decompress))
+ {
+ SoundInput sound = null;
+ var wav = new MemoryStream();
+ try
+ {
+ zstream.CopyTo (wav);
+ wav.Position = 0;
+ sound = new WaveInput (wav);
+ }
+ finally
+ {
+ if (null == sound)
+ wav.Dispose();
+ }
+ return sound;
+ }
+ }
+
+ public override void Write (SoundInput source, Stream output)
+ {
+ using (var wav = new XoredStream (output, 0x21, true))
+ using (var zstream = new ZLibStream (wav, CompressionMode.Compress, CompressionLevel.Level9))
+ base.Write (source, zstream);
+ }
+ }
+}
diff --git a/ArcFormats/ImagePMP.cs b/ArcFormats/ImagePMP.cs
new file mode 100644
index 00000000..8c0af7f1
--- /dev/null
+++ b/ArcFormats/ImagePMP.cs
@@ -0,0 +1,163 @@
+//! \file ImagePMP.cs
+//! \date Thu Apr 30 20:39:26 2015
+//! \brief ScenePlayer compressed bitmap.
+//
+// Copyright (C) 2015 by morkt
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to
+// deal in the Software without restriction, including without limitation the
+// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+// sell copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+// IN THE SOFTWARE.
+//
+
+using System.ComponentModel.Composition;
+using System.IO;
+using System.Text;
+using GameRes.Utility;
+using ZLibNet;
+
+namespace GameRes.Formats.ScenePlayer
+{
+ [Export(typeof(ImageFormat))]
+ public class PmpFormat : BmpFormat
+ {
+ public override string Tag { get { return "PMP"; } }
+ public override string Description { get { return "ScenePlayer compressed bitmap format"; } }
+ public override uint Signature { get { return 0; } }
+
+ public override void Write (Stream file, ImageData image)
+ {
+ using (var output = new XoredStream (file, 0x21, true))
+ using (var zstream = new ZLibStream (output, CompressionMode.Compress, CompressionLevel.Level9))
+ base.Write (zstream, image);
+ }
+
+ public override ImageMetaData ReadMetaData (Stream stream)
+ {
+ int first = stream.ReadByte();
+ if ((first ^ 0x21) != 0x78) // doesn't look like zlib stream
+ return null;
+ stream.Position = 0;
+ using (var input = new XoredStream (stream, 0x21, true))
+ using (var zstream = new ZLibStream (input, CompressionMode.Decompress))
+ return base.ReadMetaData (zstream);
+ }
+
+ public override ImageData Read (Stream stream, ImageMetaData info)
+ {
+ using (var input = new XoredStream (stream, 0x21, true))
+ using (var zstream = new ZLibStream (input, CompressionMode.Decompress))
+ return base.Read (zstream, info);
+ }
+ }
+
+ public class XoredStream : Stream
+ {
+ private Stream m_stream;
+ private byte m_key;
+ private bool m_should_dispose;
+
+ public Stream BaseStream { get { return m_stream; } }
+
+ public override bool CanRead { get { return m_stream.CanRead; } }
+ public override bool CanSeek { get { return m_stream.CanSeek; } }
+ public override bool CanWrite { get { return m_stream.CanWrite; } }
+ public override long Length { get { return m_stream.Length; } }
+ public override long Position
+ {
+ get { return m_stream.Position; }
+ set { m_stream.Position = value; }
+ }
+
+ public XoredStream (Stream stream, byte key, bool leave_open = false)
+ {
+ m_stream = stream;
+ m_key = key;
+ m_should_dispose = !leave_open;
+ }
+
+ #region System.IO.Stream methods
+ public override void Flush()
+ {
+ m_stream.Flush();
+ }
+
+ public override long Seek (long offset, SeekOrigin origin)
+ {
+ return m_stream.Seek (offset, origin);
+ }
+
+ public override void SetLength (long length)
+ {
+ m_stream.SetLength (length);
+ }
+
+ public override int Read (byte[] buffer, int offset, int count)
+ {
+ int read = m_stream.Read (buffer, offset, count);
+ for (int i = 0; i < read; ++i)
+ {
+ buffer[offset+i] ^= m_key;
+ }
+ return read;
+ }
+
+ public override int ReadByte ()
+ {
+ int b = m_stream.ReadByte();
+ if (-1 != b)
+ {
+ b ^= m_key;
+ }
+ return b;
+ }
+
+ byte[] write_buf;
+
+ public override void Write (byte[] buffer, int offset, int count)
+ {
+ if (null == write_buf || write_buf.Length < count)
+ write_buf = new byte[count];
+ for (int i = 0; i < count; ++i)
+ {
+ write_buf[i] = (byte)(buffer[offset+i] ^ m_key);
+ }
+ m_stream.Write (write_buf, 0, count);
+ }
+
+ public override void WriteByte (byte value)
+ {
+ m_stream.WriteByte ((byte)(value ^ m_key));
+ }
+ #endregion
+
+ #region IDisposable Members
+ bool disposed = false;
+ protected override void Dispose (bool disposing)
+ {
+ if (!disposed)
+ {
+ if (disposing && m_should_dispose)
+ {
+ m_stream.Dispose();
+ }
+ disposed = true;
+ base.Dispose (disposing);
+ }
+ }
+ #endregion
+ }
+}
diff --git a/ArcFormats/Properties/AssemblyInfo.cs b/ArcFormats/Properties/AssemblyInfo.cs
index 28ba47e2..877caab0 100644
--- a/ArcFormats/Properties/AssemblyInfo.cs
+++ b/ArcFormats/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion ("1.0.4.44")]
-[assembly: AssemblyFileVersion ("1.0.4.44")]
+[assembly: AssemblyVersion ("1.0.4.45")]
+[assembly: AssemblyFileVersion ("1.0.4.45")]