mirror of
https://github.com/crskycode/GARbro.git
synced 2026-06-06 05:38:48 +08:00
bunch of stuff.
This commit is contained in:
@@ -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.16.40")]
|
||||
[assembly: AssemblyFileVersion ("1.0.16.40")]
|
||||
[assembly: AssemblyVersion ("1.0.16.42")]
|
||||
[assembly: AssemblyFileVersion ("1.0.16.42")]
|
||||
|
||||
@@ -35,6 +35,11 @@ namespace GameRes.Formats.RPGMaker
|
||||
public override uint Signature { get { return 0x4D475052; } } // 'RPGMV'
|
||||
public override bool CanWrite { get { return false; } }
|
||||
|
||||
public RpgmvoAudio ()
|
||||
{
|
||||
Extensions = new[] { "rpgmvo", "ogg_" };
|
||||
}
|
||||
|
||||
public override SoundInput TryOpen (IBinaryStream file)
|
||||
{
|
||||
var header = file.ReadHeader (0x14);
|
||||
|
||||
@@ -44,6 +44,11 @@ namespace GameRes.Formats.RPGMaker
|
||||
public override string Description { get { return "RPG Maker engine image format"; } }
|
||||
public override uint Signature { get { return 0x4D475052; } } // 'RPGMV'
|
||||
|
||||
public RpgmvpFormat ()
|
||||
{
|
||||
Extensions = new string[] { "rpgmvp", "png_" };
|
||||
}
|
||||
|
||||
public override ImageMetaData ReadMetaData (IBinaryStream file)
|
||||
{
|
||||
var header = file.ReadHeader (0x14);
|
||||
@@ -149,6 +154,8 @@ namespace GameRes.Formats.RPGMaker
|
||||
var dir_name = Path.GetDirectoryName (filename);
|
||||
yield return Path.Combine (dir_name, @"..\..\data\System.json");
|
||||
yield return Path.Combine (dir_name, @"..\..\..\www\data\System.json");
|
||||
yield return Path.Combine (dir_name, @"..\..\..\data\System.json");
|
||||
yield return Path.Combine (dir_name, @"..\..\..\..\data\System.json");
|
||||
yield return Path.Combine (dir_name, @"..\data\System.json");
|
||||
yield return Path.Combine (dir_name, @"data\System.json");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user