dev_4VirtualNes #23
1
.gitignore
vendored
1
.gitignore
vendored
@ -13,3 +13,4 @@
|
||||
/AxibugEmuOnline.Client/ProjectSettings/ProjectVersion.txt
|
||||
/AxibugEmuOnline.Client/ProjectSettings/AutoStreamingSettings.asset
|
||||
/AxibugEmuOnline.Client/Logs
|
||||
/virtuanessrc097-master/save
|
||||
|
@ -1,145 +0,0 @@
|
||||
using System.IO;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal abstract class Bandai : Board
|
||||
{
|
||||
private bool irq_enable;
|
||||
|
||||
private int irq_counter;
|
||||
|
||||
private Eprom eprom;
|
||||
|
||||
internal override void Initialize(IRom rom)
|
||||
{
|
||||
base.Initialize(rom);
|
||||
if (base.BoardType.ToLower().Contains("24c01"))
|
||||
{
|
||||
eprom = new Eprom(128);
|
||||
}
|
||||
else
|
||||
{
|
||||
eprom = new Eprom((base.MapperNumber == 16) ? 256 : 128);
|
||||
}
|
||||
}
|
||||
|
||||
internal override void HardReset()
|
||||
{
|
||||
base.HardReset();
|
||||
Switch16KPRG(PRG_ROM_16KB_Mask, PRGArea.AreaC000);
|
||||
irq_enable = false;
|
||||
irq_counter = 0;
|
||||
eprom.HardReset();
|
||||
}
|
||||
|
||||
internal override void WriteSRM(ref ushort address, ref byte data)
|
||||
{
|
||||
WritePRG(ref address, ref data);
|
||||
}
|
||||
|
||||
internal override void WritePRG(ref ushort address, ref byte data)
|
||||
{
|
||||
switch (address & 0xF)
|
||||
{
|
||||
case 0:
|
||||
Switch01KCHR(data, CHRArea.Area0000);
|
||||
break;
|
||||
case 1:
|
||||
Switch01KCHR(data, CHRArea.Area0400);
|
||||
break;
|
||||
case 2:
|
||||
Switch01KCHR(data, CHRArea.Area0800);
|
||||
break;
|
||||
case 3:
|
||||
Switch01KCHR(data, CHRArea.Area0C00);
|
||||
break;
|
||||
case 4:
|
||||
Switch01KCHR(data, CHRArea.Area1000);
|
||||
break;
|
||||
case 5:
|
||||
Switch01KCHR(data, CHRArea.Area1400);
|
||||
break;
|
||||
case 6:
|
||||
Switch01KCHR(data, CHRArea.Area1800);
|
||||
break;
|
||||
case 7:
|
||||
Switch01KCHR(data, CHRArea.Area1C00);
|
||||
break;
|
||||
case 8:
|
||||
Switch16KPRG(data, PRGArea.Area8000);
|
||||
break;
|
||||
case 9:
|
||||
switch (data & 3)
|
||||
{
|
||||
case 0:
|
||||
Switch01KNMTFromMirroring(Mirroring.Vert);
|
||||
break;
|
||||
case 1:
|
||||
Switch01KNMTFromMirroring(Mirroring.Horz);
|
||||
break;
|
||||
case 2:
|
||||
Switch01KNMTFromMirroring(Mirroring.OneScA);
|
||||
break;
|
||||
case 3:
|
||||
Switch01KNMTFromMirroring(Mirroring.OneScB);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 10:
|
||||
irq_enable = (data & 1) == 1;
|
||||
NesEmu.IRQFlags &= -9;
|
||||
break;
|
||||
case 11:
|
||||
irq_counter = (irq_counter & 0xFF00) | data;
|
||||
break;
|
||||
case 12:
|
||||
irq_counter = (irq_counter & 0xFF) | (data << 8);
|
||||
break;
|
||||
case 13:
|
||||
eprom.Write(address, data);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
internal override void ReadSRM(ref ushort address, out byte value)
|
||||
{
|
||||
value = eprom.Read(address);
|
||||
}
|
||||
|
||||
internal override void OnCPUClock()
|
||||
{
|
||||
if (irq_enable)
|
||||
{
|
||||
irq_counter--;
|
||||
if (irq_counter == 0)
|
||||
{
|
||||
NesEmu.IRQFlags |= 8;
|
||||
}
|
||||
if (irq_counter < 0)
|
||||
{
|
||||
irq_counter = 65535;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal override void WriteStateData(ref BinaryWriter stream)
|
||||
{
|
||||
base.WriteStateData(ref stream);
|
||||
stream.Write(irq_enable);
|
||||
stream.Write(irq_counter);
|
||||
eprom.SaveState(stream);
|
||||
}
|
||||
|
||||
internal override void ReadStateData(ref BinaryReader stream)
|
||||
{
|
||||
base.ReadStateData(ref stream);
|
||||
irq_enable = stream.ReadBoolean();
|
||||
irq_counter = stream.ReadInt32();
|
||||
eprom.LoadState(stream);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal struct BankInfo
|
||||
{
|
||||
public bool IsRAM;
|
||||
|
||||
public bool Enabled;
|
||||
|
||||
public bool Writable;
|
||||
|
||||
public bool IsBattery;
|
||||
|
||||
public string ID;
|
||||
|
||||
public byte[] DATA;
|
||||
|
||||
public BankInfo(string ID, bool IsRAM, bool Writable, bool Enabled, bool IsBattery, byte[] DATA)
|
||||
{
|
||||
this.ID = ID;
|
||||
this.IsRAM = IsRAM;
|
||||
this.Writable = Writable;
|
||||
this.Enabled = Enabled;
|
||||
this.DATA = DATA;
|
||||
this.IsBattery = IsBattery;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
using System.Collections.Generic;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal class BankInfoSorter : IComparer<BankInfo>
|
||||
{
|
||||
public int Compare(BankInfo x, BankInfo y)
|
||||
{
|
||||
int result = 0;
|
||||
int result2 = 0;
|
||||
int.TryParse(x.ID, out result);
|
||||
int.TryParse(y.ID, out result2);
|
||||
return result2 - result;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal class BlankJoypad : IJoypadConnecter
|
||||
{
|
||||
public override void Update()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal class BlankShortuctsHandler : IShortcutsHandler
|
||||
{
|
||||
public void Update()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d719eb3b397dd0743a86ded70de8d9dc
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a649aa2f72c13234481b8a2db2b101f8
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,61 +0,0 @@
|
||||
using System;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal class BoardInfoAttribute : Attribute
|
||||
{
|
||||
public string Name { get; private set; }
|
||||
|
||||
public int Mapper { get; private set; }
|
||||
|
||||
public int DefaultPRG_RAM_8KB_BanksCount { get; private set; }
|
||||
|
||||
public int DefaultCHR_RAM_1KB_BanksCount { get; private set; }
|
||||
|
||||
public bool Enabled_ppuA12ToggleTimer { get; private set; }
|
||||
|
||||
public bool PPUA12TogglesOnRaisingEdge { get; private set; }
|
||||
|
||||
public BoardInfoAttribute(string boardName, int inesMapperNumber)
|
||||
{
|
||||
Name = boardName;
|
||||
Mapper = inesMapperNumber;
|
||||
DefaultPRG_RAM_8KB_BanksCount = 1;
|
||||
DefaultCHR_RAM_1KB_BanksCount = 8;
|
||||
Enabled_ppuA12ToggleTimer = (PPUA12TogglesOnRaisingEdge = false);
|
||||
}
|
||||
|
||||
public BoardInfoAttribute(string boardName, int inesMapperNumber, int defaultPRG_RAM_8KB_BanksCount, int defaultCHR_RAM_1KB_BanksCount)
|
||||
{
|
||||
Name = boardName;
|
||||
Mapper = inesMapperNumber;
|
||||
DefaultPRG_RAM_8KB_BanksCount = defaultPRG_RAM_8KB_BanksCount;
|
||||
DefaultCHR_RAM_1KB_BanksCount = defaultCHR_RAM_1KB_BanksCount;
|
||||
Enabled_ppuA12ToggleTimer = (PPUA12TogglesOnRaisingEdge = false);
|
||||
}
|
||||
|
||||
public BoardInfoAttribute(string boardName, int inesMapperNumber, bool Enabled_ppuA12ToggleTimer, bool PPUA12TogglesOnRaisingEdge)
|
||||
{
|
||||
Name = boardName;
|
||||
Mapper = inesMapperNumber;
|
||||
DefaultPRG_RAM_8KB_BanksCount = 1;
|
||||
DefaultCHR_RAM_1KB_BanksCount = 8;
|
||||
this.Enabled_ppuA12ToggleTimer = Enabled_ppuA12ToggleTimer;
|
||||
this.PPUA12TogglesOnRaisingEdge = PPUA12TogglesOnRaisingEdge;
|
||||
}
|
||||
|
||||
public BoardInfoAttribute(string boardName, int inesMapperNumber, int defaultPRG_RAM_8KB_BanksCount, int defaultCHR_RAM_1KB_BanksCount, bool Enabled_ppuA12ToggleTimer, bool PPUA12TogglesOnRaisingEdge)
|
||||
{
|
||||
Name = boardName;
|
||||
Mapper = inesMapperNumber;
|
||||
DefaultPRG_RAM_8KB_BanksCount = defaultPRG_RAM_8KB_BanksCount;
|
||||
DefaultCHR_RAM_1KB_BanksCount = defaultCHR_RAM_1KB_BanksCount;
|
||||
this.Enabled_ppuA12ToggleTimer = Enabled_ppuA12ToggleTimer;
|
||||
this.PPUA12TogglesOnRaisingEdge = PPUA12TogglesOnRaisingEdge;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 42db8567eb222464faed6061346980df
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,20 +0,0 @@
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public class BoardInfoObject
|
||||
{
|
||||
public string Name { get; internal set; }
|
||||
|
||||
public int MapperNumber { get; internal set; }
|
||||
|
||||
public bool IsSupported { get; internal set; }
|
||||
|
||||
public string Issues { get; internal set; }
|
||||
|
||||
public bool HasIssues { get; internal set; }
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 02faf494147d32b4d9288978c3ae6145
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,14 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
internal enum CHRArea : byte
|
||||
{
|
||||
Area0000,
|
||||
Area0400,
|
||||
Area0800,
|
||||
Area0C00,
|
||||
Area1000,
|
||||
Area1400,
|
||||
Area1800,
|
||||
Area1C00
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 682bde94b329bbe40bca1f57566c3bdd
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,72 +0,0 @@
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
internal sealed class Adler32
|
||||
{
|
||||
private const int BASE = 65521;
|
||||
|
||||
private const int NMAX = 5552;
|
||||
|
||||
internal long adler32(long adler, byte[] buf, int index, int len)
|
||||
{
|
||||
if (buf == null)
|
||||
{
|
||||
return 1L;
|
||||
}
|
||||
long num = adler & 0xFFFF;
|
||||
long num2 = (adler >> 16) & 0xFFFF;
|
||||
while (len > 0)
|
||||
{
|
||||
int num3 = ((len < 5552) ? len : 5552);
|
||||
len -= num3;
|
||||
while (num3 >= 16)
|
||||
{
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
num3 -= 16;
|
||||
}
|
||||
if (num3 != 0)
|
||||
{
|
||||
do
|
||||
{
|
||||
num += buf[index++] & 0xFF;
|
||||
num2 += num;
|
||||
}
|
||||
while (--num3 != 0);
|
||||
}
|
||||
num %= 65521;
|
||||
num2 %= 65521;
|
||||
}
|
||||
return (num2 << 16) | num;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5f0afef237e01da488c3afdb23b495d4
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2dfc48049b9e04b4eadd12cb50383cb8
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,661 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
internal sealed class InfBlocks
|
||||
{
|
||||
private const int MANY = 1440;
|
||||
|
||||
private static readonly int[] inflate_mask = new int[17]
|
||||
{
|
||||
0, 1, 3, 7, 15, 31, 63, 127, 255, 511,
|
||||
1023, 2047, 4095, 8191, 16383, 32767, 65535
|
||||
};
|
||||
|
||||
internal static readonly int[] border = new int[19]
|
||||
{
|
||||
16, 17, 18, 0, 8, 7, 9, 6, 10, 5,
|
||||
11, 4, 12, 3, 13, 2, 14, 1, 15
|
||||
};
|
||||
|
||||
private const int Z_OK = 0;
|
||||
|
||||
private const int Z_STREAM_END = 1;
|
||||
|
||||
private const int Z_NEED_DICT = 2;
|
||||
|
||||
private const int Z_ERRNO = -1;
|
||||
|
||||
private const int Z_STREAM_ERROR = -2;
|
||||
|
||||
private const int Z_DATA_ERROR = -3;
|
||||
|
||||
private const int Z_MEM_ERROR = -4;
|
||||
|
||||
private const int Z_BUF_ERROR = -5;
|
||||
|
||||
private const int Z_VERSION_ERROR = -6;
|
||||
|
||||
private const int TYPE = 0;
|
||||
|
||||
private const int LENS = 1;
|
||||
|
||||
private const int STORED = 2;
|
||||
|
||||
private const int TABLE = 3;
|
||||
|
||||
private const int BTREE = 4;
|
||||
|
||||
private const int DTREE = 5;
|
||||
|
||||
private const int CODES = 6;
|
||||
|
||||
private const int DRY = 7;
|
||||
|
||||
private const int DONE = 8;
|
||||
|
||||
private const int BAD = 9;
|
||||
|
||||
internal int mode;
|
||||
|
||||
internal int left;
|
||||
|
||||
internal int table;
|
||||
|
||||
internal int index;
|
||||
|
||||
internal int[] blens;
|
||||
|
||||
internal int[] bb = new int[1];
|
||||
|
||||
internal int[] tb = new int[1];
|
||||
|
||||
internal InfCodes codes;
|
||||
|
||||
internal int last;
|
||||
|
||||
internal int bitk;
|
||||
|
||||
internal int bitb;
|
||||
|
||||
internal int[] hufts;
|
||||
|
||||
internal byte[] window;
|
||||
|
||||
internal int end;
|
||||
|
||||
internal int read;
|
||||
|
||||
internal int write;
|
||||
|
||||
internal object checkfn;
|
||||
|
||||
internal long check;
|
||||
|
||||
internal InfBlocks(ZStream z, object checkfn, int w)
|
||||
{
|
||||
hufts = new int[4320];
|
||||
window = new byte[w];
|
||||
end = w;
|
||||
this.checkfn = checkfn;
|
||||
mode = 0;
|
||||
reset(z, null);
|
||||
}
|
||||
|
||||
internal void reset(ZStream z, long[] c)
|
||||
{
|
||||
if (c != null)
|
||||
{
|
||||
c[0] = check;
|
||||
}
|
||||
if (mode == 4 || mode == 5)
|
||||
{
|
||||
blens = null;
|
||||
}
|
||||
if (mode == 6)
|
||||
{
|
||||
codes.free(z);
|
||||
}
|
||||
mode = 0;
|
||||
bitk = 0;
|
||||
bitb = 0;
|
||||
read = (write = 0);
|
||||
if (checkfn != null)
|
||||
{
|
||||
z.adler = (check = z._adler.adler32(0L, null, 0, 0));
|
||||
}
|
||||
}
|
||||
|
||||
internal int proc(ZStream z, int r)
|
||||
{
|
||||
int num = z.next_in_index;
|
||||
int num2 = z.avail_in;
|
||||
int num3 = bitb;
|
||||
int i = bitk;
|
||||
int num4 = write;
|
||||
int num5 = ((num4 < read) ? (read - num4 - 1) : (end - num4));
|
||||
while (true)
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
for (; i < 3; i += 8)
|
||||
{
|
||||
if (num2 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num2--;
|
||||
num3 |= (z.next_in[num++] & 0xFF) << i;
|
||||
continue;
|
||||
}
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
int num6 = num3 & 7;
|
||||
last = num6 & 1;
|
||||
switch (SupportClass.URShift(num6, 1))
|
||||
{
|
||||
case 0:
|
||||
num3 = SupportClass.URShift(num3, 3);
|
||||
i -= 3;
|
||||
num6 = i & 7;
|
||||
num3 = SupportClass.URShift(num3, num6);
|
||||
i -= num6;
|
||||
mode = 1;
|
||||
break;
|
||||
case 1:
|
||||
{
|
||||
int[] array5 = new int[1];
|
||||
int[] array6 = new int[1];
|
||||
int[][] array7 = new int[1][];
|
||||
int[][] array8 = new int[1][];
|
||||
InfTree.inflate_trees_fixed(array5, array6, array7, array8, z);
|
||||
codes = new InfCodes(array5[0], array6[0], array7[0], array8[0], z);
|
||||
num3 = SupportClass.URShift(num3, 3);
|
||||
i -= 3;
|
||||
mode = 6;
|
||||
break;
|
||||
}
|
||||
case 2:
|
||||
num3 = SupportClass.URShift(num3, 3);
|
||||
i -= 3;
|
||||
mode = 3;
|
||||
break;
|
||||
case 3:
|
||||
num3 = SupportClass.URShift(num3, 3);
|
||||
i -= 3;
|
||||
mode = 9;
|
||||
z.msg = "invalid block type";
|
||||
r = -3;
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 1:
|
||||
for (; i < 32; i += 8)
|
||||
{
|
||||
if (num2 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num2--;
|
||||
num3 |= (z.next_in[num++] & 0xFF) << i;
|
||||
continue;
|
||||
}
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
if ((SupportClass.URShift(~num3, 16) & 0xFFFF) != (num3 & 0xFFFF))
|
||||
{
|
||||
mode = 9;
|
||||
z.msg = "invalid stored block lengths";
|
||||
r = -3;
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
left = num3 & 0xFFFF;
|
||||
num3 = (i = 0);
|
||||
mode = ((left != 0) ? 2 : ((last != 0) ? 7 : 0));
|
||||
break;
|
||||
case 2:
|
||||
{
|
||||
if (num2 == 0)
|
||||
{
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
if (num5 == 0)
|
||||
{
|
||||
if (num4 == end && read != 0)
|
||||
{
|
||||
num4 = 0;
|
||||
num5 = ((num4 < read) ? (read - num4 - 1) : (end - num4));
|
||||
}
|
||||
if (num5 == 0)
|
||||
{
|
||||
write = num4;
|
||||
r = inflate_flush(z, r);
|
||||
num4 = write;
|
||||
num5 = ((num4 < read) ? (read - num4 - 1) : (end - num4));
|
||||
if (num4 == end && read != 0)
|
||||
{
|
||||
num4 = 0;
|
||||
num5 = ((num4 < read) ? (read - num4 - 1) : (end - num4));
|
||||
}
|
||||
if (num5 == 0)
|
||||
{
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
}
|
||||
}
|
||||
r = 0;
|
||||
int num6 = left;
|
||||
if (num6 > num2)
|
||||
{
|
||||
num6 = num2;
|
||||
}
|
||||
if (num6 > num5)
|
||||
{
|
||||
num6 = num5;
|
||||
}
|
||||
Array.Copy(z.next_in, num, window, num4, num6);
|
||||
num += num6;
|
||||
num2 -= num6;
|
||||
num4 += num6;
|
||||
num5 -= num6;
|
||||
if ((left -= num6) == 0)
|
||||
{
|
||||
mode = ((last != 0) ? 7 : 0);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 3:
|
||||
{
|
||||
for (; i < 14; i += 8)
|
||||
{
|
||||
if (num2 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num2--;
|
||||
num3 |= (z.next_in[num++] & 0xFF) << i;
|
||||
continue;
|
||||
}
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
int num6 = (table = num3 & 0x3FFF);
|
||||
if ((num6 & 0x1F) > 29 || ((num6 >> 5) & 0x1F) > 29)
|
||||
{
|
||||
mode = 9;
|
||||
z.msg = "too many length or distance symbols";
|
||||
r = -3;
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
num6 = 258 + (num6 & 0x1F) + ((num6 >> 5) & 0x1F);
|
||||
blens = new int[num6];
|
||||
num3 = SupportClass.URShift(num3, 14);
|
||||
i -= 14;
|
||||
index = 0;
|
||||
mode = 4;
|
||||
goto case 4;
|
||||
}
|
||||
case 4:
|
||||
{
|
||||
while (index < 4 + SupportClass.URShift(table, 10))
|
||||
{
|
||||
for (; i < 3; i += 8)
|
||||
{
|
||||
if (num2 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num2--;
|
||||
num3 |= (z.next_in[num++] & 0xFF) << i;
|
||||
continue;
|
||||
}
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
blens[border[index++]] = num3 & 7;
|
||||
num3 = SupportClass.URShift(num3, 3);
|
||||
i -= 3;
|
||||
}
|
||||
while (index < 19)
|
||||
{
|
||||
blens[border[index++]] = 0;
|
||||
}
|
||||
bb[0] = 7;
|
||||
int num6 = InfTree.inflate_trees_bits(blens, bb, tb, hufts, z);
|
||||
if (num6 != 0)
|
||||
{
|
||||
r = num6;
|
||||
if (r == -3)
|
||||
{
|
||||
blens = null;
|
||||
mode = 9;
|
||||
}
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
index = 0;
|
||||
mode = 5;
|
||||
goto case 5;
|
||||
}
|
||||
case 5:
|
||||
{
|
||||
int num6;
|
||||
while (true)
|
||||
{
|
||||
num6 = table;
|
||||
if (index >= 258 + (num6 & 0x1F) + ((num6 >> 5) & 0x1F))
|
||||
{
|
||||
break;
|
||||
}
|
||||
for (num6 = bb[0]; i < num6; i += 8)
|
||||
{
|
||||
if (num2 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num2--;
|
||||
num3 |= (z.next_in[num++] & 0xFF) << i;
|
||||
continue;
|
||||
}
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
_ = tb[0];
|
||||
_ = -1;
|
||||
num6 = hufts[(tb[0] + (num3 & inflate_mask[num6])) * 3 + 1];
|
||||
int num7 = hufts[(tb[0] + (num3 & inflate_mask[num6])) * 3 + 2];
|
||||
if (num7 < 16)
|
||||
{
|
||||
num3 = SupportClass.URShift(num3, num6);
|
||||
i -= num6;
|
||||
blens[index++] = num7;
|
||||
continue;
|
||||
}
|
||||
int num8 = ((num7 == 18) ? 7 : (num7 - 14));
|
||||
int num9 = ((num7 == 18) ? 11 : 3);
|
||||
for (; i < num6 + num8; i += 8)
|
||||
{
|
||||
if (num2 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num2--;
|
||||
num3 |= (z.next_in[num++] & 0xFF) << i;
|
||||
continue;
|
||||
}
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
num3 = SupportClass.URShift(num3, num6);
|
||||
i -= num6;
|
||||
num9 += num3 & inflate_mask[num8];
|
||||
num3 = SupportClass.URShift(num3, num8);
|
||||
i -= num8;
|
||||
num8 = index;
|
||||
num6 = table;
|
||||
if (num8 + num9 > 258 + (num6 & 0x1F) + ((num6 >> 5) & 0x1F) || (num7 == 16 && num8 < 1))
|
||||
{
|
||||
blens = null;
|
||||
mode = 9;
|
||||
z.msg = "invalid bit length repeat";
|
||||
r = -3;
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
num7 = ((num7 == 16) ? blens[num8 - 1] : 0);
|
||||
do
|
||||
{
|
||||
blens[num8++] = num7;
|
||||
}
|
||||
while (--num9 != 0);
|
||||
index = num8;
|
||||
}
|
||||
tb[0] = -1;
|
||||
int[] array = new int[1];
|
||||
int[] array2 = new int[1];
|
||||
int[] array3 = new int[1];
|
||||
int[] array4 = new int[1];
|
||||
array[0] = 9;
|
||||
array2[0] = 6;
|
||||
num6 = table;
|
||||
num6 = InfTree.inflate_trees_dynamic(257 + (num6 & 0x1F), 1 + ((num6 >> 5) & 0x1F), blens, array, array2, array3, array4, hufts, z);
|
||||
if (num6 != 0)
|
||||
{
|
||||
if (num6 == -3)
|
||||
{
|
||||
blens = null;
|
||||
mode = 9;
|
||||
}
|
||||
r = num6;
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
codes = new InfCodes(array[0], array2[0], hufts, array3[0], hufts, array4[0], z);
|
||||
blens = null;
|
||||
mode = 6;
|
||||
goto case 6;
|
||||
}
|
||||
case 6:
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
if ((r = codes.proc(this, z, r)) != 1)
|
||||
{
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
r = 0;
|
||||
codes.free(z);
|
||||
num = z.next_in_index;
|
||||
num2 = z.avail_in;
|
||||
num3 = bitb;
|
||||
i = bitk;
|
||||
num4 = write;
|
||||
num5 = ((num4 < read) ? (read - num4 - 1) : (end - num4));
|
||||
if (last == 0)
|
||||
{
|
||||
mode = 0;
|
||||
break;
|
||||
}
|
||||
mode = 7;
|
||||
goto case 7;
|
||||
case 7:
|
||||
write = num4;
|
||||
r = inflate_flush(z, r);
|
||||
num4 = write;
|
||||
num5 = ((num4 < read) ? (read - num4 - 1) : (end - num4));
|
||||
if (read != write)
|
||||
{
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
mode = 8;
|
||||
goto case 8;
|
||||
case 8:
|
||||
r = 1;
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
case 9:
|
||||
r = -3;
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
default:
|
||||
r = -2;
|
||||
bitb = num3;
|
||||
bitk = i;
|
||||
z.avail_in = num2;
|
||||
z.total_in += num - z.next_in_index;
|
||||
z.next_in_index = num;
|
||||
write = num4;
|
||||
return inflate_flush(z, r);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal void free(ZStream z)
|
||||
{
|
||||
reset(z, null);
|
||||
window = null;
|
||||
hufts = null;
|
||||
}
|
||||
|
||||
internal void set_dictionary(byte[] d, int start, int n)
|
||||
{
|
||||
Array.Copy(d, start, window, 0, n);
|
||||
read = (write = n);
|
||||
}
|
||||
|
||||
internal int sync_point()
|
||||
{
|
||||
if (mode != 1)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
internal int inflate_flush(ZStream z, int r)
|
||||
{
|
||||
int next_out_index = z.next_out_index;
|
||||
int num = read;
|
||||
int num2 = ((num <= write) ? write : end) - num;
|
||||
if (num2 > z.avail_out)
|
||||
{
|
||||
num2 = z.avail_out;
|
||||
}
|
||||
if (num2 != 0 && r == -5)
|
||||
{
|
||||
r = 0;
|
||||
}
|
||||
z.avail_out -= num2;
|
||||
z.total_out += num2;
|
||||
if (checkfn != null)
|
||||
{
|
||||
z.adler = (check = z._adler.adler32(check, window, num, num2));
|
||||
}
|
||||
Array.Copy(window, num, z.next_out, next_out_index, num2);
|
||||
next_out_index += num2;
|
||||
num += num2;
|
||||
if (num == end)
|
||||
{
|
||||
num = 0;
|
||||
if (write == end)
|
||||
{
|
||||
write = 0;
|
||||
}
|
||||
num2 = write - num;
|
||||
if (num2 > z.avail_out)
|
||||
{
|
||||
num2 = z.avail_out;
|
||||
}
|
||||
if (num2 != 0 && r == -5)
|
||||
{
|
||||
r = 0;
|
||||
}
|
||||
z.avail_out -= num2;
|
||||
z.total_out += num2;
|
||||
if (checkfn != null)
|
||||
{
|
||||
z.adler = (check = z._adler.adler32(check, window, num, num2));
|
||||
}
|
||||
Array.Copy(window, num, z.next_out, next_out_index, num2);
|
||||
next_out_index += num2;
|
||||
num += num2;
|
||||
}
|
||||
z.next_out_index = next_out_index;
|
||||
read = num;
|
||||
return r;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 38ff23616a4cf9349add205940d1e8de
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,664 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
internal sealed class InfCodes
|
||||
{
|
||||
private static readonly int[] inflate_mask = new int[17]
|
||||
{
|
||||
0, 1, 3, 7, 15, 31, 63, 127, 255, 511,
|
||||
1023, 2047, 4095, 8191, 16383, 32767, 65535
|
||||
};
|
||||
|
||||
private const int Z_OK = 0;
|
||||
|
||||
private const int Z_STREAM_END = 1;
|
||||
|
||||
private const int Z_NEED_DICT = 2;
|
||||
|
||||
private const int Z_ERRNO = -1;
|
||||
|
||||
private const int Z_STREAM_ERROR = -2;
|
||||
|
||||
private const int Z_DATA_ERROR = -3;
|
||||
|
||||
private const int Z_MEM_ERROR = -4;
|
||||
|
||||
private const int Z_BUF_ERROR = -5;
|
||||
|
||||
private const int Z_VERSION_ERROR = -6;
|
||||
|
||||
private const int START = 0;
|
||||
|
||||
private const int LEN = 1;
|
||||
|
||||
private const int LENEXT = 2;
|
||||
|
||||
private const int DIST = 3;
|
||||
|
||||
private const int DISTEXT = 4;
|
||||
|
||||
private const int COPY = 5;
|
||||
|
||||
private const int LIT = 6;
|
||||
|
||||
private const int WASH = 7;
|
||||
|
||||
private const int END = 8;
|
||||
|
||||
private const int BADCODE = 9;
|
||||
|
||||
internal int mode;
|
||||
|
||||
internal int len;
|
||||
|
||||
internal int[] tree;
|
||||
|
||||
internal int tree_index;
|
||||
|
||||
internal int need;
|
||||
|
||||
internal int lit;
|
||||
|
||||
internal int get_Renamed;
|
||||
|
||||
internal int dist;
|
||||
|
||||
internal byte lbits;
|
||||
|
||||
internal byte dbits;
|
||||
|
||||
internal int[] ltree;
|
||||
|
||||
internal int ltree_index;
|
||||
|
||||
internal int[] dtree;
|
||||
|
||||
internal int dtree_index;
|
||||
|
||||
internal InfCodes(int bl, int bd, int[] tl, int tl_index, int[] td, int td_index, ZStream z)
|
||||
{
|
||||
mode = 0;
|
||||
lbits = (byte)bl;
|
||||
dbits = (byte)bd;
|
||||
ltree = tl;
|
||||
ltree_index = tl_index;
|
||||
dtree = td;
|
||||
dtree_index = td_index;
|
||||
}
|
||||
|
||||
internal InfCodes(int bl, int bd, int[] tl, int[] td, ZStream z)
|
||||
{
|
||||
mode = 0;
|
||||
lbits = (byte)bl;
|
||||
dbits = (byte)bd;
|
||||
ltree = tl;
|
||||
ltree_index = 0;
|
||||
dtree = td;
|
||||
dtree_index = 0;
|
||||
}
|
||||
|
||||
internal int proc(InfBlocks s, ZStream z, int r)
|
||||
{
|
||||
int num = 0;
|
||||
int num2 = 0;
|
||||
int num3 = 0;
|
||||
num3 = z.next_in_index;
|
||||
int num4 = z.avail_in;
|
||||
num = s.bitb;
|
||||
num2 = s.bitk;
|
||||
int num5 = s.write;
|
||||
int num6 = ((num5 < s.read) ? (s.read - num5 - 1) : (s.end - num5));
|
||||
while (true)
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case 0:
|
||||
if (num6 >= 258 && num4 >= 10)
|
||||
{
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
r = inflate_fast(lbits, dbits, ltree, ltree_index, dtree, dtree_index, s, z);
|
||||
num3 = z.next_in_index;
|
||||
num4 = z.avail_in;
|
||||
num = s.bitb;
|
||||
num2 = s.bitk;
|
||||
num5 = s.write;
|
||||
num6 = ((num5 < s.read) ? (s.read - num5 - 1) : (s.end - num5));
|
||||
if (r != 0)
|
||||
{
|
||||
mode = ((r == 1) ? 7 : 9);
|
||||
break;
|
||||
}
|
||||
}
|
||||
need = lbits;
|
||||
tree = ltree;
|
||||
tree_index = ltree_index;
|
||||
mode = 1;
|
||||
goto case 1;
|
||||
case 1:
|
||||
{
|
||||
int num7;
|
||||
for (num7 = need; num2 < num7; num2 += 8)
|
||||
{
|
||||
if (num4 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num4--;
|
||||
num |= (z.next_in[num3++] & 0xFF) << num2;
|
||||
continue;
|
||||
}
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
int num8 = (tree_index + (num & inflate_mask[num7])) * 3;
|
||||
num = SupportClass.URShift(num, tree[num8 + 1]);
|
||||
num2 -= tree[num8 + 1];
|
||||
int num9 = tree[num8];
|
||||
if (num9 == 0)
|
||||
{
|
||||
lit = tree[num8 + 2];
|
||||
mode = 6;
|
||||
break;
|
||||
}
|
||||
if (((uint)num9 & 0x10u) != 0)
|
||||
{
|
||||
get_Renamed = num9 & 0xF;
|
||||
len = tree[num8 + 2];
|
||||
mode = 2;
|
||||
break;
|
||||
}
|
||||
if ((num9 & 0x40) == 0)
|
||||
{
|
||||
need = num9;
|
||||
tree_index = num8 / 3 + tree[num8 + 2];
|
||||
break;
|
||||
}
|
||||
if (((uint)num9 & 0x20u) != 0)
|
||||
{
|
||||
mode = 7;
|
||||
break;
|
||||
}
|
||||
mode = 9;
|
||||
z.msg = "invalid literal/length code";
|
||||
r = -3;
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
case 2:
|
||||
{
|
||||
int num7;
|
||||
for (num7 = get_Renamed; num2 < num7; num2 += 8)
|
||||
{
|
||||
if (num4 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num4--;
|
||||
num |= (z.next_in[num3++] & 0xFF) << num2;
|
||||
continue;
|
||||
}
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
len += num & inflate_mask[num7];
|
||||
num >>= num7;
|
||||
num2 -= num7;
|
||||
need = dbits;
|
||||
tree = dtree;
|
||||
tree_index = dtree_index;
|
||||
mode = 3;
|
||||
goto case 3;
|
||||
}
|
||||
case 3:
|
||||
{
|
||||
int num7;
|
||||
for (num7 = need; num2 < num7; num2 += 8)
|
||||
{
|
||||
if (num4 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num4--;
|
||||
num |= (z.next_in[num3++] & 0xFF) << num2;
|
||||
continue;
|
||||
}
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
int num8 = (tree_index + (num & inflate_mask[num7])) * 3;
|
||||
num >>= tree[num8 + 1];
|
||||
num2 -= tree[num8 + 1];
|
||||
int num9 = tree[num8];
|
||||
if (((uint)num9 & 0x10u) != 0)
|
||||
{
|
||||
get_Renamed = num9 & 0xF;
|
||||
dist = tree[num8 + 2];
|
||||
mode = 4;
|
||||
break;
|
||||
}
|
||||
if ((num9 & 0x40) == 0)
|
||||
{
|
||||
need = num9;
|
||||
tree_index = num8 / 3 + tree[num8 + 2];
|
||||
break;
|
||||
}
|
||||
mode = 9;
|
||||
z.msg = "invalid distance code";
|
||||
r = -3;
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
case 4:
|
||||
{
|
||||
int num7;
|
||||
for (num7 = get_Renamed; num2 < num7; num2 += 8)
|
||||
{
|
||||
if (num4 != 0)
|
||||
{
|
||||
r = 0;
|
||||
num4--;
|
||||
num |= (z.next_in[num3++] & 0xFF) << num2;
|
||||
continue;
|
||||
}
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
dist += num & inflate_mask[num7];
|
||||
num >>= num7;
|
||||
num2 -= num7;
|
||||
mode = 5;
|
||||
goto case 5;
|
||||
}
|
||||
case 5:
|
||||
{
|
||||
int i;
|
||||
for (i = num5 - dist; i < 0; i += s.end)
|
||||
{
|
||||
}
|
||||
while (len != 0)
|
||||
{
|
||||
if (num6 == 0)
|
||||
{
|
||||
if (num5 == s.end && s.read != 0)
|
||||
{
|
||||
num5 = 0;
|
||||
num6 = ((num5 < s.read) ? (s.read - num5 - 1) : (s.end - num5));
|
||||
}
|
||||
if (num6 == 0)
|
||||
{
|
||||
s.write = num5;
|
||||
r = s.inflate_flush(z, r);
|
||||
num5 = s.write;
|
||||
num6 = ((num5 < s.read) ? (s.read - num5 - 1) : (s.end - num5));
|
||||
if (num5 == s.end && s.read != 0)
|
||||
{
|
||||
num5 = 0;
|
||||
num6 = ((num5 < s.read) ? (s.read - num5 - 1) : (s.end - num5));
|
||||
}
|
||||
if (num6 == 0)
|
||||
{
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
}
|
||||
}
|
||||
s.window[num5++] = s.window[i++];
|
||||
num6--;
|
||||
if (i == s.end)
|
||||
{
|
||||
i = 0;
|
||||
}
|
||||
len--;
|
||||
}
|
||||
mode = 0;
|
||||
break;
|
||||
}
|
||||
case 6:
|
||||
if (num6 == 0)
|
||||
{
|
||||
if (num5 == s.end && s.read != 0)
|
||||
{
|
||||
num5 = 0;
|
||||
num6 = ((num5 < s.read) ? (s.read - num5 - 1) : (s.end - num5));
|
||||
}
|
||||
if (num6 == 0)
|
||||
{
|
||||
s.write = num5;
|
||||
r = s.inflate_flush(z, r);
|
||||
num5 = s.write;
|
||||
num6 = ((num5 < s.read) ? (s.read - num5 - 1) : (s.end - num5));
|
||||
if (num5 == s.end && s.read != 0)
|
||||
{
|
||||
num5 = 0;
|
||||
num6 = ((num5 < s.read) ? (s.read - num5 - 1) : (s.end - num5));
|
||||
}
|
||||
if (num6 == 0)
|
||||
{
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
}
|
||||
}
|
||||
r = 0;
|
||||
s.window[num5++] = (byte)lit;
|
||||
num6--;
|
||||
mode = 0;
|
||||
break;
|
||||
case 7:
|
||||
if (num2 > 7)
|
||||
{
|
||||
num2 -= 8;
|
||||
num4++;
|
||||
num3--;
|
||||
}
|
||||
s.write = num5;
|
||||
r = s.inflate_flush(z, r);
|
||||
num5 = s.write;
|
||||
num6 = ((num5 < s.read) ? (s.read - num5 - 1) : (s.end - num5));
|
||||
if (s.read != s.write)
|
||||
{
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
mode = 8;
|
||||
goto case 8;
|
||||
case 8:
|
||||
r = 1;
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
case 9:
|
||||
r = -3;
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
default:
|
||||
r = -2;
|
||||
s.bitb = num;
|
||||
s.bitk = num2;
|
||||
z.avail_in = num4;
|
||||
z.total_in += num3 - z.next_in_index;
|
||||
z.next_in_index = num3;
|
||||
s.write = num5;
|
||||
return s.inflate_flush(z, r);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal void free(ZStream z)
|
||||
{
|
||||
}
|
||||
|
||||
internal int inflate_fast(int bl, int bd, int[] tl, int tl_index, int[] td, int td_index, InfBlocks s, ZStream z)
|
||||
{
|
||||
int next_in_index = z.next_in_index;
|
||||
int num = z.avail_in;
|
||||
int num2 = s.bitb;
|
||||
int num3 = s.bitk;
|
||||
int num4 = s.write;
|
||||
int num5 = ((num4 < s.read) ? (s.read - num4 - 1) : (s.end - num4));
|
||||
int num6 = inflate_mask[bl];
|
||||
int num7 = inflate_mask[bd];
|
||||
int num11;
|
||||
while (true)
|
||||
{
|
||||
if (num3 < 20)
|
||||
{
|
||||
num--;
|
||||
num2 |= (z.next_in[next_in_index++] & 0xFF) << num3;
|
||||
num3 += 8;
|
||||
continue;
|
||||
}
|
||||
int num8 = num2 & num6;
|
||||
int[] array = tl;
|
||||
int num9 = tl_index;
|
||||
int num10;
|
||||
if ((num10 = array[(num9 + num8) * 3]) == 0)
|
||||
{
|
||||
num2 >>= array[(num9 + num8) * 3 + 1];
|
||||
num3 -= array[(num9 + num8) * 3 + 1];
|
||||
s.window[num4++] = (byte)array[(num9 + num8) * 3 + 2];
|
||||
num5--;
|
||||
}
|
||||
else
|
||||
{
|
||||
while (true)
|
||||
{
|
||||
num2 >>= array[(num9 + num8) * 3 + 1];
|
||||
num3 -= array[(num9 + num8) * 3 + 1];
|
||||
if (((uint)num10 & 0x10u) != 0)
|
||||
{
|
||||
num10 &= 0xF;
|
||||
num11 = array[(num9 + num8) * 3 + 2] + (num2 & inflate_mask[num10]);
|
||||
num2 >>= num10;
|
||||
for (num3 -= num10; num3 < 15; num3 += 8)
|
||||
{
|
||||
num--;
|
||||
num2 |= (z.next_in[next_in_index++] & 0xFF) << num3;
|
||||
}
|
||||
num8 = num2 & num7;
|
||||
array = td;
|
||||
num9 = td_index;
|
||||
num10 = array[(num9 + num8) * 3];
|
||||
while (true)
|
||||
{
|
||||
num2 >>= array[(num9 + num8) * 3 + 1];
|
||||
num3 -= array[(num9 + num8) * 3 + 1];
|
||||
if (((uint)num10 & 0x10u) != 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
if ((num10 & 0x40) == 0)
|
||||
{
|
||||
num8 += array[(num9 + num8) * 3 + 2];
|
||||
num8 += num2 & inflate_mask[num10];
|
||||
num10 = array[(num9 + num8) * 3];
|
||||
continue;
|
||||
}
|
||||
z.msg = "invalid distance code";
|
||||
num11 = z.avail_in - num;
|
||||
num11 = ((num3 >> 3 < num11) ? (num3 >> 3) : num11);
|
||||
num += num11;
|
||||
next_in_index -= num11;
|
||||
num3 -= num11 << 3;
|
||||
s.bitb = num2;
|
||||
s.bitk = num3;
|
||||
z.avail_in = num;
|
||||
z.total_in += next_in_index - z.next_in_index;
|
||||
z.next_in_index = next_in_index;
|
||||
s.write = num4;
|
||||
return -3;
|
||||
}
|
||||
for (num10 &= 0xF; num3 < num10; num3 += 8)
|
||||
{
|
||||
num--;
|
||||
num2 |= (z.next_in[next_in_index++] & 0xFF) << num3;
|
||||
}
|
||||
int num12 = array[(num9 + num8) * 3 + 2] + (num2 & inflate_mask[num10]);
|
||||
num2 >>= num10;
|
||||
num3 -= num10;
|
||||
num5 -= num11;
|
||||
int num13;
|
||||
if (num4 >= num12)
|
||||
{
|
||||
num13 = num4 - num12;
|
||||
if (num4 - num13 > 0 && 2 > num4 - num13)
|
||||
{
|
||||
s.window[num4++] = s.window[num13++];
|
||||
num11--;
|
||||
s.window[num4++] = s.window[num13++];
|
||||
num11--;
|
||||
}
|
||||
else
|
||||
{
|
||||
Array.Copy(s.window, num13, s.window, num4, 2);
|
||||
num4 += 2;
|
||||
num13 += 2;
|
||||
num11 -= 2;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
num13 = num4 - num12;
|
||||
do
|
||||
{
|
||||
num13 += s.end;
|
||||
}
|
||||
while (num13 < 0);
|
||||
num10 = s.end - num13;
|
||||
if (num11 > num10)
|
||||
{
|
||||
num11 -= num10;
|
||||
if (num4 - num13 > 0 && num10 > num4 - num13)
|
||||
{
|
||||
do
|
||||
{
|
||||
s.window[num4++] = s.window[num13++];
|
||||
}
|
||||
while (--num10 != 0);
|
||||
}
|
||||
else
|
||||
{
|
||||
Array.Copy(s.window, num13, s.window, num4, num10);
|
||||
num4 += num10;
|
||||
num13 += num10;
|
||||
num10 = 0;
|
||||
}
|
||||
num13 = 0;
|
||||
}
|
||||
}
|
||||
if (num4 - num13 > 0 && num11 > num4 - num13)
|
||||
{
|
||||
do
|
||||
{
|
||||
s.window[num4++] = s.window[num13++];
|
||||
}
|
||||
while (--num11 != 0);
|
||||
break;
|
||||
}
|
||||
Array.Copy(s.window, num13, s.window, num4, num11);
|
||||
num4 += num11;
|
||||
num13 += num11;
|
||||
num11 = 0;
|
||||
break;
|
||||
}
|
||||
if ((num10 & 0x40) == 0)
|
||||
{
|
||||
num8 += array[(num9 + num8) * 3 + 2];
|
||||
num8 += num2 & inflate_mask[num10];
|
||||
if ((num10 = array[(num9 + num8) * 3]) == 0)
|
||||
{
|
||||
num2 >>= array[(num9 + num8) * 3 + 1];
|
||||
num3 -= array[(num9 + num8) * 3 + 1];
|
||||
s.window[num4++] = (byte)array[(num9 + num8) * 3 + 2];
|
||||
num5--;
|
||||
break;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
if (((uint)num10 & 0x20u) != 0)
|
||||
{
|
||||
num11 = z.avail_in - num;
|
||||
num11 = ((num3 >> 3 < num11) ? (num3 >> 3) : num11);
|
||||
num += num11;
|
||||
next_in_index -= num11;
|
||||
num3 -= num11 << 3;
|
||||
s.bitb = num2;
|
||||
s.bitk = num3;
|
||||
z.avail_in = num;
|
||||
z.total_in += next_in_index - z.next_in_index;
|
||||
z.next_in_index = next_in_index;
|
||||
s.write = num4;
|
||||
return 1;
|
||||
}
|
||||
z.msg = "invalid literal/length code";
|
||||
num11 = z.avail_in - num;
|
||||
num11 = ((num3 >> 3 < num11) ? (num3 >> 3) : num11);
|
||||
num += num11;
|
||||
next_in_index -= num11;
|
||||
num3 -= num11 << 3;
|
||||
s.bitb = num2;
|
||||
s.bitk = num3;
|
||||
z.avail_in = num;
|
||||
z.total_in += next_in_index - z.next_in_index;
|
||||
z.next_in_index = next_in_index;
|
||||
s.write = num4;
|
||||
return -3;
|
||||
}
|
||||
}
|
||||
if (num5 < 258 || num < 10)
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
num11 = z.avail_in - num;
|
||||
num11 = ((num3 >> 3 < num11) ? (num3 >> 3) : num11);
|
||||
num += num11;
|
||||
next_in_index -= num11;
|
||||
num3 -= num11 << 3;
|
||||
s.bitb = num2;
|
||||
s.bitk = num3;
|
||||
z.avail_in = num;
|
||||
z.total_in += next_in_index - z.next_in_index;
|
||||
z.next_in_index = next_in_index;
|
||||
s.write = num4;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 848289b37732055419a0cc1d6f28d36a
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,479 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
internal sealed class InfTree
|
||||
{
|
||||
private const int MANY = 1440;
|
||||
|
||||
private const int Z_OK = 0;
|
||||
|
||||
private const int Z_STREAM_END = 1;
|
||||
|
||||
private const int Z_NEED_DICT = 2;
|
||||
|
||||
private const int Z_ERRNO = -1;
|
||||
|
||||
private const int Z_STREAM_ERROR = -2;
|
||||
|
||||
private const int Z_DATA_ERROR = -3;
|
||||
|
||||
private const int Z_MEM_ERROR = -4;
|
||||
|
||||
private const int Z_BUF_ERROR = -5;
|
||||
|
||||
private const int Z_VERSION_ERROR = -6;
|
||||
|
||||
internal const int fixed_bl = 9;
|
||||
|
||||
internal const int fixed_bd = 5;
|
||||
|
||||
internal static readonly int[] fixed_tl = new int[1536]
|
||||
{
|
||||
96, 7, 256, 0, 8, 80, 0, 8, 16, 84,
|
||||
8, 115, 82, 7, 31, 0, 8, 112, 0, 8,
|
||||
48, 0, 9, 192, 80, 7, 10, 0, 8, 96,
|
||||
0, 8, 32, 0, 9, 160, 0, 8, 0, 0,
|
||||
8, 128, 0, 8, 64, 0, 9, 224, 80, 7,
|
||||
6, 0, 8, 88, 0, 8, 24, 0, 9, 144,
|
||||
83, 7, 59, 0, 8, 120, 0, 8, 56, 0,
|
||||
9, 208, 81, 7, 17, 0, 8, 104, 0, 8,
|
||||
40, 0, 9, 176, 0, 8, 8, 0, 8, 136,
|
||||
0, 8, 72, 0, 9, 240, 80, 7, 4, 0,
|
||||
8, 84, 0, 8, 20, 85, 8, 227, 83, 7,
|
||||
43, 0, 8, 116, 0, 8, 52, 0, 9, 200,
|
||||
81, 7, 13, 0, 8, 100, 0, 8, 36, 0,
|
||||
9, 168, 0, 8, 4, 0, 8, 132, 0, 8,
|
||||
68, 0, 9, 232, 80, 7, 8, 0, 8, 92,
|
||||
0, 8, 28, 0, 9, 152, 84, 7, 83, 0,
|
||||
8, 124, 0, 8, 60, 0, 9, 216, 82, 7,
|
||||
23, 0, 8, 108, 0, 8, 44, 0, 9, 184,
|
||||
0, 8, 12, 0, 8, 140, 0, 8, 76, 0,
|
||||
9, 248, 80, 7, 3, 0, 8, 82, 0, 8,
|
||||
18, 85, 8, 163, 83, 7, 35, 0, 8, 114,
|
||||
0, 8, 50, 0, 9, 196, 81, 7, 11, 0,
|
||||
8, 98, 0, 8, 34, 0, 9, 164, 0, 8,
|
||||
2, 0, 8, 130, 0, 8, 66, 0, 9, 228,
|
||||
80, 7, 7, 0, 8, 90, 0, 8, 26, 0,
|
||||
9, 148, 84, 7, 67, 0, 8, 122, 0, 8,
|
||||
58, 0, 9, 212, 82, 7, 19, 0, 8, 106,
|
||||
0, 8, 42, 0, 9, 180, 0, 8, 10, 0,
|
||||
8, 138, 0, 8, 74, 0, 9, 244, 80, 7,
|
||||
5, 0, 8, 86, 0, 8, 22, 192, 8, 0,
|
||||
83, 7, 51, 0, 8, 118, 0, 8, 54, 0,
|
||||
9, 204, 81, 7, 15, 0, 8, 102, 0, 8,
|
||||
38, 0, 9, 172, 0, 8, 6, 0, 8, 134,
|
||||
0, 8, 70, 0, 9, 236, 80, 7, 9, 0,
|
||||
8, 94, 0, 8, 30, 0, 9, 156, 84, 7,
|
||||
99, 0, 8, 126, 0, 8, 62, 0, 9, 220,
|
||||
82, 7, 27, 0, 8, 110, 0, 8, 46, 0,
|
||||
9, 188, 0, 8, 14, 0, 8, 142, 0, 8,
|
||||
78, 0, 9, 252, 96, 7, 256, 0, 8, 81,
|
||||
0, 8, 17, 85, 8, 131, 82, 7, 31, 0,
|
||||
8, 113, 0, 8, 49, 0, 9, 194, 80, 7,
|
||||
10, 0, 8, 97, 0, 8, 33, 0, 9, 162,
|
||||
0, 8, 1, 0, 8, 129, 0, 8, 65, 0,
|
||||
9, 226, 80, 7, 6, 0, 8, 89, 0, 8,
|
||||
25, 0, 9, 146, 83, 7, 59, 0, 8, 121,
|
||||
0, 8, 57, 0, 9, 210, 81, 7, 17, 0,
|
||||
8, 105, 0, 8, 41, 0, 9, 178, 0, 8,
|
||||
9, 0, 8, 137, 0, 8, 73, 0, 9, 242,
|
||||
80, 7, 4, 0, 8, 85, 0, 8, 21, 80,
|
||||
8, 258, 83, 7, 43, 0, 8, 117, 0, 8,
|
||||
53, 0, 9, 202, 81, 7, 13, 0, 8, 101,
|
||||
0, 8, 37, 0, 9, 170, 0, 8, 5, 0,
|
||||
8, 133, 0, 8, 69, 0, 9, 234, 80, 7,
|
||||
8, 0, 8, 93, 0, 8, 29, 0, 9, 154,
|
||||
84, 7, 83, 0, 8, 125, 0, 8, 61, 0,
|
||||
9, 218, 82, 7, 23, 0, 8, 109, 0, 8,
|
||||
45, 0, 9, 186, 0, 8, 13, 0, 8, 141,
|
||||
0, 8, 77, 0, 9, 250, 80, 7, 3, 0,
|
||||
8, 83, 0, 8, 19, 85, 8, 195, 83, 7,
|
||||
35, 0, 8, 115, 0, 8, 51, 0, 9, 198,
|
||||
81, 7, 11, 0, 8, 99, 0, 8, 35, 0,
|
||||
9, 166, 0, 8, 3, 0, 8, 131, 0, 8,
|
||||
67, 0, 9, 230, 80, 7, 7, 0, 8, 91,
|
||||
0, 8, 27, 0, 9, 150, 84, 7, 67, 0,
|
||||
8, 123, 0, 8, 59, 0, 9, 214, 82, 7,
|
||||
19, 0, 8, 107, 0, 8, 43, 0, 9, 182,
|
||||
0, 8, 11, 0, 8, 139, 0, 8, 75, 0,
|
||||
9, 246, 80, 7, 5, 0, 8, 87, 0, 8,
|
||||
23, 192, 8, 0, 83, 7, 51, 0, 8, 119,
|
||||
0, 8, 55, 0, 9, 206, 81, 7, 15, 0,
|
||||
8, 103, 0, 8, 39, 0, 9, 174, 0, 8,
|
||||
7, 0, 8, 135, 0, 8, 71, 0, 9, 238,
|
||||
80, 7, 9, 0, 8, 95, 0, 8, 31, 0,
|
||||
9, 158, 84, 7, 99, 0, 8, 127, 0, 8,
|
||||
63, 0, 9, 222, 82, 7, 27, 0, 8, 111,
|
||||
0, 8, 47, 0, 9, 190, 0, 8, 15, 0,
|
||||
8, 143, 0, 8, 79, 0, 9, 254, 96, 7,
|
||||
256, 0, 8, 80, 0, 8, 16, 84, 8, 115,
|
||||
82, 7, 31, 0, 8, 112, 0, 8, 48, 0,
|
||||
9, 193, 80, 7, 10, 0, 8, 96, 0, 8,
|
||||
32, 0, 9, 161, 0, 8, 0, 0, 8, 128,
|
||||
0, 8, 64, 0, 9, 225, 80, 7, 6, 0,
|
||||
8, 88, 0, 8, 24, 0, 9, 145, 83, 7,
|
||||
59, 0, 8, 120, 0, 8, 56, 0, 9, 209,
|
||||
81, 7, 17, 0, 8, 104, 0, 8, 40, 0,
|
||||
9, 177, 0, 8, 8, 0, 8, 136, 0, 8,
|
||||
72, 0, 9, 241, 80, 7, 4, 0, 8, 84,
|
||||
0, 8, 20, 85, 8, 227, 83, 7, 43, 0,
|
||||
8, 116, 0, 8, 52, 0, 9, 201, 81, 7,
|
||||
13, 0, 8, 100, 0, 8, 36, 0, 9, 169,
|
||||
0, 8, 4, 0, 8, 132, 0, 8, 68, 0,
|
||||
9, 233, 80, 7, 8, 0, 8, 92, 0, 8,
|
||||
28, 0, 9, 153, 84, 7, 83, 0, 8, 124,
|
||||
0, 8, 60, 0, 9, 217, 82, 7, 23, 0,
|
||||
8, 108, 0, 8, 44, 0, 9, 185, 0, 8,
|
||||
12, 0, 8, 140, 0, 8, 76, 0, 9, 249,
|
||||
80, 7, 3, 0, 8, 82, 0, 8, 18, 85,
|
||||
8, 163, 83, 7, 35, 0, 8, 114, 0, 8,
|
||||
50, 0, 9, 197, 81, 7, 11, 0, 8, 98,
|
||||
0, 8, 34, 0, 9, 165, 0, 8, 2, 0,
|
||||
8, 130, 0, 8, 66, 0, 9, 229, 80, 7,
|
||||
7, 0, 8, 90, 0, 8, 26, 0, 9, 149,
|
||||
84, 7, 67, 0, 8, 122, 0, 8, 58, 0,
|
||||
9, 213, 82, 7, 19, 0, 8, 106, 0, 8,
|
||||
42, 0, 9, 181, 0, 8, 10, 0, 8, 138,
|
||||
0, 8, 74, 0, 9, 245, 80, 7, 5, 0,
|
||||
8, 86, 0, 8, 22, 192, 8, 0, 83, 7,
|
||||
51, 0, 8, 118, 0, 8, 54, 0, 9, 205,
|
||||
81, 7, 15, 0, 8, 102, 0, 8, 38, 0,
|
||||
9, 173, 0, 8, 6, 0, 8, 134, 0, 8,
|
||||
70, 0, 9, 237, 80, 7, 9, 0, 8, 94,
|
||||
0, 8, 30, 0, 9, 157, 84, 7, 99, 0,
|
||||
8, 126, 0, 8, 62, 0, 9, 221, 82, 7,
|
||||
27, 0, 8, 110, 0, 8, 46, 0, 9, 189,
|
||||
0, 8, 14, 0, 8, 142, 0, 8, 78, 0,
|
||||
9, 253, 96, 7, 256, 0, 8, 81, 0, 8,
|
||||
17, 85, 8, 131, 82, 7, 31, 0, 8, 113,
|
||||
0, 8, 49, 0, 9, 195, 80, 7, 10, 0,
|
||||
8, 97, 0, 8, 33, 0, 9, 163, 0, 8,
|
||||
1, 0, 8, 129, 0, 8, 65, 0, 9, 227,
|
||||
80, 7, 6, 0, 8, 89, 0, 8, 25, 0,
|
||||
9, 147, 83, 7, 59, 0, 8, 121, 0, 8,
|
||||
57, 0, 9, 211, 81, 7, 17, 0, 8, 105,
|
||||
0, 8, 41, 0, 9, 179, 0, 8, 9, 0,
|
||||
8, 137, 0, 8, 73, 0, 9, 243, 80, 7,
|
||||
4, 0, 8, 85, 0, 8, 21, 80, 8, 258,
|
||||
83, 7, 43, 0, 8, 117, 0, 8, 53, 0,
|
||||
9, 203, 81, 7, 13, 0, 8, 101, 0, 8,
|
||||
37, 0, 9, 171, 0, 8, 5, 0, 8, 133,
|
||||
0, 8, 69, 0, 9, 235, 80, 7, 8, 0,
|
||||
8, 93, 0, 8, 29, 0, 9, 155, 84, 7,
|
||||
83, 0, 8, 125, 0, 8, 61, 0, 9, 219,
|
||||
82, 7, 23, 0, 8, 109, 0, 8, 45, 0,
|
||||
9, 187, 0, 8, 13, 0, 8, 141, 0, 8,
|
||||
77, 0, 9, 251, 80, 7, 3, 0, 8, 83,
|
||||
0, 8, 19, 85, 8, 195, 83, 7, 35, 0,
|
||||
8, 115, 0, 8, 51, 0, 9, 199, 81, 7,
|
||||
11, 0, 8, 99, 0, 8, 35, 0, 9, 167,
|
||||
0, 8, 3, 0, 8, 131, 0, 8, 67, 0,
|
||||
9, 231, 80, 7, 7, 0, 8, 91, 0, 8,
|
||||
27, 0, 9, 151, 84, 7, 67, 0, 8, 123,
|
||||
0, 8, 59, 0, 9, 215, 82, 7, 19, 0,
|
||||
8, 107, 0, 8, 43, 0, 9, 183, 0, 8,
|
||||
11, 0, 8, 139, 0, 8, 75, 0, 9, 247,
|
||||
80, 7, 5, 0, 8, 87, 0, 8, 23, 192,
|
||||
8, 0, 83, 7, 51, 0, 8, 119, 0, 8,
|
||||
55, 0, 9, 207, 81, 7, 15, 0, 8, 103,
|
||||
0, 8, 39, 0, 9, 175, 0, 8, 7, 0,
|
||||
8, 135, 0, 8, 71, 0, 9, 239, 80, 7,
|
||||
9, 0, 8, 95, 0, 8, 31, 0, 9, 159,
|
||||
84, 7, 99, 0, 8, 127, 0, 8, 63, 0,
|
||||
9, 223, 82, 7, 27, 0, 8, 111, 0, 8,
|
||||
47, 0, 9, 191, 0, 8, 15, 0, 8, 143,
|
||||
0, 8, 79, 0, 9, 255
|
||||
};
|
||||
|
||||
internal static readonly int[] fixed_td = new int[96]
|
||||
{
|
||||
80, 5, 1, 87, 5, 257, 83, 5, 17, 91,
|
||||
5, 4097, 81, 5, 5, 89, 5, 1025, 85, 5,
|
||||
65, 93, 5, 16385, 80, 5, 3, 88, 5, 513,
|
||||
84, 5, 33, 92, 5, 8193, 82, 5, 9, 90,
|
||||
5, 2049, 86, 5, 129, 192, 5, 24577, 80, 5,
|
||||
2, 87, 5, 385, 83, 5, 25, 91, 5, 6145,
|
||||
81, 5, 7, 89, 5, 1537, 85, 5, 97, 93,
|
||||
5, 24577, 80, 5, 4, 88, 5, 769, 84, 5,
|
||||
49, 92, 5, 12289, 82, 5, 13, 90, 5, 3073,
|
||||
86, 5, 193, 192, 5, 24577
|
||||
};
|
||||
|
||||
internal static readonly int[] cplens = new int[31]
|
||||
{
|
||||
3, 4, 5, 6, 7, 8, 9, 10, 11, 13,
|
||||
15, 17, 19, 23, 27, 31, 35, 43, 51, 59,
|
||||
67, 83, 99, 115, 131, 163, 195, 227, 258, 0,
|
||||
0
|
||||
};
|
||||
|
||||
internal static readonly int[] cplext = new int[31]
|
||||
{
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1,
|
||||
1, 1, 2, 2, 2, 2, 3, 3, 3, 3,
|
||||
4, 4, 4, 4, 5, 5, 5, 5, 0, 112,
|
||||
112
|
||||
};
|
||||
|
||||
internal static readonly int[] cpdist = new int[30]
|
||||
{
|
||||
1, 2, 3, 4, 5, 7, 9, 13, 17, 25,
|
||||
33, 49, 65, 97, 129, 193, 257, 385, 513, 769,
|
||||
1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577
|
||||
};
|
||||
|
||||
internal static readonly int[] cpdext = new int[30]
|
||||
{
|
||||
0, 0, 0, 0, 1, 1, 2, 2, 3, 3,
|
||||
4, 4, 5, 5, 6, 6, 7, 7, 8, 8,
|
||||
9, 9, 10, 10, 11, 11, 12, 12, 13, 13
|
||||
};
|
||||
|
||||
internal const int BMAX = 15;
|
||||
|
||||
internal static int huft_build(int[] b, int bindex, int n, int s, int[] d, int[] e, int[] t, int[] m, int[] hp, int[] hn, int[] v)
|
||||
{
|
||||
int[] array = new int[16];
|
||||
int[] array2 = new int[3];
|
||||
int[] array3 = new int[15];
|
||||
int[] array4 = new int[16];
|
||||
int num = 0;
|
||||
int num2 = n;
|
||||
do
|
||||
{
|
||||
array[b[bindex + num]]++;
|
||||
num++;
|
||||
num2--;
|
||||
}
|
||||
while (num2 != 0);
|
||||
if (array[0] == n)
|
||||
{
|
||||
t[0] = -1;
|
||||
m[0] = 0;
|
||||
return 0;
|
||||
}
|
||||
int num3 = m[0];
|
||||
int i;
|
||||
for (i = 1; i <= 15 && array[i] == 0; i++)
|
||||
{
|
||||
}
|
||||
int j = i;
|
||||
if (num3 < i)
|
||||
{
|
||||
num3 = i;
|
||||
}
|
||||
num2 = 15;
|
||||
while (num2 != 0 && array[num2] == 0)
|
||||
{
|
||||
num2--;
|
||||
}
|
||||
int num4 = num2;
|
||||
if (num3 > num2)
|
||||
{
|
||||
num3 = num2;
|
||||
}
|
||||
m[0] = num3;
|
||||
int num5 = 1 << i;
|
||||
while (i < num2)
|
||||
{
|
||||
if ((num5 -= array[i]) < 0)
|
||||
{
|
||||
return -3;
|
||||
}
|
||||
i++;
|
||||
num5 <<= 1;
|
||||
}
|
||||
if ((num5 -= array[num2]) < 0)
|
||||
{
|
||||
return -3;
|
||||
}
|
||||
array[num2] += num5;
|
||||
i = (array4[1] = 0);
|
||||
num = 1;
|
||||
int num6 = 2;
|
||||
while (--num2 != 0)
|
||||
{
|
||||
i = (array4[num6] = i + array[num]);
|
||||
num6++;
|
||||
num++;
|
||||
}
|
||||
num2 = 0;
|
||||
num = 0;
|
||||
do
|
||||
{
|
||||
if ((i = b[bindex + num]) != 0)
|
||||
{
|
||||
v[array4[i]++] = num2;
|
||||
}
|
||||
num++;
|
||||
}
|
||||
while (++num2 < n);
|
||||
n = array4[num4];
|
||||
num2 = (array4[0] = 0);
|
||||
num = 0;
|
||||
int num7 = -1;
|
||||
int num8 = -num3;
|
||||
array3[0] = 0;
|
||||
int num9 = 0;
|
||||
int num10 = 0;
|
||||
for (; j <= num4; j++)
|
||||
{
|
||||
int num11 = array[j];
|
||||
while (num11-- != 0)
|
||||
{
|
||||
int num12;
|
||||
while (j > num8 + num3)
|
||||
{
|
||||
num7++;
|
||||
num8 += num3;
|
||||
num10 = num4 - num8;
|
||||
num10 = ((num10 > num3) ? num3 : num10);
|
||||
if ((num12 = 1 << (i = j - num8)) > num11 + 1)
|
||||
{
|
||||
num12 -= num11 + 1;
|
||||
num6 = j;
|
||||
if (i < num10)
|
||||
{
|
||||
while (++i < num10 && (num12 <<= 1) > array[++num6])
|
||||
{
|
||||
num12 -= array[num6];
|
||||
}
|
||||
}
|
||||
}
|
||||
num10 = 1 << i;
|
||||
if (hn[0] + num10 > 1440)
|
||||
{
|
||||
return -3;
|
||||
}
|
||||
num9 = (array3[num7] = hn[0]);
|
||||
hn[0] += num10;
|
||||
if (num7 != 0)
|
||||
{
|
||||
array4[num7] = num2;
|
||||
array2[0] = (byte)i;
|
||||
array2[1] = (byte)num3;
|
||||
i = SupportClass.URShift(num2, num8 - num3);
|
||||
array2[2] = num9 - array3[num7 - 1] - i;
|
||||
Array.Copy(array2, 0, hp, (array3[num7 - 1] + i) * 3, 3);
|
||||
}
|
||||
else
|
||||
{
|
||||
t[0] = num9;
|
||||
}
|
||||
}
|
||||
array2[1] = (byte)(j - num8);
|
||||
if (num >= n)
|
||||
{
|
||||
array2[0] = 192;
|
||||
}
|
||||
else if (v[num] < s)
|
||||
{
|
||||
array2[0] = (byte)((v[num] >= 256) ? 96 : 0);
|
||||
array2[2] = v[num++];
|
||||
}
|
||||
else
|
||||
{
|
||||
array2[0] = (byte)(e[v[num] - s] + 16 + 64);
|
||||
array2[2] = d[v[num++] - s];
|
||||
}
|
||||
num12 = 1 << j - num8;
|
||||
for (i = SupportClass.URShift(num2, num8); i < num10; i += num12)
|
||||
{
|
||||
Array.Copy(array2, 0, hp, (num9 + i) * 3, 3);
|
||||
}
|
||||
i = 1 << j - 1;
|
||||
while ((num2 & i) != 0)
|
||||
{
|
||||
num2 ^= i;
|
||||
i = SupportClass.URShift(i, 1);
|
||||
}
|
||||
num2 ^= i;
|
||||
int num13 = (1 << num8) - 1;
|
||||
while ((num2 & num13) != array4[num7])
|
||||
{
|
||||
num7--;
|
||||
num8 -= num3;
|
||||
num13 = (1 << num8) - 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (num5 == 0 || num4 == 1)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
return -5;
|
||||
}
|
||||
|
||||
internal static int inflate_trees_bits(int[] c, int[] bb, int[] tb, int[] hp, ZStream z)
|
||||
{
|
||||
int[] hn = new int[1];
|
||||
int[] v = new int[19];
|
||||
int num = huft_build(c, 0, 19, 19, null, null, tb, bb, hp, hn, v);
|
||||
if (num == -3)
|
||||
{
|
||||
z.msg = "oversubscribed dynamic bit lengths tree";
|
||||
}
|
||||
else if (num == -5 || bb[0] == 0)
|
||||
{
|
||||
z.msg = "incomplete dynamic bit lengths tree";
|
||||
num = -3;
|
||||
}
|
||||
return num;
|
||||
}
|
||||
|
||||
internal static int inflate_trees_dynamic(int nl, int nd, int[] c, int[] bl, int[] bd, int[] tl, int[] td, int[] hp, ZStream z)
|
||||
{
|
||||
int[] hn = new int[1];
|
||||
int[] v = new int[288];
|
||||
int num = huft_build(c, 0, nl, 257, cplens, cplext, tl, bl, hp, hn, v);
|
||||
if (num != 0 || bl[0] == 0)
|
||||
{
|
||||
switch (num)
|
||||
{
|
||||
case -3:
|
||||
z.msg = "oversubscribed literal/length tree";
|
||||
break;
|
||||
default:
|
||||
z.msg = "incomplete literal/length tree";
|
||||
num = -3;
|
||||
break;
|
||||
case -4:
|
||||
break;
|
||||
}
|
||||
return num;
|
||||
}
|
||||
num = huft_build(c, nl, nd, 0, cpdist, cpdext, td, bd, hp, hn, v);
|
||||
if (num != 0 || (bd[0] == 0 && nl > 257))
|
||||
{
|
||||
switch (num)
|
||||
{
|
||||
case -3:
|
||||
z.msg = "oversubscribed distance tree";
|
||||
break;
|
||||
case -5:
|
||||
z.msg = "incomplete distance tree";
|
||||
num = -3;
|
||||
break;
|
||||
default:
|
||||
z.msg = "empty distance tree with lengths";
|
||||
num = -3;
|
||||
break;
|
||||
case -4:
|
||||
break;
|
||||
}
|
||||
return num;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
internal static int inflate_trees_fixed(int[] bl, int[] bd, int[][] tl, int[][] td, ZStream z)
|
||||
{
|
||||
bl[0] = 9;
|
||||
bd[0] = 5;
|
||||
tl[0] = fixed_tl;
|
||||
td[0] = fixed_td;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 12c1095bcb2a9e748af19115781c4483
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,409 +0,0 @@
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
internal sealed class Inflate
|
||||
{
|
||||
private const int MAX_WBITS = 15;
|
||||
|
||||
private const int PRESET_DICT = 32;
|
||||
|
||||
internal const int Z_NO_FLUSH = 0;
|
||||
|
||||
internal const int Z_PARTIAL_FLUSH = 1;
|
||||
|
||||
internal const int Z_SYNC_FLUSH = 2;
|
||||
|
||||
internal const int Z_FULL_FLUSH = 3;
|
||||
|
||||
internal const int Z_FINISH = 4;
|
||||
|
||||
private const int Z_DEFLATED = 8;
|
||||
|
||||
private const int Z_OK = 0;
|
||||
|
||||
private const int Z_STREAM_END = 1;
|
||||
|
||||
private const int Z_NEED_DICT = 2;
|
||||
|
||||
private const int Z_ERRNO = -1;
|
||||
|
||||
private const int Z_STREAM_ERROR = -2;
|
||||
|
||||
private const int Z_DATA_ERROR = -3;
|
||||
|
||||
private const int Z_MEM_ERROR = -4;
|
||||
|
||||
private const int Z_BUF_ERROR = -5;
|
||||
|
||||
private const int Z_VERSION_ERROR = -6;
|
||||
|
||||
private const int METHOD = 0;
|
||||
|
||||
private const int FLAG = 1;
|
||||
|
||||
private const int DICT4 = 2;
|
||||
|
||||
private const int DICT3 = 3;
|
||||
|
||||
private const int DICT2 = 4;
|
||||
|
||||
private const int DICT1 = 5;
|
||||
|
||||
private const int DICT0 = 6;
|
||||
|
||||
private const int BLOCKS = 7;
|
||||
|
||||
private const int CHECK4 = 8;
|
||||
|
||||
private const int CHECK3 = 9;
|
||||
|
||||
private const int CHECK2 = 10;
|
||||
|
||||
private const int CHECK1 = 11;
|
||||
|
||||
private const int DONE = 12;
|
||||
|
||||
private const int BAD = 13;
|
||||
|
||||
internal int mode;
|
||||
|
||||
internal int method;
|
||||
|
||||
internal long[] was = new long[1];
|
||||
|
||||
internal long need;
|
||||
|
||||
internal int marker;
|
||||
|
||||
internal int nowrap;
|
||||
|
||||
internal int wbits;
|
||||
|
||||
internal InfBlocks blocks;
|
||||
|
||||
private static byte[] mark = new byte[4]
|
||||
{
|
||||
0,
|
||||
0,
|
||||
(byte)SupportClass.Identity(255L),
|
||||
(byte)SupportClass.Identity(255L)
|
||||
};
|
||||
|
||||
internal int inflateReset(ZStream z)
|
||||
{
|
||||
if (z == null || z.istate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
z.total_in = (z.total_out = 0L);
|
||||
z.msg = null;
|
||||
z.istate.mode = ((z.istate.nowrap != 0) ? 7 : 0);
|
||||
z.istate.blocks.reset(z, null);
|
||||
return 0;
|
||||
}
|
||||
|
||||
internal int inflateEnd(ZStream z)
|
||||
{
|
||||
if (blocks != null)
|
||||
{
|
||||
blocks.free(z);
|
||||
}
|
||||
blocks = null;
|
||||
return 0;
|
||||
}
|
||||
|
||||
internal int inflateInit(ZStream z, int w)
|
||||
{
|
||||
z.msg = null;
|
||||
blocks = null;
|
||||
nowrap = 0;
|
||||
if (w < 0)
|
||||
{
|
||||
w = -w;
|
||||
nowrap = 1;
|
||||
}
|
||||
if (w < 8 || w > 15)
|
||||
{
|
||||
inflateEnd(z);
|
||||
return -2;
|
||||
}
|
||||
wbits = w;
|
||||
z.istate.blocks = new InfBlocks(z, (z.istate.nowrap != 0) ? null : this, 1 << w);
|
||||
inflateReset(z);
|
||||
return 0;
|
||||
}
|
||||
|
||||
internal int inflate(ZStream z, int f)
|
||||
{
|
||||
if (z == null || z.istate == null || z.next_in == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
f = ((f == 4) ? (-5) : 0);
|
||||
int num = -5;
|
||||
while (true)
|
||||
{
|
||||
switch (z.istate.mode)
|
||||
{
|
||||
case 0:
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
if (((z.istate.method = z.next_in[z.next_in_index++]) & 0xF) != 8)
|
||||
{
|
||||
z.istate.mode = 13;
|
||||
z.msg = "unknown compression method";
|
||||
z.istate.marker = 5;
|
||||
break;
|
||||
}
|
||||
if ((z.istate.method >> 4) + 8 > z.istate.wbits)
|
||||
{
|
||||
z.istate.mode = 13;
|
||||
z.msg = "invalid window size";
|
||||
z.istate.marker = 5;
|
||||
break;
|
||||
}
|
||||
z.istate.mode = 1;
|
||||
goto case 1;
|
||||
case 1:
|
||||
{
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
int num2 = z.next_in[z.next_in_index++] & 0xFF;
|
||||
if (((z.istate.method << 8) + num2) % 31 != 0)
|
||||
{
|
||||
z.istate.mode = 13;
|
||||
z.msg = "incorrect header check";
|
||||
z.istate.marker = 5;
|
||||
break;
|
||||
}
|
||||
if ((num2 & 0x20) == 0)
|
||||
{
|
||||
z.istate.mode = 7;
|
||||
break;
|
||||
}
|
||||
z.istate.mode = 2;
|
||||
goto case 2;
|
||||
}
|
||||
case 2:
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
z.istate.need = ((z.next_in[z.next_in_index++] & 0xFF) << 24) & -16777216;
|
||||
z.istate.mode = 3;
|
||||
goto case 3;
|
||||
case 3:
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
z.istate.need += (long)((ulong)((z.next_in[z.next_in_index++] & 0xFF) << 16) & 0xFF0000uL);
|
||||
z.istate.mode = 4;
|
||||
goto case 4;
|
||||
case 4:
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
z.istate.need += (long)((ulong)((z.next_in[z.next_in_index++] & 0xFF) << 8) & 0xFF00uL);
|
||||
z.istate.mode = 5;
|
||||
goto case 5;
|
||||
case 5:
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
z.istate.need += (long)((ulong)z.next_in[z.next_in_index++] & 0xFFuL);
|
||||
z.adler = z.istate.need;
|
||||
z.istate.mode = 6;
|
||||
return 2;
|
||||
case 6:
|
||||
z.istate.mode = 13;
|
||||
z.msg = "need dictionary";
|
||||
z.istate.marker = 0;
|
||||
return -2;
|
||||
case 7:
|
||||
num = z.istate.blocks.proc(z, num);
|
||||
switch (num)
|
||||
{
|
||||
case -3:
|
||||
z.istate.mode = 13;
|
||||
z.istate.marker = 0;
|
||||
goto end_IL_0031;
|
||||
case 0:
|
||||
num = f;
|
||||
break;
|
||||
}
|
||||
if (num != 1)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.istate.blocks.reset(z, z.istate.was);
|
||||
if (z.istate.nowrap != 0)
|
||||
{
|
||||
z.istate.mode = 12;
|
||||
break;
|
||||
}
|
||||
z.istate.mode = 8;
|
||||
goto case 8;
|
||||
case 8:
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
z.istate.need = ((z.next_in[z.next_in_index++] & 0xFF) << 24) & -16777216;
|
||||
z.istate.mode = 9;
|
||||
goto case 9;
|
||||
case 9:
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
z.istate.need += (long)((ulong)((z.next_in[z.next_in_index++] & 0xFF) << 16) & 0xFF0000uL);
|
||||
z.istate.mode = 10;
|
||||
goto case 10;
|
||||
case 10:
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
z.istate.need += (long)((ulong)((z.next_in[z.next_in_index++] & 0xFF) << 8) & 0xFF00uL);
|
||||
z.istate.mode = 11;
|
||||
goto case 11;
|
||||
case 11:
|
||||
if (z.avail_in == 0)
|
||||
{
|
||||
return num;
|
||||
}
|
||||
num = f;
|
||||
z.avail_in--;
|
||||
z.total_in++;
|
||||
z.istate.need += (long)((ulong)z.next_in[z.next_in_index++] & 0xFFuL);
|
||||
if ((int)z.istate.was[0] != (int)z.istate.need)
|
||||
{
|
||||
z.istate.mode = 13;
|
||||
z.msg = "incorrect data check";
|
||||
z.istate.marker = 5;
|
||||
break;
|
||||
}
|
||||
z.istate.mode = 12;
|
||||
goto case 12;
|
||||
case 12:
|
||||
return 1;
|
||||
case 13:
|
||||
return -3;
|
||||
default:
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
end_IL_0031:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal int inflateSetDictionary(ZStream z, byte[] dictionary, int dictLength)
|
||||
{
|
||||
int start = 0;
|
||||
int num = dictLength;
|
||||
if (z == null || z.istate == null || z.istate.mode != 6)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
if (z._adler.adler32(1L, dictionary, 0, dictLength) != z.adler)
|
||||
{
|
||||
return -3;
|
||||
}
|
||||
z.adler = z._adler.adler32(0L, null, 0, 0);
|
||||
if (num >= 1 << z.istate.wbits)
|
||||
{
|
||||
num = (1 << z.istate.wbits) - 1;
|
||||
start = dictLength - num;
|
||||
}
|
||||
z.istate.blocks.set_dictionary(dictionary, start, num);
|
||||
z.istate.mode = 7;
|
||||
return 0;
|
||||
}
|
||||
|
||||
internal int inflateSync(ZStream z)
|
||||
{
|
||||
if (z == null || z.istate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
if (z.istate.mode != 13)
|
||||
{
|
||||
z.istate.mode = 13;
|
||||
z.istate.marker = 0;
|
||||
}
|
||||
int num;
|
||||
if ((num = z.avail_in) == 0)
|
||||
{
|
||||
return -5;
|
||||
}
|
||||
int num2 = z.next_in_index;
|
||||
int num3 = z.istate.marker;
|
||||
while (num != 0 && num3 < 4)
|
||||
{
|
||||
num3 = ((z.next_in[num2] != mark[num3]) ? ((z.next_in[num2] == 0) ? (4 - num3) : 0) : (num3 + 1));
|
||||
num2++;
|
||||
num--;
|
||||
}
|
||||
z.total_in += num2 - z.next_in_index;
|
||||
z.next_in_index = num2;
|
||||
z.avail_in = num;
|
||||
z.istate.marker = num3;
|
||||
if (num3 != 4)
|
||||
{
|
||||
return -3;
|
||||
}
|
||||
long total_in = z.total_in;
|
||||
long total_out = z.total_out;
|
||||
inflateReset(z);
|
||||
z.total_in = total_in;
|
||||
z.total_out = total_out;
|
||||
z.istate.mode = 7;
|
||||
return 0;
|
||||
}
|
||||
|
||||
internal int inflateSyncPoint(ZStream z)
|
||||
{
|
||||
if (z == null || z.istate == null || z.istate.blocks == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
return z.istate.blocks.sync_point();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f0c7c284a3a696541b95af8150097d7d
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,126 +0,0 @@
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
internal sealed class StaticTree
|
||||
{
|
||||
private const int MAX_BITS = 15;
|
||||
|
||||
private const int BL_CODES = 19;
|
||||
|
||||
private const int D_CODES = 30;
|
||||
|
||||
private const int LITERALS = 256;
|
||||
|
||||
private const int LENGTH_CODES = 29;
|
||||
|
||||
private static readonly int L_CODES;
|
||||
|
||||
internal const int MAX_BL_BITS = 7;
|
||||
|
||||
internal static readonly short[] static_ltree;
|
||||
|
||||
internal static readonly short[] static_dtree;
|
||||
|
||||
internal static StaticTree static_l_desc;
|
||||
|
||||
internal static StaticTree static_d_desc;
|
||||
|
||||
internal static StaticTree static_bl_desc;
|
||||
|
||||
internal short[] static_tree;
|
||||
|
||||
internal int[] extra_bits;
|
||||
|
||||
internal int extra_base;
|
||||
|
||||
internal int elems;
|
||||
|
||||
internal int max_length;
|
||||
|
||||
internal StaticTree(short[] static_tree, int[] extra_bits, int extra_base, int elems, int max_length)
|
||||
{
|
||||
this.static_tree = static_tree;
|
||||
this.extra_bits = extra_bits;
|
||||
this.extra_base = extra_base;
|
||||
this.elems = elems;
|
||||
this.max_length = max_length;
|
||||
}
|
||||
|
||||
static StaticTree()
|
||||
{
|
||||
L_CODES = 286;
|
||||
static_ltree = new short[576]
|
||||
{
|
||||
12, 8, 140, 8, 76, 8, 204, 8, 44, 8,
|
||||
172, 8, 108, 8, 236, 8, 28, 8, 156, 8,
|
||||
92, 8, 220, 8, 60, 8, 188, 8, 124, 8,
|
||||
252, 8, 2, 8, 130, 8, 66, 8, 194, 8,
|
||||
34, 8, 162, 8, 98, 8, 226, 8, 18, 8,
|
||||
146, 8, 82, 8, 210, 8, 50, 8, 178, 8,
|
||||
114, 8, 242, 8, 10, 8, 138, 8, 74, 8,
|
||||
202, 8, 42, 8, 170, 8, 106, 8, 234, 8,
|
||||
26, 8, 154, 8, 90, 8, 218, 8, 58, 8,
|
||||
186, 8, 122, 8, 250, 8, 6, 8, 134, 8,
|
||||
70, 8, 198, 8, 38, 8, 166, 8, 102, 8,
|
||||
230, 8, 22, 8, 150, 8, 86, 8, 214, 8,
|
||||
54, 8, 182, 8, 118, 8, 246, 8, 14, 8,
|
||||
142, 8, 78, 8, 206, 8, 46, 8, 174, 8,
|
||||
110, 8, 238, 8, 30, 8, 158, 8, 94, 8,
|
||||
222, 8, 62, 8, 190, 8, 126, 8, 254, 8,
|
||||
1, 8, 129, 8, 65, 8, 193, 8, 33, 8,
|
||||
161, 8, 97, 8, 225, 8, 17, 8, 145, 8,
|
||||
81, 8, 209, 8, 49, 8, 177, 8, 113, 8,
|
||||
241, 8, 9, 8, 137, 8, 73, 8, 201, 8,
|
||||
41, 8, 169, 8, 105, 8, 233, 8, 25, 8,
|
||||
153, 8, 89, 8, 217, 8, 57, 8, 185, 8,
|
||||
121, 8, 249, 8, 5, 8, 133, 8, 69, 8,
|
||||
197, 8, 37, 8, 165, 8, 101, 8, 229, 8,
|
||||
21, 8, 149, 8, 85, 8, 213, 8, 53, 8,
|
||||
181, 8, 117, 8, 245, 8, 13, 8, 141, 8,
|
||||
77, 8, 205, 8, 45, 8, 173, 8, 109, 8,
|
||||
237, 8, 29, 8, 157, 8, 93, 8, 221, 8,
|
||||
61, 8, 189, 8, 125, 8, 253, 8, 19, 9,
|
||||
275, 9, 147, 9, 403, 9, 83, 9, 339, 9,
|
||||
211, 9, 467, 9, 51, 9, 307, 9, 179, 9,
|
||||
435, 9, 115, 9, 371, 9, 243, 9, 499, 9,
|
||||
11, 9, 267, 9, 139, 9, 395, 9, 75, 9,
|
||||
331, 9, 203, 9, 459, 9, 43, 9, 299, 9,
|
||||
171, 9, 427, 9, 107, 9, 363, 9, 235, 9,
|
||||
491, 9, 27, 9, 283, 9, 155, 9, 411, 9,
|
||||
91, 9, 347, 9, 219, 9, 475, 9, 59, 9,
|
||||
315, 9, 187, 9, 443, 9, 123, 9, 379, 9,
|
||||
251, 9, 507, 9, 7, 9, 263, 9, 135, 9,
|
||||
391, 9, 71, 9, 327, 9, 199, 9, 455, 9,
|
||||
39, 9, 295, 9, 167, 9, 423, 9, 103, 9,
|
||||
359, 9, 231, 9, 487, 9, 23, 9, 279, 9,
|
||||
151, 9, 407, 9, 87, 9, 343, 9, 215, 9,
|
||||
471, 9, 55, 9, 311, 9, 183, 9, 439, 9,
|
||||
119, 9, 375, 9, 247, 9, 503, 9, 15, 9,
|
||||
271, 9, 143, 9, 399, 9, 79, 9, 335, 9,
|
||||
207, 9, 463, 9, 47, 9, 303, 9, 175, 9,
|
||||
431, 9, 111, 9, 367, 9, 239, 9, 495, 9,
|
||||
31, 9, 287, 9, 159, 9, 415, 9, 95, 9,
|
||||
351, 9, 223, 9, 479, 9, 63, 9, 319, 9,
|
||||
191, 9, 447, 9, 127, 9, 383, 9, 255, 9,
|
||||
511, 9, 0, 7, 64, 7, 32, 7, 96, 7,
|
||||
16, 7, 80, 7, 48, 7, 112, 7, 8, 7,
|
||||
72, 7, 40, 7, 104, 7, 24, 7, 88, 7,
|
||||
56, 7, 120, 7, 4, 7, 68, 7, 36, 7,
|
||||
100, 7, 20, 7, 84, 7, 52, 7, 116, 7,
|
||||
3, 8, 131, 8, 67, 8, 195, 8, 35, 8,
|
||||
163, 8, 99, 8, 227, 8
|
||||
};
|
||||
static_dtree = new short[60]
|
||||
{
|
||||
0, 5, 16, 5, 8, 5, 24, 5, 4, 5,
|
||||
20, 5, 12, 5, 28, 5, 2, 5, 18, 5,
|
||||
10, 5, 26, 5, 6, 5, 22, 5, 14, 5,
|
||||
30, 5, 1, 5, 17, 5, 9, 5, 25, 5,
|
||||
5, 5, 21, 5, 13, 5, 29, 5, 3, 5,
|
||||
19, 5, 11, 5, 27, 5, 7, 5, 23, 5
|
||||
};
|
||||
static_l_desc = new StaticTree(static_ltree, Tree.extra_lbits, 257, L_CODES, 15);
|
||||
static_d_desc = new StaticTree(static_dtree, Tree.extra_dbits, 0, 30, 15);
|
||||
static_bl_desc = new StaticTree(null, Tree.extra_blbits, 0, 19, 7);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6d5351586a003ca4da795d2ce129ba8e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,104 +0,0 @@
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
public class SupportClass
|
||||
{
|
||||
public static long Identity(long literal)
|
||||
{
|
||||
return literal;
|
||||
}
|
||||
|
||||
public static ulong Identity(ulong literal)
|
||||
{
|
||||
return literal;
|
||||
}
|
||||
|
||||
public static float Identity(float literal)
|
||||
{
|
||||
return literal;
|
||||
}
|
||||
|
||||
public static double Identity(double literal)
|
||||
{
|
||||
return literal;
|
||||
}
|
||||
|
||||
public static int URShift(int number, int bits)
|
||||
{
|
||||
if (number >= 0)
|
||||
{
|
||||
return number >> bits;
|
||||
}
|
||||
return (number >> bits) + (2 << ~bits);
|
||||
}
|
||||
|
||||
public static int URShift(int number, long bits)
|
||||
{
|
||||
return URShift(number, (int)bits);
|
||||
}
|
||||
|
||||
public static long URShift(long number, int bits)
|
||||
{
|
||||
if (number >= 0)
|
||||
{
|
||||
return number >> bits;
|
||||
}
|
||||
return (number >> bits) + (2L << ~bits);
|
||||
}
|
||||
|
||||
public static long URShift(long number, long bits)
|
||||
{
|
||||
return URShift(number, (int)bits);
|
||||
}
|
||||
|
||||
public static int ReadInput(Stream sourceStream, byte[] target, int start, int count)
|
||||
{
|
||||
if (target.Length == 0)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
byte[] array = new byte[target.Length];
|
||||
int num = sourceStream.Read(array, start, count);
|
||||
if (num == 0)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
for (int i = start; i < start + num; i++)
|
||||
{
|
||||
target[i] = array[i];
|
||||
}
|
||||
return num;
|
||||
}
|
||||
|
||||
public static int ReadInput(TextReader sourceTextReader, byte[] target, int start, int count)
|
||||
{
|
||||
if (target.Length == 0)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
char[] array = new char[target.Length];
|
||||
int num = sourceTextReader.Read(array, start, count);
|
||||
if (num == 0)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
for (int i = start; i < start + num; i++)
|
||||
{
|
||||
target[i] = (byte)array[i];
|
||||
}
|
||||
return num;
|
||||
}
|
||||
|
||||
public static byte[] ToByteArray(string sourceString)
|
||||
{
|
||||
return Encoding.UTF8.GetBytes(sourceString);
|
||||
}
|
||||
|
||||
public static char[] ToCharArray(byte[] byteArray)
|
||||
{
|
||||
return Encoding.UTF8.GetChars(byteArray);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 192062774319d2845b2df445d3215268
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,341 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
internal sealed class Tree
|
||||
{
|
||||
private const int MAX_BITS = 15;
|
||||
|
||||
private const int BL_CODES = 19;
|
||||
|
||||
private const int D_CODES = 30;
|
||||
|
||||
private const int LITERALS = 256;
|
||||
|
||||
private const int LENGTH_CODES = 29;
|
||||
|
||||
private static readonly int L_CODES = 286;
|
||||
|
||||
private static readonly int HEAP_SIZE = 2 * L_CODES + 1;
|
||||
|
||||
internal const int MAX_BL_BITS = 7;
|
||||
|
||||
internal const int END_BLOCK = 256;
|
||||
|
||||
internal const int REP_3_6 = 16;
|
||||
|
||||
internal const int REPZ_3_10 = 17;
|
||||
|
||||
internal const int REPZ_11_138 = 18;
|
||||
|
||||
internal static readonly int[] extra_lbits = new int[29]
|
||||
{
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1,
|
||||
1, 1, 2, 2, 2, 2, 3, 3, 3, 3,
|
||||
4, 4, 4, 4, 5, 5, 5, 5, 0
|
||||
};
|
||||
|
||||
internal static readonly int[] extra_dbits = new int[30]
|
||||
{
|
||||
0, 0, 0, 0, 1, 1, 2, 2, 3, 3,
|
||||
4, 4, 5, 5, 6, 6, 7, 7, 8, 8,
|
||||
9, 9, 10, 10, 11, 11, 12, 12, 13, 13
|
||||
};
|
||||
|
||||
internal static readonly int[] extra_blbits = new int[19]
|
||||
{
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0, 0, 0, 0, 0, 2, 3, 7
|
||||
};
|
||||
|
||||
internal static readonly byte[] bl_order = new byte[19]
|
||||
{
|
||||
16, 17, 18, 0, 8, 7, 9, 6, 10, 5,
|
||||
11, 4, 12, 3, 13, 2, 14, 1, 15
|
||||
};
|
||||
|
||||
internal const int Buf_size = 16;
|
||||
|
||||
internal const int DIST_CODE_LEN = 512;
|
||||
|
||||
internal static readonly byte[] _dist_code = new byte[512]
|
||||
{
|
||||
0, 1, 2, 3, 4, 4, 5, 5, 6, 6,
|
||||
6, 6, 7, 7, 7, 7, 8, 8, 8, 8,
|
||||
8, 8, 8, 8, 9, 9, 9, 9, 9, 9,
|
||||
9, 9, 10, 10, 10, 10, 10, 10, 10, 10,
|
||||
10, 10, 10, 10, 10, 10, 10, 10, 11, 11,
|
||||
11, 11, 11, 11, 11, 11, 11, 11, 11, 11,
|
||||
11, 11, 11, 11, 12, 12, 12, 12, 12, 12,
|
||||
12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
|
||||
12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
|
||||
12, 12, 12, 12, 12, 12, 13, 13, 13, 13,
|
||||
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
|
||||
13, 13, 13, 13, 13, 13, 13, 13, 13, 13,
|
||||
13, 13, 13, 13, 13, 13, 13, 13, 14, 14,
|
||||
14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
|
||||
14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
|
||||
14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
|
||||
14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
|
||||
14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
|
||||
14, 14, 14, 14, 14, 14, 14, 14, 14, 14,
|
||||
14, 14, 15, 15, 15, 15, 15, 15, 15, 15,
|
||||
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||||
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||||
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||||
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||||
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
||||
15, 15, 15, 15, 15, 15, 0, 0, 16, 17,
|
||||
18, 18, 19, 19, 20, 20, 20, 20, 21, 21,
|
||||
21, 21, 22, 22, 22, 22, 22, 22, 22, 22,
|
||||
23, 23, 23, 23, 23, 23, 23, 23, 24, 24,
|
||||
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
||||
24, 24, 24, 24, 25, 25, 25, 25, 25, 25,
|
||||
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
||||
26, 26, 26, 26, 26, 26, 26, 26, 26, 26,
|
||||
26, 26, 26, 26, 26, 26, 26, 26, 26, 26,
|
||||
26, 26, 26, 26, 26, 26, 26, 26, 26, 26,
|
||||
26, 26, 27, 27, 27, 27, 27, 27, 27, 27,
|
||||
27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
|
||||
27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
|
||||
27, 27, 27, 27, 28, 28, 28, 28, 28, 28,
|
||||
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
|
||||
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
|
||||
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
|
||||
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
|
||||
28, 28, 28, 28, 28, 28, 28, 28, 28, 28,
|
||||
28, 28, 28, 28, 28, 28, 28, 28, 29, 29,
|
||||
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
|
||||
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
|
||||
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
|
||||
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
|
||||
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
|
||||
29, 29, 29, 29, 29, 29, 29, 29, 29, 29,
|
||||
29, 29
|
||||
};
|
||||
|
||||
internal static readonly byte[] _length_code = new byte[256]
|
||||
{
|
||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 8,
|
||||
9, 9, 10, 10, 11, 11, 12, 12, 12, 12,
|
||||
13, 13, 13, 13, 14, 14, 14, 14, 15, 15,
|
||||
15, 15, 16, 16, 16, 16, 16, 16, 16, 16,
|
||||
17, 17, 17, 17, 17, 17, 17, 17, 18, 18,
|
||||
18, 18, 18, 18, 18, 18, 19, 19, 19, 19,
|
||||
19, 19, 19, 19, 20, 20, 20, 20, 20, 20,
|
||||
20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
|
||||
21, 21, 21, 21, 21, 21, 21, 21, 21, 21,
|
||||
21, 21, 21, 21, 21, 21, 22, 22, 22, 22,
|
||||
22, 22, 22, 22, 22, 22, 22, 22, 22, 22,
|
||||
22, 22, 23, 23, 23, 23, 23, 23, 23, 23,
|
||||
23, 23, 23, 23, 23, 23, 23, 23, 24, 24,
|
||||
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
||||
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
||||
24, 24, 24, 24, 24, 24, 24, 24, 24, 24,
|
||||
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
||||
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
||||
25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
|
||||
25, 25, 26, 26, 26, 26, 26, 26, 26, 26,
|
||||
26, 26, 26, 26, 26, 26, 26, 26, 26, 26,
|
||||
26, 26, 26, 26, 26, 26, 26, 26, 26, 26,
|
||||
26, 26, 26, 26, 27, 27, 27, 27, 27, 27,
|
||||
27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
|
||||
27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
|
||||
27, 27, 27, 27, 27, 28
|
||||
};
|
||||
|
||||
internal static readonly int[] base_length = new int[29]
|
||||
{
|
||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 10,
|
||||
12, 14, 16, 20, 24, 28, 32, 40, 48, 56,
|
||||
64, 80, 96, 112, 128, 160, 192, 224, 0
|
||||
};
|
||||
|
||||
internal static readonly int[] base_dist = new int[30]
|
||||
{
|
||||
0, 1, 2, 3, 4, 6, 8, 12, 16, 24,
|
||||
32, 48, 64, 96, 128, 192, 256, 384, 512, 768,
|
||||
1024, 1536, 2048, 3072, 4096, 6144, 8192, 12288, 16384, 24576
|
||||
};
|
||||
|
||||
internal short[] dyn_tree;
|
||||
|
||||
internal int max_code;
|
||||
|
||||
internal StaticTree stat_desc;
|
||||
|
||||
internal static int d_code(int dist)
|
||||
{
|
||||
if (dist >= 256)
|
||||
{
|
||||
return _dist_code[256 + SupportClass.URShift(dist, 7)];
|
||||
}
|
||||
return _dist_code[dist];
|
||||
}
|
||||
|
||||
internal void gen_bitlen(Deflate s)
|
||||
{
|
||||
short[] array = dyn_tree;
|
||||
short[] static_tree = stat_desc.static_tree;
|
||||
int[] extra_bits = stat_desc.extra_bits;
|
||||
int extra_base = stat_desc.extra_base;
|
||||
int max_length = stat_desc.max_length;
|
||||
int num = 0;
|
||||
for (int i = 0; i <= 15; i++)
|
||||
{
|
||||
s.bl_count[i] = 0;
|
||||
}
|
||||
array[s.heap[s.heap_max] * 2 + 1] = 0;
|
||||
int j;
|
||||
for (j = s.heap_max + 1; j < HEAP_SIZE; j++)
|
||||
{
|
||||
int num2 = s.heap[j];
|
||||
int i = array[array[num2 * 2 + 1] * 2 + 1] + 1;
|
||||
if (i > max_length)
|
||||
{
|
||||
i = max_length;
|
||||
num++;
|
||||
}
|
||||
array[num2 * 2 + 1] = (short)i;
|
||||
if (num2 <= max_code)
|
||||
{
|
||||
s.bl_count[i]++;
|
||||
int num3 = 0;
|
||||
if (num2 >= extra_base)
|
||||
{
|
||||
num3 = extra_bits[num2 - extra_base];
|
||||
}
|
||||
short num4 = array[num2 * 2];
|
||||
s.opt_len += num4 * (i + num3);
|
||||
if (static_tree != null)
|
||||
{
|
||||
s.static_len += num4 * (static_tree[num2 * 2 + 1] + num3);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (num == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
do
|
||||
{
|
||||
int i = max_length - 1;
|
||||
while (s.bl_count[i] == 0)
|
||||
{
|
||||
i--;
|
||||
}
|
||||
s.bl_count[i]--;
|
||||
s.bl_count[i + 1] = (short)(s.bl_count[i + 1] + 2);
|
||||
s.bl_count[max_length]--;
|
||||
num -= 2;
|
||||
}
|
||||
while (num > 0);
|
||||
for (int i = max_length; i != 0; i--)
|
||||
{
|
||||
int num2 = s.bl_count[i];
|
||||
while (num2 != 0)
|
||||
{
|
||||
int num5 = s.heap[--j];
|
||||
if (num5 <= max_code)
|
||||
{
|
||||
if (array[num5 * 2 + 1] != i)
|
||||
{
|
||||
s.opt_len = (int)(s.opt_len + ((long)i - (long)array[num5 * 2 + 1]) * array[num5 * 2]);
|
||||
array[num5 * 2 + 1] = (short)i;
|
||||
}
|
||||
num2--;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal void build_tree(Deflate s)
|
||||
{
|
||||
short[] array = dyn_tree;
|
||||
short[] static_tree = stat_desc.static_tree;
|
||||
int elems = stat_desc.elems;
|
||||
int num = -1;
|
||||
s.heap_len = 0;
|
||||
s.heap_max = HEAP_SIZE;
|
||||
for (int i = 0; i < elems; i++)
|
||||
{
|
||||
if (array[i * 2] != 0)
|
||||
{
|
||||
num = (s.heap[++s.heap_len] = i);
|
||||
s.depth[i] = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
array[i * 2 + 1] = 0;
|
||||
}
|
||||
}
|
||||
int num2;
|
||||
while (s.heap_len < 2)
|
||||
{
|
||||
num2 = (s.heap[++s.heap_len] = ((num < 2) ? (++num) : 0));
|
||||
array[num2 * 2] = 1;
|
||||
s.depth[num2] = 0;
|
||||
s.opt_len--;
|
||||
if (static_tree != null)
|
||||
{
|
||||
s.static_len -= static_tree[num2 * 2 + 1];
|
||||
}
|
||||
}
|
||||
max_code = num;
|
||||
for (int i = s.heap_len / 2; i >= 1; i--)
|
||||
{
|
||||
s.pqdownheap(array, i);
|
||||
}
|
||||
num2 = elems;
|
||||
do
|
||||
{
|
||||
int i = s.heap[1];
|
||||
s.heap[1] = s.heap[s.heap_len--];
|
||||
s.pqdownheap(array, 1);
|
||||
int num3 = s.heap[1];
|
||||
s.heap[--s.heap_max] = i;
|
||||
s.heap[--s.heap_max] = num3;
|
||||
array[num2 * 2] = (short)(array[i * 2] + array[num3 * 2]);
|
||||
s.depth[num2] = (byte)(Math.Max(s.depth[i], s.depth[num3]) + 1);
|
||||
array[i * 2 + 1] = (array[num3 * 2 + 1] = (short)num2);
|
||||
s.heap[1] = num2++;
|
||||
s.pqdownheap(array, 1);
|
||||
}
|
||||
while (s.heap_len >= 2);
|
||||
s.heap[--s.heap_max] = s.heap[1];
|
||||
gen_bitlen(s);
|
||||
gen_codes(array, num, s.bl_count);
|
||||
}
|
||||
|
||||
internal static void gen_codes(short[] tree, int max_code, short[] bl_count)
|
||||
{
|
||||
short[] array = new short[16];
|
||||
short num = 0;
|
||||
for (int i = 1; i <= 15; i++)
|
||||
{
|
||||
num = (array[i] = (short)(num + bl_count[i - 1] << 1));
|
||||
}
|
||||
for (int j = 0; j <= max_code; j++)
|
||||
{
|
||||
int num2 = tree[j * 2 + 1];
|
||||
if (num2 != 0)
|
||||
{
|
||||
tree[j * 2] = (short)bi_reverse(array[num2]++, num2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal static int bi_reverse(int code, int len)
|
||||
{
|
||||
int num = 0;
|
||||
do
|
||||
{
|
||||
num |= code & 1;
|
||||
code = SupportClass.URShift(code, 1);
|
||||
num <<= 1;
|
||||
}
|
||||
while (--len > 0);
|
||||
return SupportClass.URShift(num, 1);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 09b036b3d0426fe42bf7d0dd3bd0cca9
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,134 +0,0 @@
|
||||
using System.IO;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
public class ZInputStream : BinaryReader
|
||||
{
|
||||
protected ZStream z = new ZStream();
|
||||
|
||||
protected int bufsize = 512;
|
||||
|
||||
protected int flush;
|
||||
|
||||
protected byte[] buf;
|
||||
|
||||
protected byte[] buf1 = new byte[1];
|
||||
|
||||
protected bool compress;
|
||||
|
||||
internal Stream in_Renamed;
|
||||
|
||||
internal bool nomoreinput;
|
||||
|
||||
public virtual int FlushMode
|
||||
{
|
||||
get
|
||||
{
|
||||
return flush;
|
||||
}
|
||||
set
|
||||
{
|
||||
flush = value;
|
||||
}
|
||||
}
|
||||
|
||||
public virtual long TotalIn => z.total_in;
|
||||
|
||||
public virtual long TotalOut => z.total_out;
|
||||
|
||||
internal void InitBlock()
|
||||
{
|
||||
flush = 0;
|
||||
buf = new byte[bufsize];
|
||||
}
|
||||
|
||||
public ZInputStream(Stream in_Renamed)
|
||||
: base(in_Renamed)
|
||||
{
|
||||
InitBlock();
|
||||
this.in_Renamed = in_Renamed;
|
||||
z.inflateInit();
|
||||
compress = false;
|
||||
z.next_in = buf;
|
||||
z.next_in_index = 0;
|
||||
z.avail_in = 0;
|
||||
}
|
||||
|
||||
public ZInputStream(Stream in_Renamed, int level)
|
||||
: base(in_Renamed)
|
||||
{
|
||||
InitBlock();
|
||||
this.in_Renamed = in_Renamed;
|
||||
z.deflateInit(level);
|
||||
compress = true;
|
||||
z.next_in = buf;
|
||||
z.next_in_index = 0;
|
||||
z.avail_in = 0;
|
||||
}
|
||||
|
||||
public override int Read()
|
||||
{
|
||||
if (read(buf1, 0, 1) == -1)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
return buf1[0] & 0xFF;
|
||||
}
|
||||
|
||||
public int read(byte[] b, int off, int len)
|
||||
{
|
||||
if (len == 0)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
z.next_out = b;
|
||||
z.next_out_index = off;
|
||||
z.avail_out = len;
|
||||
int num;
|
||||
do
|
||||
{
|
||||
if (z.avail_in == 0 && !nomoreinput)
|
||||
{
|
||||
z.next_in_index = 0;
|
||||
z.avail_in = SupportClass.ReadInput(in_Renamed, buf, 0, bufsize);
|
||||
if (z.avail_in == -1)
|
||||
{
|
||||
z.avail_in = 0;
|
||||
nomoreinput = true;
|
||||
}
|
||||
}
|
||||
num = ((!compress) ? z.inflate(flush) : z.deflate(flush));
|
||||
if (nomoreinput && num == -5)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
if (num != 0 && num != 1)
|
||||
{
|
||||
throw new ZStreamException((compress ? "de" : "in") + "flating: " + z.msg);
|
||||
}
|
||||
if (nomoreinput && z.avail_out == len)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
while (z.avail_out == len && num == 0);
|
||||
return len - z.avail_out;
|
||||
}
|
||||
|
||||
public long skip(long n)
|
||||
{
|
||||
int num = 512;
|
||||
if (n < num)
|
||||
{
|
||||
num = (int)n;
|
||||
}
|
||||
byte[] array = new byte[num];
|
||||
return SupportClass.ReadInput(BaseStream, array, 0, array.Length);
|
||||
}
|
||||
|
||||
public override void Close()
|
||||
{
|
||||
in_Renamed.Close();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 005058a4e4fb325449d934f67cfa0ce9
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,193 +0,0 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
public class ZOutputStream : Stream
|
||||
{
|
||||
protected internal ZStream z = new ZStream();
|
||||
|
||||
protected internal int bufsize = 4096;
|
||||
|
||||
protected internal int flush_Renamed_Field;
|
||||
|
||||
protected internal byte[] buf;
|
||||
|
||||
protected internal byte[] buf1 = new byte[1];
|
||||
|
||||
protected internal bool compress;
|
||||
|
||||
private Stream out_Renamed;
|
||||
|
||||
public virtual int FlushMode
|
||||
{
|
||||
get
|
||||
{
|
||||
return flush_Renamed_Field;
|
||||
}
|
||||
set
|
||||
{
|
||||
flush_Renamed_Field = value;
|
||||
}
|
||||
}
|
||||
|
||||
public virtual long TotalIn => z.total_in;
|
||||
|
||||
public virtual long TotalOut => z.total_out;
|
||||
|
||||
public override bool CanRead => false;
|
||||
|
||||
public override bool CanSeek => false;
|
||||
|
||||
public override bool CanWrite => false;
|
||||
|
||||
public override long Length => 0L;
|
||||
|
||||
public override long Position
|
||||
{
|
||||
get
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
private void InitBlock()
|
||||
{
|
||||
flush_Renamed_Field = 0;
|
||||
buf = new byte[bufsize];
|
||||
}
|
||||
|
||||
public ZOutputStream(Stream out_Renamed)
|
||||
{
|
||||
InitBlock();
|
||||
this.out_Renamed = out_Renamed;
|
||||
z.inflateInit();
|
||||
compress = false;
|
||||
}
|
||||
|
||||
public ZOutputStream(Stream out_Renamed, int level)
|
||||
{
|
||||
InitBlock();
|
||||
this.out_Renamed = out_Renamed;
|
||||
z.deflateInit(level);
|
||||
compress = true;
|
||||
}
|
||||
|
||||
public void WriteByte(int b)
|
||||
{
|
||||
buf1[0] = (byte)b;
|
||||
Write(buf1, 0, 1);
|
||||
}
|
||||
|
||||
public override void WriteByte(byte b)
|
||||
{
|
||||
WriteByte(b);
|
||||
}
|
||||
|
||||
public override void Write(byte[] b1, int off, int len)
|
||||
{
|
||||
if (len == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
byte[] array = new byte[b1.Length];
|
||||
Array.Copy(b1, 0, array, 0, b1.Length);
|
||||
z.next_in = array;
|
||||
z.next_in_index = off;
|
||||
z.avail_in = len;
|
||||
do
|
||||
{
|
||||
z.next_out = buf;
|
||||
z.next_out_index = 0;
|
||||
z.avail_out = bufsize;
|
||||
int num = ((!compress) ? z.inflate(flush_Renamed_Field) : z.deflate(flush_Renamed_Field));
|
||||
if (num != 0 && num != 1)
|
||||
{
|
||||
throw new ZStreamException((compress ? "de" : "in") + "flating: " + z.msg);
|
||||
}
|
||||
out_Renamed.Write(buf, 0, bufsize - z.avail_out);
|
||||
}
|
||||
while (z.avail_in > 0 || z.avail_out == 0);
|
||||
}
|
||||
|
||||
public virtual void finish()
|
||||
{
|
||||
do
|
||||
{
|
||||
z.next_out = buf;
|
||||
z.next_out_index = 0;
|
||||
z.avail_out = bufsize;
|
||||
int num = ((!compress) ? z.inflate(4) : z.deflate(4));
|
||||
if (num != 1 && num != 0)
|
||||
{
|
||||
throw new ZStreamException((compress ? "de" : "in") + "flating: " + z.msg);
|
||||
}
|
||||
if (bufsize - z.avail_out > 0)
|
||||
{
|
||||
out_Renamed.Write(buf, 0, bufsize - z.avail_out);
|
||||
}
|
||||
}
|
||||
while (z.avail_in > 0 || z.avail_out == 0);
|
||||
try
|
||||
{
|
||||
Flush();
|
||||
}
|
||||
catch
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
public virtual void end()
|
||||
{
|
||||
if (compress)
|
||||
{
|
||||
z.deflateEnd();
|
||||
}
|
||||
else
|
||||
{
|
||||
z.inflateEnd();
|
||||
}
|
||||
z.free();
|
||||
z = null;
|
||||
}
|
||||
|
||||
public override void Close()
|
||||
{
|
||||
try
|
||||
{
|
||||
finish();
|
||||
}
|
||||
catch
|
||||
{
|
||||
}
|
||||
finally
|
||||
{
|
||||
end();
|
||||
out_Renamed.Close();
|
||||
out_Renamed = null;
|
||||
}
|
||||
}
|
||||
|
||||
public override void Flush()
|
||||
{
|
||||
out_Renamed.Flush();
|
||||
}
|
||||
|
||||
public override int Read(byte[] buffer, int offset, int count)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
public override void SetLength(long value)
|
||||
{
|
||||
}
|
||||
|
||||
public override long Seek(long offset, SeekOrigin origin)
|
||||
{
|
||||
return 0L;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7c3c209ceb37db9499856d560dffd88e
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,224 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
public sealed class ZStream
|
||||
{
|
||||
private const int MAX_WBITS = 15;
|
||||
|
||||
private static readonly int DEF_WBITS = 15;
|
||||
|
||||
private const int Z_NO_FLUSH = 0;
|
||||
|
||||
private const int Z_PARTIAL_FLUSH = 1;
|
||||
|
||||
private const int Z_SYNC_FLUSH = 2;
|
||||
|
||||
private const int Z_FULL_FLUSH = 3;
|
||||
|
||||
private const int Z_FINISH = 4;
|
||||
|
||||
private const int MAX_MEM_LEVEL = 9;
|
||||
|
||||
private const int Z_OK = 0;
|
||||
|
||||
private const int Z_STREAM_END = 1;
|
||||
|
||||
private const int Z_NEED_DICT = 2;
|
||||
|
||||
private const int Z_ERRNO = -1;
|
||||
|
||||
private const int Z_STREAM_ERROR = -2;
|
||||
|
||||
private const int Z_DATA_ERROR = -3;
|
||||
|
||||
private const int Z_MEM_ERROR = -4;
|
||||
|
||||
private const int Z_BUF_ERROR = -5;
|
||||
|
||||
private const int Z_VERSION_ERROR = -6;
|
||||
|
||||
public byte[] next_in;
|
||||
|
||||
public int next_in_index;
|
||||
|
||||
public int avail_in;
|
||||
|
||||
public long total_in;
|
||||
|
||||
public byte[] next_out;
|
||||
|
||||
public int next_out_index;
|
||||
|
||||
public int avail_out;
|
||||
|
||||
public long total_out;
|
||||
|
||||
public string msg;
|
||||
|
||||
internal Deflate dstate;
|
||||
|
||||
internal Inflate istate;
|
||||
|
||||
internal int data_type;
|
||||
|
||||
public long adler;
|
||||
|
||||
internal Adler32 _adler = new Adler32();
|
||||
|
||||
public int inflateInit()
|
||||
{
|
||||
return inflateInit(DEF_WBITS);
|
||||
}
|
||||
|
||||
public int inflateInit(int w)
|
||||
{
|
||||
istate = new Inflate();
|
||||
return istate.inflateInit(this, w);
|
||||
}
|
||||
|
||||
public int inflate(int f)
|
||||
{
|
||||
if (istate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
return istate.inflate(this, f);
|
||||
}
|
||||
|
||||
public int inflateEnd()
|
||||
{
|
||||
if (istate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
int result = istate.inflateEnd(this);
|
||||
istate = null;
|
||||
return result;
|
||||
}
|
||||
|
||||
public int inflateSync()
|
||||
{
|
||||
if (istate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
return istate.inflateSync(this);
|
||||
}
|
||||
|
||||
public int inflateSetDictionary(byte[] dictionary, int dictLength)
|
||||
{
|
||||
if (istate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
return istate.inflateSetDictionary(this, dictionary, dictLength);
|
||||
}
|
||||
|
||||
public int deflateInit(int level)
|
||||
{
|
||||
return deflateInit(level, 15);
|
||||
}
|
||||
|
||||
public int deflateInit(int level, int bits)
|
||||
{
|
||||
dstate = new Deflate();
|
||||
return dstate.deflateInit(this, level, bits);
|
||||
}
|
||||
|
||||
public int deflate(int flush)
|
||||
{
|
||||
if (dstate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
return dstate.deflate(this, flush);
|
||||
}
|
||||
|
||||
public int deflateEnd()
|
||||
{
|
||||
if (dstate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
int result = dstate.deflateEnd();
|
||||
dstate = null;
|
||||
return result;
|
||||
}
|
||||
|
||||
public int deflateParams(int level, int strategy)
|
||||
{
|
||||
if (dstate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
return dstate.deflateParams(this, level, strategy);
|
||||
}
|
||||
|
||||
public int deflateSetDictionary(byte[] dictionary, int dictLength)
|
||||
{
|
||||
if (dstate == null)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
return dstate.deflateSetDictionary(this, dictionary, dictLength);
|
||||
}
|
||||
|
||||
internal void flush_pending()
|
||||
{
|
||||
int pending = dstate.pending;
|
||||
if (pending > avail_out)
|
||||
{
|
||||
pending = avail_out;
|
||||
}
|
||||
if (pending != 0)
|
||||
{
|
||||
if (dstate.pending_buf.Length > dstate.pending_out && next_out.Length > next_out_index && dstate.pending_buf.Length >= dstate.pending_out + pending)
|
||||
{
|
||||
_ = next_out.Length;
|
||||
_ = next_out_index + pending;
|
||||
}
|
||||
Array.Copy(dstate.pending_buf, dstate.pending_out, next_out, next_out_index, pending);
|
||||
next_out_index += pending;
|
||||
dstate.pending_out += pending;
|
||||
total_out += pending;
|
||||
avail_out -= pending;
|
||||
dstate.pending -= pending;
|
||||
if (dstate.pending == 0)
|
||||
{
|
||||
dstate.pending_out = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal int read_buf(byte[] buf, int start, int size)
|
||||
{
|
||||
int num = avail_in;
|
||||
if (num > size)
|
||||
{
|
||||
num = size;
|
||||
}
|
||||
if (num == 0)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
avail_in -= num;
|
||||
if (dstate.noheader == 0)
|
||||
{
|
||||
adler = _adler.adler32(adler, next_in, next_in_index, num);
|
||||
}
|
||||
Array.Copy(next_in, next_in_index, buf, start, num);
|
||||
next_in_index += num;
|
||||
total_in += num;
|
||||
return num;
|
||||
}
|
||||
|
||||
public void free()
|
||||
{
|
||||
next_in = null;
|
||||
next_out = null;
|
||||
msg = null;
|
||||
_adler = null;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a7dac276d0775834da0bd77f4b3bca54
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,16 +0,0 @@
|
||||
using System.IO;
|
||||
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
public class ZStreamException : IOException
|
||||
{
|
||||
public ZStreamException()
|
||||
{
|
||||
}
|
||||
|
||||
public ZStreamException(string s)
|
||||
: base(s)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9059b75bb33b8f546a3634f6c1f15418
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,54 +0,0 @@
|
||||
namespace ComponentAce.Compression.Libs.zlib
|
||||
{
|
||||
public sealed class zlibConst
|
||||
{
|
||||
private const string version_Renamed_Field = "1.0.2";
|
||||
|
||||
public const int Z_NO_COMPRESSION = 0;
|
||||
|
||||
public const int Z_BEST_SPEED = 1;
|
||||
|
||||
public const int Z_BEST_COMPRESSION = 9;
|
||||
|
||||
public const int Z_DEFAULT_COMPRESSION = -1;
|
||||
|
||||
public const int Z_FILTERED = 1;
|
||||
|
||||
public const int Z_HUFFMAN_ONLY = 2;
|
||||
|
||||
public const int Z_DEFAULT_STRATEGY = 0;
|
||||
|
||||
public const int Z_NO_FLUSH = 0;
|
||||
|
||||
public const int Z_PARTIAL_FLUSH = 1;
|
||||
|
||||
public const int Z_SYNC_FLUSH = 2;
|
||||
|
||||
public const int Z_FULL_FLUSH = 3;
|
||||
|
||||
public const int Z_FINISH = 4;
|
||||
|
||||
public const int Z_OK = 0;
|
||||
|
||||
public const int Z_STREAM_END = 1;
|
||||
|
||||
public const int Z_NEED_DICT = 2;
|
||||
|
||||
public const int Z_ERRNO = -1;
|
||||
|
||||
public const int Z_STREAM_ERROR = -2;
|
||||
|
||||
public const int Z_DATA_ERROR = -3;
|
||||
|
||||
public const int Z_MEM_ERROR = -4;
|
||||
|
||||
public const int Z_BUF_ERROR = -5;
|
||||
|
||||
public const int Z_VERSION_ERROR = -6;
|
||||
|
||||
public static string version()
|
||||
{
|
||||
return "1.0.2";
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 189574d77199372408e8e294f65e987a
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,113 +0,0 @@
|
||||
using System.Security.Cryptography;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public class Crc32 : HashAlgorithm
|
||||
{
|
||||
public const uint DefaultPolynomial = 3988292384u;
|
||||
|
||||
public const uint DefaultSeed = uint.MaxValue;
|
||||
|
||||
private uint hash;
|
||||
|
||||
private uint seed;
|
||||
|
||||
private uint[] table;
|
||||
|
||||
private static uint[] defaultTable;
|
||||
|
||||
public override int HashSize => 32;
|
||||
|
||||
public Crc32()
|
||||
{
|
||||
table = InitializeTable(3988292384u);
|
||||
seed = uint.MaxValue;
|
||||
Initialize();
|
||||
}
|
||||
|
||||
public Crc32(uint polynomial, uint seed)
|
||||
{
|
||||
table = InitializeTable(polynomial);
|
||||
this.seed = seed;
|
||||
Initialize();
|
||||
}
|
||||
|
||||
public override void Initialize()
|
||||
{
|
||||
hash = seed;
|
||||
}
|
||||
|
||||
protected override void HashCore(byte[] buffer, int start, int length)
|
||||
{
|
||||
hash = CalculateHash(table, hash, buffer, start, length);
|
||||
}
|
||||
|
||||
protected override byte[] HashFinal()
|
||||
{
|
||||
return HashValue = UInt32ToBigEndianBytes(~hash);
|
||||
}
|
||||
|
||||
public static uint Compute(byte[] buffer)
|
||||
{
|
||||
return ~CalculateHash(InitializeTable(3988292384u), uint.MaxValue, buffer, 0, buffer.Length);
|
||||
}
|
||||
|
||||
public static uint Compute(uint seed, byte[] buffer)
|
||||
{
|
||||
return ~CalculateHash(InitializeTable(3988292384u), seed, buffer, 0, buffer.Length);
|
||||
}
|
||||
|
||||
public static uint Compute(uint polynomial, uint seed, byte[] buffer)
|
||||
{
|
||||
return ~CalculateHash(InitializeTable(polynomial), seed, buffer, 0, buffer.Length);
|
||||
}
|
||||
|
||||
private static uint[] InitializeTable(uint polynomial)
|
||||
{
|
||||
if (polynomial == 3988292384u && defaultTable != null)
|
||||
{
|
||||
return defaultTable;
|
||||
}
|
||||
uint[] array = new uint[256];
|
||||
for (int i = 0; i < 256; i++)
|
||||
{
|
||||
uint num = (uint)i;
|
||||
for (int j = 0; j < 8; j++)
|
||||
{
|
||||
num = (((num & 1) != 1) ? (num >> 1) : ((num >> 1) ^ polynomial));
|
||||
}
|
||||
array[i] = num;
|
||||
}
|
||||
if (polynomial == 3988292384u)
|
||||
{
|
||||
defaultTable = array;
|
||||
}
|
||||
return array;
|
||||
}
|
||||
|
||||
private static uint CalculateHash(uint[] table, uint seed, byte[] buffer, int start, int size)
|
||||
{
|
||||
uint num = seed;
|
||||
for (int i = start; i < size; i++)
|
||||
{
|
||||
num = (num >> 8) ^ table[buffer[i] ^ (num & 0xFF)];
|
||||
}
|
||||
return num;
|
||||
}
|
||||
|
||||
private byte[] UInt32ToBigEndianBytes(uint x)
|
||||
{
|
||||
return new byte[4]
|
||||
{
|
||||
(byte)((x >> 24) & 0xFFu),
|
||||
(byte)((x >> 16) & 0xFFu),
|
||||
(byte)((x >> 8) & 0xFFu),
|
||||
(byte)(x & 0xFFu)
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6735365dc98ead64aacb1d9fa1b79cbc
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,9 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
public enum EmuRegion
|
||||
{
|
||||
NTSC,
|
||||
PALB,
|
||||
DENDY
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f091eb23796c9f2469aca986fc0c75d6
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,104 +0,0 @@
|
||||
using System.IO;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public class EmuSettings : ISettings
|
||||
{
|
||||
public string SnapsFolder = "Snaps";
|
||||
|
||||
public string WavesFolder = "SoundRecords";
|
||||
|
||||
public string SnapsFormat = ".png";
|
||||
|
||||
public bool SnapsReplace;
|
||||
|
||||
public int RegionSetting;
|
||||
|
||||
public string StateFolder = "States";
|
||||
|
||||
public string GameGenieFolder = "GMCodes";
|
||||
|
||||
public string SRAMFolder = "Srams";
|
||||
|
||||
public bool SaveSRAMAtEmuShutdown = true;
|
||||
|
||||
public EmuSettings(string path)
|
||||
: base(path)
|
||||
{
|
||||
}
|
||||
|
||||
public override void LoadSettings()
|
||||
{
|
||||
base.LoadSettings();
|
||||
if (MyNesMain.WorkingFolder == null)
|
||||
{
|
||||
MyNesMain.MakeWorkingFolder();
|
||||
}
|
||||
if (SnapsFolder == "Snaps")
|
||||
{
|
||||
SnapsFolder = Path.Combine(MyNesMain.WorkingFolder, "Snaps");
|
||||
}
|
||||
if (StateFolder == "States")
|
||||
{
|
||||
StateFolder = Path.Combine(MyNesMain.WorkingFolder, "States");
|
||||
}
|
||||
if (GameGenieFolder == "GMCodes")
|
||||
{
|
||||
GameGenieFolder = Path.Combine(MyNesMain.WorkingFolder, "GMCodes");
|
||||
}
|
||||
if (SRAMFolder == "Srams")
|
||||
{
|
||||
SRAMFolder = Path.Combine(MyNesMain.WorkingFolder, "Srams");
|
||||
}
|
||||
if (WavesFolder == "SoundRecords")
|
||||
{
|
||||
WavesFolder = Path.Combine(MyNesMain.WorkingFolder, "SoundRecords");
|
||||
}
|
||||
try
|
||||
{
|
||||
Directory.CreateDirectory(WavesFolder);
|
||||
}
|
||||
catch
|
||||
{
|
||||
Tracer.WriteError("Cannot create sound records folder !!");
|
||||
}
|
||||
try
|
||||
{
|
||||
Directory.CreateDirectory(SnapsFolder);
|
||||
}
|
||||
catch
|
||||
{
|
||||
Tracer.WriteError("Cannot create snaps folder !!");
|
||||
}
|
||||
try
|
||||
{
|
||||
Directory.CreateDirectory(StateFolder);
|
||||
}
|
||||
catch
|
||||
{
|
||||
Tracer.WriteError("Cannot create states folder !!");
|
||||
}
|
||||
try
|
||||
{
|
||||
Directory.CreateDirectory(SRAMFolder);
|
||||
}
|
||||
catch
|
||||
{
|
||||
Tracer.WriteError("Cannot create srams folder !!");
|
||||
}
|
||||
try
|
||||
{
|
||||
Directory.CreateDirectory(GameGenieFolder);
|
||||
}
|
||||
catch
|
||||
{
|
||||
Tracer.WriteError("Cannot create game genie codes folder !!");
|
||||
}
|
||||
StateHandler.StateFolder = StateFolder;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f3b3769eaf4c4d54f9ac64295acde90b
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,387 +0,0 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal class Eprom
|
||||
{
|
||||
private enum EpromDevice
|
||||
{
|
||||
X24C01,
|
||||
X24C02
|
||||
}
|
||||
|
||||
private enum EpromMode
|
||||
{
|
||||
Data,
|
||||
Addressing,
|
||||
Idle,
|
||||
Read,
|
||||
Write,
|
||||
Ack,
|
||||
NotAck,
|
||||
AckWait
|
||||
}
|
||||
|
||||
private byte[] data;
|
||||
|
||||
private EpromMode mode;
|
||||
|
||||
private EpromMode nextmode;
|
||||
|
||||
private EpromDevice device;
|
||||
|
||||
private bool psda;
|
||||
|
||||
private bool pscl;
|
||||
|
||||
private int output;
|
||||
|
||||
private int cbit;
|
||||
|
||||
private int caddress;
|
||||
|
||||
private int cdata;
|
||||
|
||||
private bool isRead;
|
||||
|
||||
private bool cSCL;
|
||||
|
||||
private bool cSDA;
|
||||
|
||||
public Eprom(int memorySize)
|
||||
{
|
||||
Console.WriteLine("Initializing Eprom ...");
|
||||
data = new byte[memorySize];
|
||||
device = ((memorySize == 256) ? EpromDevice.X24C02 : EpromDevice.X24C01);
|
||||
Console.WriteLine("Eprom memory size = " + memorySize);
|
||||
Console.WriteLine("Eprom device = " + device);
|
||||
}
|
||||
|
||||
public void HardReset()
|
||||
{
|
||||
pscl = false;
|
||||
psda = false;
|
||||
mode = EpromMode.Idle;
|
||||
nextmode = EpromMode.Idle;
|
||||
cbit = 0;
|
||||
caddress = 0;
|
||||
cdata = 0;
|
||||
isRead = false;
|
||||
output = 16;
|
||||
}
|
||||
|
||||
public void Write(int address, byte data)
|
||||
{
|
||||
cSCL = (data & 0x20) == 32;
|
||||
cSDA = (data & 0x40) == 64;
|
||||
if (pscl && (!cSDA & psda))
|
||||
{
|
||||
Start();
|
||||
}
|
||||
else if (pscl && (cSDA & !psda))
|
||||
{
|
||||
Stop();
|
||||
}
|
||||
else if (cSCL & !pscl)
|
||||
{
|
||||
switch (device)
|
||||
{
|
||||
case EpromDevice.X24C01:
|
||||
RiseX24C01((data >> 6) & 1);
|
||||
break;
|
||||
case EpromDevice.X24C02:
|
||||
RiseX24C02((data >> 6) & 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
else if (!cSCL & pscl)
|
||||
{
|
||||
switch (device)
|
||||
{
|
||||
case EpromDevice.X24C01:
|
||||
FallX24C01();
|
||||
break;
|
||||
case EpromDevice.X24C02:
|
||||
FallX24C02();
|
||||
break;
|
||||
}
|
||||
}
|
||||
pscl = cSCL;
|
||||
psda = cSDA;
|
||||
}
|
||||
|
||||
public byte Read(int address)
|
||||
{
|
||||
return (byte)output;
|
||||
}
|
||||
|
||||
private void Start()
|
||||
{
|
||||
switch (device)
|
||||
{
|
||||
case EpromDevice.X24C01:
|
||||
mode = EpromMode.Addressing;
|
||||
cbit = 0;
|
||||
caddress = 0;
|
||||
output = 16;
|
||||
break;
|
||||
case EpromDevice.X24C02:
|
||||
mode = EpromMode.Data;
|
||||
cbit = 0;
|
||||
output = 16;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void Stop()
|
||||
{
|
||||
mode = EpromMode.Idle;
|
||||
output = 16;
|
||||
}
|
||||
|
||||
private void RiseX24C01(int bit)
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case EpromMode.Addressing:
|
||||
if (cbit < 7)
|
||||
{
|
||||
caddress &= ~(1 << cbit);
|
||||
caddress |= bit << cbit++;
|
||||
}
|
||||
else if (cbit < 8)
|
||||
{
|
||||
cbit = 8;
|
||||
if (bit != 0)
|
||||
{
|
||||
nextmode = EpromMode.Read;
|
||||
cdata = data[caddress];
|
||||
}
|
||||
else
|
||||
{
|
||||
nextmode = EpromMode.Write;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case EpromMode.Ack:
|
||||
output = 0;
|
||||
break;
|
||||
case EpromMode.Read:
|
||||
if (cbit < 8)
|
||||
{
|
||||
output = (((cdata & (1 << cbit++)) != 0) ? 16 : 0);
|
||||
}
|
||||
break;
|
||||
case EpromMode.Write:
|
||||
if (cbit < 8)
|
||||
{
|
||||
cdata &= ~(1 << cbit);
|
||||
cdata |= bit << cbit++;
|
||||
}
|
||||
break;
|
||||
case EpromMode.AckWait:
|
||||
if (bit == 0)
|
||||
{
|
||||
nextmode = EpromMode.Idle;
|
||||
}
|
||||
break;
|
||||
case EpromMode.Idle:
|
||||
case EpromMode.NotAck:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void RiseX24C02(int bit)
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case EpromMode.Data:
|
||||
if (cbit < 8)
|
||||
{
|
||||
cdata &= ~(1 << 7 - cbit);
|
||||
cdata |= bit << 7 - cbit++;
|
||||
}
|
||||
break;
|
||||
case EpromMode.Addressing:
|
||||
if (cbit < 8)
|
||||
{
|
||||
caddress &= ~(1 << 7 - cbit);
|
||||
caddress |= bit << 7 - cbit++;
|
||||
}
|
||||
break;
|
||||
case EpromMode.Read:
|
||||
if (cbit < 8)
|
||||
{
|
||||
output = (((cdata & (1 << 7 - cbit++)) != 0) ? 16 : 0);
|
||||
}
|
||||
break;
|
||||
case EpromMode.Write:
|
||||
if (cbit < 8)
|
||||
{
|
||||
cdata &= ~(1 << 7 - cbit);
|
||||
cdata |= bit << 7 - cbit++;
|
||||
}
|
||||
break;
|
||||
case EpromMode.NotAck:
|
||||
output = 16;
|
||||
break;
|
||||
case EpromMode.Ack:
|
||||
output = 0;
|
||||
break;
|
||||
case EpromMode.AckWait:
|
||||
if (bit == 0)
|
||||
{
|
||||
nextmode = EpromMode.Read;
|
||||
cdata = data[caddress];
|
||||
}
|
||||
break;
|
||||
case EpromMode.Idle:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void FallX24C01()
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case EpromMode.Addressing:
|
||||
if (cbit == 8)
|
||||
{
|
||||
mode = EpromMode.Ack;
|
||||
output = 16;
|
||||
}
|
||||
break;
|
||||
case EpromMode.Ack:
|
||||
mode = nextmode;
|
||||
cbit = 0;
|
||||
output = 16;
|
||||
break;
|
||||
case EpromMode.Read:
|
||||
if (cbit == 8)
|
||||
{
|
||||
mode = EpromMode.AckWait;
|
||||
caddress = (caddress + 1) & 0x7F;
|
||||
}
|
||||
break;
|
||||
case EpromMode.Write:
|
||||
if (cbit == 8)
|
||||
{
|
||||
mode = EpromMode.Ack;
|
||||
nextmode = EpromMode.Idle;
|
||||
data[caddress] = (byte)cdata;
|
||||
caddress = (caddress + 1) & 0x7F;
|
||||
}
|
||||
break;
|
||||
case EpromMode.Idle:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void FallX24C02()
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
case EpromMode.Data:
|
||||
if (cbit != 8)
|
||||
{
|
||||
break;
|
||||
}
|
||||
if ((cdata & 0xA0) == 160)
|
||||
{
|
||||
cbit = 0;
|
||||
mode = EpromMode.Ack;
|
||||
isRead = (cdata & 1) == 1;
|
||||
output = 16;
|
||||
if (isRead)
|
||||
{
|
||||
nextmode = EpromMode.Read;
|
||||
cdata = data[caddress];
|
||||
}
|
||||
else
|
||||
{
|
||||
nextmode = EpromMode.Addressing;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
mode = EpromMode.NotAck;
|
||||
nextmode = EpromMode.Idle;
|
||||
output = 16;
|
||||
}
|
||||
break;
|
||||
case EpromMode.Addressing:
|
||||
if (cbit == 8)
|
||||
{
|
||||
cbit = 0;
|
||||
mode = EpromMode.Ack;
|
||||
nextmode = (isRead ? EpromMode.Idle : EpromMode.Write);
|
||||
output = 16;
|
||||
}
|
||||
break;
|
||||
case EpromMode.Read:
|
||||
if (cbit == 8)
|
||||
{
|
||||
mode = EpromMode.AckWait;
|
||||
caddress = (caddress + 1) & 0xFF;
|
||||
}
|
||||
break;
|
||||
case EpromMode.Write:
|
||||
if (cbit == 8)
|
||||
{
|
||||
cbit = 0;
|
||||
mode = EpromMode.Ack;
|
||||
nextmode = EpromMode.Write;
|
||||
data[caddress] = (byte)cdata;
|
||||
caddress = (caddress + 1) & 0xFF;
|
||||
}
|
||||
break;
|
||||
case EpromMode.NotAck:
|
||||
mode = EpromMode.Idle;
|
||||
cbit = 0;
|
||||
output = 16;
|
||||
break;
|
||||
case EpromMode.Ack:
|
||||
case EpromMode.AckWait:
|
||||
mode = nextmode;
|
||||
cbit = 0;
|
||||
output = 16;
|
||||
break;
|
||||
case EpromMode.Idle:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public void SaveState(BinaryWriter stream)
|
||||
{
|
||||
stream.Write(data);
|
||||
stream.Write((int)mode);
|
||||
stream.Write((int)nextmode);
|
||||
stream.Write(psda);
|
||||
stream.Write(pscl);
|
||||
stream.Write(output);
|
||||
stream.Write(cbit);
|
||||
stream.Write(caddress);
|
||||
stream.Write(cdata);
|
||||
stream.Write(isRead);
|
||||
}
|
||||
|
||||
public void LoadState(BinaryReader stream)
|
||||
{
|
||||
stream.Read(data, 0, data.Length);
|
||||
mode = (EpromMode)stream.ReadInt32();
|
||||
nextmode = (EpromMode)stream.ReadInt32();
|
||||
psda = stream.ReadBoolean();
|
||||
pscl = stream.ReadBoolean();
|
||||
output = stream.ReadInt32();
|
||||
cbit = stream.ReadInt32();
|
||||
caddress = stream.ReadInt32();
|
||||
cdata = stream.ReadInt32();
|
||||
isRead = stream.ReadBoolean();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bf9a039fae5474f4d9699753440312cf
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,60 +0,0 @@
|
||||
using System.IO;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal abstract class FFE : Board
|
||||
{
|
||||
protected bool irqEnable;
|
||||
|
||||
protected int irqCounter;
|
||||
|
||||
internal override void WriteEX(ref ushort address, ref byte data)
|
||||
{
|
||||
switch (address)
|
||||
{
|
||||
case 17665:
|
||||
irqEnable = false;
|
||||
NesEmu.IRQFlags &= -9;
|
||||
break;
|
||||
case 17666:
|
||||
irqCounter = (irqCounter & 0xFF00) | data;
|
||||
break;
|
||||
case 17667:
|
||||
irqEnable = true;
|
||||
irqCounter = (irqCounter & 0xFF) | (data << 8);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
internal override void OnCPUClock()
|
||||
{
|
||||
if (irqEnable)
|
||||
{
|
||||
irqCounter++;
|
||||
if (irqCounter >= 65535)
|
||||
{
|
||||
irqCounter = 0;
|
||||
NesEmu.IRQFlags |= 8;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal override void WriteStateData(ref BinaryWriter bin)
|
||||
{
|
||||
base.WriteStateData(ref bin);
|
||||
bin.Write(irqEnable);
|
||||
bin.Write(irqCounter);
|
||||
}
|
||||
|
||||
internal override void ReadStateData(ref BinaryReader bin)
|
||||
{
|
||||
base.ReadStateData(ref bin);
|
||||
irqEnable = bin.ReadBoolean();
|
||||
irqCounter = bin.ReadInt32();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 05457d6300519b04a966034b34ad95df
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,156 +0,0 @@
|
||||
using System.Collections.Generic;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public class GameGenie
|
||||
{
|
||||
public string[] LettersTable = new string[16]
|
||||
{
|
||||
"A", "P", "Z", "L", "G", "I", "T", "Y", "E", "O",
|
||||
"X", "U", "K", "S", "V", "N"
|
||||
};
|
||||
|
||||
public byte[] HEXTable = new byte[16]
|
||||
{
|
||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
|
||||
10, 11, 12, 13, 14, 15
|
||||
};
|
||||
|
||||
private List<string> lettersTable = new List<string>();
|
||||
|
||||
public GameGenie()
|
||||
{
|
||||
lettersTable = new List<string>(LettersTable);
|
||||
}
|
||||
|
||||
public int GetCodeAsHEX(string code)
|
||||
{
|
||||
int num = 0;
|
||||
int num2 = code.ToCharArray().Length - 1;
|
||||
char[] array = code.ToCharArray();
|
||||
foreach (char c in array)
|
||||
{
|
||||
num |= HEXTable[lettersTable.IndexOf(c.ToString())] << num2 * 4;
|
||||
num2--;
|
||||
}
|
||||
return num;
|
||||
}
|
||||
|
||||
public byte GetGGValue(int code, int length)
|
||||
{
|
||||
int num = 0;
|
||||
int num2 = 0;
|
||||
int num3 = 0;
|
||||
int num4 = 0;
|
||||
int num5 = 0;
|
||||
int num6 = 0;
|
||||
int num7 = 0;
|
||||
int num8 = 0;
|
||||
switch (length)
|
||||
{
|
||||
case 6:
|
||||
num8 = (code & 0x800000) >> 23;
|
||||
num7 = (code & 0x40000) >> 18;
|
||||
num6 = (code & 0x20000) >> 17;
|
||||
num5 = (code & 0x10000) >> 16;
|
||||
num4 = (code & 8) >> 3;
|
||||
num3 = (code & 0x400000) >> 22;
|
||||
num2 = (code & 0x200000) >> 21;
|
||||
num = (code & 0x100000) >> 20;
|
||||
break;
|
||||
case 8:
|
||||
num8 = (code >> 31) & 1;
|
||||
num7 = (code >> 27) & 1;
|
||||
num6 = (code >> 26) & 1;
|
||||
num5 = (code >> 25) & 1;
|
||||
num4 = (code >> 3) & 1;
|
||||
num3 = (code >> 30) & 1;
|
||||
num2 = (code >> 29) & 1;
|
||||
num = (code >> 28) & 1;
|
||||
break;
|
||||
}
|
||||
return (byte)((num8 << 7) | (num7 << 6) | (num6 << 5) | (num5 << 4) | (num4 << 3) | (num3 << 2) | (num2 << 1) | num);
|
||||
}
|
||||
|
||||
public int GetGGAddress(int code, int length)
|
||||
{
|
||||
int num = 0;
|
||||
int num2 = 0;
|
||||
int num3 = 0;
|
||||
int num4 = 0;
|
||||
int num5 = 0;
|
||||
int num6 = 0;
|
||||
int num7 = 0;
|
||||
int num8 = 0;
|
||||
int num9 = 0;
|
||||
int num10 = 0;
|
||||
int num11 = 0;
|
||||
int num12 = 0;
|
||||
int num13 = 0;
|
||||
int num14 = 0;
|
||||
int num15 = 0;
|
||||
switch (length)
|
||||
{
|
||||
case 6:
|
||||
num15 = (code >> 10) & 1;
|
||||
num14 = (code >> 9) & 1;
|
||||
num13 = (code >> 8) & 1;
|
||||
num12 = (code >> 7) & 1;
|
||||
num11 = (code >> 2) & 1;
|
||||
num10 = (code >> 1) & 1;
|
||||
num9 = code & 1;
|
||||
num8 = (code >> 19) & 1;
|
||||
num7 = (code >> 14) & 1;
|
||||
num6 = (code >> 13) & 1;
|
||||
num5 = (code >> 12) & 1;
|
||||
num4 = (code >> 11) & 1;
|
||||
num3 = (code >> 6) & 1;
|
||||
num2 = (code >> 5) & 1;
|
||||
num = (code >> 4) & 1;
|
||||
break;
|
||||
case 8:
|
||||
num15 = (code >> 18) & 1;
|
||||
num14 = (code >> 17) & 1;
|
||||
num13 = (code >> 16) & 1;
|
||||
num12 = (code >> 15) & 1;
|
||||
num11 = (code >> 10) & 1;
|
||||
num10 = (code >> 9) & 1;
|
||||
num9 = (code >> 8) & 1;
|
||||
num8 = (code >> 25) & 1;
|
||||
num7 = (code >> 22) & 1;
|
||||
num6 = (code >> 21) & 1;
|
||||
num5 = (code >> 20) & 1;
|
||||
num4 = (code >> 19) & 1;
|
||||
num3 = (code >> 14) & 1;
|
||||
num2 = (code >> 13) & 1;
|
||||
num = (code >> 12) & 1;
|
||||
break;
|
||||
}
|
||||
return (num15 << 14) | (num14 << 13) | (num13 << 12) | (num12 << 11) | (num11 << 10) | (num10 << 9) | (num9 << 8) | (num8 << 7) | (num7 << 6) | (num6 << 5) | (num5 << 4) | (num4 << 3) | (num3 << 2) | (num2 << 1) | num;
|
||||
}
|
||||
|
||||
public byte GetGGCompareValue(int code)
|
||||
{
|
||||
int num = 0;
|
||||
int num2 = 0;
|
||||
int num3 = 0;
|
||||
int num4 = 0;
|
||||
int num5 = 0;
|
||||
int num6 = 0;
|
||||
int num7 = 0;
|
||||
int num8 = (code >> 7) & 1;
|
||||
num7 = (code >> 2) & 1;
|
||||
num6 = (code >> 1) & 1;
|
||||
num5 = code & 1;
|
||||
num4 = (code >> 11) & 1;
|
||||
num3 = (code >> 6) & 1;
|
||||
num2 = (code >> 5) & 1;
|
||||
num = (code >> 4) & 1;
|
||||
return (byte)((num8 << 7) | (num7 << 6) | (num6 << 5) | (num5 << 4) | (num4 << 3) | (num3 << 2) | (num2 << 1) | num);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c440f367166527145bec0f405ad3b587
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,19 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
public struct GameGenieCode
|
||||
{
|
||||
public string Name;
|
||||
|
||||
public string Descreption;
|
||||
|
||||
public int Address;
|
||||
|
||||
public byte Compare;
|
||||
|
||||
public byte Value;
|
||||
|
||||
public bool IsCompare;
|
||||
|
||||
public bool Enabled;
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 0be47c6f15a83aa48b41cf4e18b98e6d
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,4 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
internal delegate void GetIsPlaying(out bool playing);
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d5e4818002a2f3140b2da0af5b1639fa
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,12 +0,0 @@
|
||||
using System;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal class HassIssuesAttribute : Attribute
|
||||
{
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4ea93c2200789cd499484183e415c4c6
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,178 +0,0 @@
|
||||
using System.IO;
|
||||
using System.Security.Cryptography;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public class HelperTools
|
||||
{
|
||||
public static string GetFileSize(string FilePath)
|
||||
{
|
||||
if (File.Exists(Path.GetFullPath(FilePath)))
|
||||
{
|
||||
FileInfo fileInfo = new FileInfo(FilePath);
|
||||
string text = " Byte";
|
||||
double num = fileInfo.Length;
|
||||
if (fileInfo.Length >= 1024)
|
||||
{
|
||||
num = (double)fileInfo.Length / 1024.0;
|
||||
text = " KB";
|
||||
}
|
||||
if (num >= 1024.0)
|
||||
{
|
||||
num /= 1024.0;
|
||||
text = " MB";
|
||||
}
|
||||
if (num >= 1024.0)
|
||||
{
|
||||
num /= 1024.0;
|
||||
text = " GB";
|
||||
}
|
||||
return num.ToString("F2") + text;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public static string GetSize(long size)
|
||||
{
|
||||
string text = " Byte";
|
||||
double num = size;
|
||||
if (size >= 1024)
|
||||
{
|
||||
num = (double)size / 1024.0;
|
||||
text = " KB";
|
||||
}
|
||||
if (num >= 1024.0)
|
||||
{
|
||||
num /= 1024.0;
|
||||
text = " MB";
|
||||
}
|
||||
if (num >= 1024.0)
|
||||
{
|
||||
num /= 1024.0;
|
||||
text = " GB";
|
||||
}
|
||||
if (num < 0.0)
|
||||
{
|
||||
return "???";
|
||||
}
|
||||
return num.ToString("F2") + text;
|
||||
}
|
||||
|
||||
public static string GetSize(ulong size)
|
||||
{
|
||||
string text = " Byte";
|
||||
double num = size;
|
||||
if (size >= 1024)
|
||||
{
|
||||
num = (double)size / 1024.0;
|
||||
text = " KB";
|
||||
}
|
||||
if (num >= 1024.0)
|
||||
{
|
||||
num /= 1024.0;
|
||||
text = " MB";
|
||||
}
|
||||
if (num >= 1024.0)
|
||||
{
|
||||
num /= 1024.0;
|
||||
text = " GB";
|
||||
}
|
||||
if (num < 0.0)
|
||||
{
|
||||
return "???";
|
||||
}
|
||||
return num.ToString("F2") + text;
|
||||
}
|
||||
|
||||
public static long GetSizeAsBytes(string FilePath)
|
||||
{
|
||||
if (File.Exists(FilePath))
|
||||
{
|
||||
return new FileInfo(FilePath).Length;
|
||||
}
|
||||
return 0L;
|
||||
}
|
||||
|
||||
public static bool IsStringContainsNumbers(string text)
|
||||
{
|
||||
char[] array = text.ToCharArray();
|
||||
foreach (char c in array)
|
||||
{
|
||||
int result = 0;
|
||||
if (int.TryParse(c.ToString(), out result))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public static string CalculateCRC(string filePath)
|
||||
{
|
||||
if (File.Exists(filePath))
|
||||
{
|
||||
Stream stream = new FileStream(filePath, FileMode.Open, FileAccess.Read);
|
||||
byte[] buffer = new byte[stream.Length];
|
||||
stream.Read(buffer, 0, (int)stream.Length);
|
||||
stream.Close();
|
||||
string text = "";
|
||||
byte[] array = new Crc32().ComputeHash(buffer);
|
||||
foreach (byte b in array)
|
||||
{
|
||||
text += b.ToString("x2").ToLower();
|
||||
}
|
||||
return text;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public static string CalculateCRC(string filePath, int bytesToSkip)
|
||||
{
|
||||
if (File.Exists(filePath))
|
||||
{
|
||||
Stream stream = new FileStream(filePath, FileMode.Open, FileAccess.Read);
|
||||
stream.Read(new byte[bytesToSkip], 0, bytesToSkip);
|
||||
byte[] buffer = new byte[stream.Length - bytesToSkip];
|
||||
stream.Read(buffer, 0, (int)(stream.Length - bytesToSkip));
|
||||
stream.Close();
|
||||
string text = "";
|
||||
byte[] array = new Crc32().ComputeHash(buffer);
|
||||
foreach (byte b in array)
|
||||
{
|
||||
text += b.ToString("x2").ToLower();
|
||||
}
|
||||
return text;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public static string CalculateSHA1(string filePath)
|
||||
{
|
||||
if (File.Exists(filePath))
|
||||
{
|
||||
byte[] buffer = GetBuffer(filePath);
|
||||
string text = "";
|
||||
byte[] array = new SHA1Managed().ComputeHash(buffer);
|
||||
foreach (byte b in array)
|
||||
{
|
||||
text += b.ToString("x2").ToLower();
|
||||
}
|
||||
return text;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
public static byte[] GetBuffer(string filePath)
|
||||
{
|
||||
Stream stream = new FileStream(filePath, FileMode.Open, FileAccess.Read);
|
||||
byte[] array = new byte[stream.Length];
|
||||
stream.Read(array, 0, (int)stream.Length);
|
||||
stream.Close();
|
||||
return array;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6edadafe72c2a374fb7abbbf03b14cb6
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,29 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
public interface IAudioProvider
|
||||
{
|
||||
string Name { get; }
|
||||
|
||||
string ID { get; }
|
||||
|
||||
bool AllowBufferChange { get; }
|
||||
|
||||
bool AllowFrequencyChange { get; }
|
||||
|
||||
void SubmitSamples(ref short[] buffer, ref int samples_added);
|
||||
|
||||
void TogglePause(bool paused);
|
||||
|
||||
void GetIsPlaying(out bool playing);
|
||||
|
||||
void Initialize();
|
||||
|
||||
void ShutDown();
|
||||
|
||||
void Reset();
|
||||
|
||||
void SignalToggle(bool started);
|
||||
|
||||
void SetVolume(int Vol);
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4366c4b2360b48d4c87ff24651f8dec8
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,23 +0,0 @@
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public abstract class IJoypadConnecter
|
||||
{
|
||||
protected byte DATA;
|
||||
|
||||
public abstract void Update();
|
||||
|
||||
public virtual void Destroy()
|
||||
{
|
||||
}
|
||||
|
||||
public virtual byte GetData()
|
||||
{
|
||||
return DATA;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c613333925a94f44c85ef86668ea7636
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,95 +0,0 @@
|
||||
using System.IO;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
public class INes : IRom
|
||||
{
|
||||
public bool HasBattery { get; private set; }
|
||||
|
||||
public bool IsPlaychoice10 { get; private set; }
|
||||
|
||||
public bool IsVSUnisystem { get; private set; }
|
||||
|
||||
public override void Load(string fileName, bool loadDumps)
|
||||
{
|
||||
var fileStream = MyNesMain.Supporter.OpenRomFile(fileName);
|
||||
if (fileStream.Length < 16)
|
||||
{
|
||||
fileStream.Close();
|
||||
base.IsValid = false;
|
||||
return;
|
||||
}
|
||||
byte[] array = new byte[16];
|
||||
fileStream.Read(array, 0, 16);
|
||||
byte[] buffer = new byte[fileStream.Length - 16];
|
||||
fileStream.Read(buffer, 0, (int)(fileStream.Length - 16));
|
||||
base.SHA1 = "";
|
||||
byte[] array2 = new SHA1Managed().ComputeHash(buffer);
|
||||
foreach (byte b in array2)
|
||||
{
|
||||
base.SHA1 += b.ToString("x2").ToLower();
|
||||
}
|
||||
if (array[0] != 78 || array[1] != 69 || array[2] != 83 || array[3] != 26)
|
||||
{
|
||||
fileStream.Close();
|
||||
base.IsValid = false;
|
||||
return;
|
||||
}
|
||||
base.PRGCount = array[4];
|
||||
base.CHRCount = array[5];
|
||||
switch (array[6] & 9)
|
||||
{
|
||||
case 0:
|
||||
base.Mirroring = Mirroring.Horz;
|
||||
break;
|
||||
case 1:
|
||||
base.Mirroring = Mirroring.Vert;
|
||||
break;
|
||||
case 8:
|
||||
case 9:
|
||||
base.Mirroring = Mirroring.Full;
|
||||
break;
|
||||
}
|
||||
HasBattery = (array[6] & 2) != 0;
|
||||
base.HasTrainer = (array[6] & 4) != 0;
|
||||
if ((array[7] & 0xF) == 0)
|
||||
{
|
||||
base.MapperNumber = (byte)((array[7] & 0xF0) | (array[6] >> 4));
|
||||
}
|
||||
else
|
||||
{
|
||||
base.MapperNumber = (byte)(array[6] >> 4);
|
||||
}
|
||||
IsVSUnisystem = (array[7] & 1) != 0;
|
||||
IsPlaychoice10 = (array[7] & 2) != 0;
|
||||
if (loadDumps)
|
||||
{
|
||||
fileStream.Seek(16L, SeekOrigin.Begin);
|
||||
if (base.HasTrainer)
|
||||
{
|
||||
base.Trainer = new byte[512];
|
||||
fileStream.Read(base.Trainer, 0, 512);
|
||||
}
|
||||
else
|
||||
{
|
||||
base.Trainer = new byte[0];
|
||||
}
|
||||
base.PRG = new byte[base.PRGCount * 16384];
|
||||
fileStream.Read(base.PRG, 0, base.PRGCount * 16384);
|
||||
if (base.CHRCount > 0)
|
||||
{
|
||||
base.CHR = new byte[base.CHRCount * 8192];
|
||||
fileStream.Read(base.CHR, 0, base.CHRCount * 8192);
|
||||
}
|
||||
else
|
||||
{
|
||||
base.CHR = new byte[0];
|
||||
}
|
||||
}
|
||||
base.IsValid = true;
|
||||
fileStream.Dispose();
|
||||
fileStream.Close();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6d7f5c4eca034d148883c87e6c6b2443
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,34 +0,0 @@
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public abstract class IRom
|
||||
{
|
||||
public bool IsValid { get; set; }
|
||||
|
||||
public int PRGCount { get; set; }
|
||||
|
||||
public int CHRCount { get; set; }
|
||||
|
||||
public int MapperNumber { get; set; }
|
||||
|
||||
public Mirroring Mirroring { get; set; }
|
||||
|
||||
public bool HasTrainer { get; set; }
|
||||
|
||||
public byte[] PRG { get; set; }
|
||||
|
||||
public byte[] CHR { get; set; }
|
||||
|
||||
public byte[] Trainer { get; set; }
|
||||
|
||||
public string SHA1 { get; set; }
|
||||
|
||||
public virtual void Load(string fileName, bool loadDumps)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 60fcaf7174409fc448d54f85371d31fc
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,157 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Reflection;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public abstract class ISettings
|
||||
{
|
||||
protected string filePath;
|
||||
|
||||
protected FieldInfo[] Fields;
|
||||
|
||||
public ISettings(string filePath)
|
||||
{
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
public virtual void LoadSettings()
|
||||
{
|
||||
Fields = GetType().GetFields();
|
||||
if (!File.Exists(filePath))
|
||||
{
|
||||
return;
|
||||
}
|
||||
string[] array = File.ReadAllLines(filePath);
|
||||
for (int i = 0; i < array.Length; i++)
|
||||
{
|
||||
string[] array2 = array[i].Split('=');
|
||||
if (array2 != null && array2.Length == 2)
|
||||
{
|
||||
SetField(array2[0], array2[1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public virtual void SaveSettings()
|
||||
{
|
||||
Fields = GetType().GetFields();
|
||||
List<string> list = new List<string>();
|
||||
FieldInfo[] fields = Fields;
|
||||
foreach (FieldInfo fieldInfo in fields)
|
||||
{
|
||||
if (fieldInfo.IsPublic)
|
||||
{
|
||||
list.Add(fieldInfo.Name + "=" + GetFieldValue(fieldInfo));
|
||||
}
|
||||
}
|
||||
File.WriteAllLines(filePath, list.ToArray());
|
||||
}
|
||||
|
||||
protected virtual void SetField(string fieldName, string val)
|
||||
{
|
||||
for (int i = 0; i < Fields.Length; i++)
|
||||
{
|
||||
if (!(Fields[i].Name == fieldName))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
if (Fields[i].FieldType == typeof(string))
|
||||
{
|
||||
Fields[i].SetValue(this, val);
|
||||
}
|
||||
else if (Fields[i].FieldType == typeof(bool))
|
||||
{
|
||||
Fields[i].SetValue(this, val == "1");
|
||||
}
|
||||
else if (Fields[i].FieldType == typeof(int))
|
||||
{
|
||||
int result = 0;
|
||||
if (int.TryParse(val, out result))
|
||||
{
|
||||
Fields[i].SetValue(this, result);
|
||||
}
|
||||
}
|
||||
else if (Fields[i].FieldType == typeof(float))
|
||||
{
|
||||
float result2 = 0f;
|
||||
if (float.TryParse(val, out result2))
|
||||
{
|
||||
Fields[i].SetValue(this, result2);
|
||||
}
|
||||
}
|
||||
else if (Fields[i].FieldType == typeof(string[]))
|
||||
{
|
||||
string[] value = val.Split(new string[1] { "*" }, StringSplitOptions.RemoveEmptyEntries);
|
||||
Fields[i].SetValue(this, value);
|
||||
}
|
||||
else
|
||||
{
|
||||
Tracer.WriteLine("Unknown setting type = " + Fields[i].FieldType);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
protected virtual string GetFieldValue(string fieldName)
|
||||
{
|
||||
for (int i = 0; i < Fields.Length; i++)
|
||||
{
|
||||
if (Fields[i].Name == fieldName)
|
||||
{
|
||||
return GetFieldValue(Fields[i]);
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
protected virtual string GetFieldValue(FieldInfo field)
|
||||
{
|
||||
object value = field.GetValue(this);
|
||||
if (field.FieldType == typeof(string))
|
||||
{
|
||||
return value.ToString();
|
||||
}
|
||||
if (field.FieldType == typeof(bool))
|
||||
{
|
||||
if (!(bool)value)
|
||||
{
|
||||
return "0";
|
||||
}
|
||||
return "1";
|
||||
}
|
||||
if (field.FieldType == typeof(int))
|
||||
{
|
||||
return value.ToString();
|
||||
}
|
||||
if (field.FieldType == typeof(float))
|
||||
{
|
||||
return value.ToString();
|
||||
}
|
||||
if (field.FieldType == typeof(string[]))
|
||||
{
|
||||
string text = "";
|
||||
string[] array = (string[])value;
|
||||
if (array != null)
|
||||
{
|
||||
string[] array2 = array;
|
||||
foreach (string text2 in array2)
|
||||
{
|
||||
text = text + text2 + "*";
|
||||
}
|
||||
}
|
||||
if (text.Length > 0)
|
||||
{
|
||||
return text.Substring(0, text.Length - 1);
|
||||
}
|
||||
return "";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3236f262a69a32f4395a1f17537be480
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,7 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
public interface IShortcutsHandler
|
||||
{
|
||||
void Update();
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e44becc2730cc364db0b40806a1dd8cd
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,30 +0,0 @@
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public abstract class IVSUnisystemDIPConnecter
|
||||
{
|
||||
public abstract void Update();
|
||||
|
||||
public virtual void OnEmuShutdown()
|
||||
{
|
||||
}
|
||||
|
||||
public virtual byte GetData4016()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
public virtual byte GetData4017()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
public virtual void Write4020(ref byte data)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 593f15ab3ef85d14a8a4c462199c9775
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,41 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
public interface IVideoProvider
|
||||
{
|
||||
string Name { get; }
|
||||
|
||||
string ID { get; }
|
||||
|
||||
void WriteErrorNotification(string message, bool instant);
|
||||
|
||||
void WriteInfoNotification(string message, bool instant);
|
||||
|
||||
void WriteWarningNotification(string message, bool instant);
|
||||
|
||||
void TakeSnapshotAs(string path, string format);
|
||||
|
||||
void TakeSnapshot();
|
||||
|
||||
void Initialize();
|
||||
|
||||
void ShutDown();
|
||||
|
||||
void SignalToggle(bool started);
|
||||
|
||||
void SubmitFrame(ref int[] buffer);
|
||||
|
||||
void ResizeBegin();
|
||||
|
||||
void ResizeEnd();
|
||||
|
||||
void ApplyRegionChanges();
|
||||
|
||||
void Resume();
|
||||
|
||||
void ToggleAspectRatio(bool keep_aspect);
|
||||
|
||||
void ToggleFPS(bool show_fps);
|
||||
|
||||
void ApplyFilter();
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fe8b5545022785849a0b156b01d15972
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,21 +0,0 @@
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public abstract class IZapperConnecter
|
||||
{
|
||||
protected bool Trigger;
|
||||
|
||||
protected bool State;
|
||||
|
||||
public abstract void Update();
|
||||
|
||||
public virtual byte GetData()
|
||||
{
|
||||
return (byte)((Trigger ? 16u : 0u) | (State ? 8u : 0u));
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b7e39cb978938d8478d799f539c44c3f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,74 +0,0 @@
|
||||
using System;
|
||||
|
||||
namespace Unity.IL2CPP.CompilerServices
|
||||
{
|
||||
/// <summary>
|
||||
/// The code generation options available for IL to C++ conversion.
|
||||
/// Enable or disabled these with caution.
|
||||
/// </summary>
|
||||
public enum Option
|
||||
{
|
||||
/// <summary>
|
||||
/// Enable or disable code generation for null checks.
|
||||
///
|
||||
/// Global null check support is enabled by default when il2cpp.exe
|
||||
/// is launched from the Unity editor.
|
||||
///
|
||||
/// Disabling this will prevent NullReferenceException exceptions from
|
||||
/// being thrown in generated code. In *most* cases, code that dereferences
|
||||
/// a null pointer will crash then. Sometimes the point where the crash
|
||||
/// happens is later than the location where the null reference check would
|
||||
/// have been emitted though.
|
||||
/// </summary>
|
||||
NullChecks = 1,
|
||||
/// <summary>
|
||||
/// Enable or disable code generation for array bounds checks.
|
||||
///
|
||||
/// Global array bounds check support is enabled by default when il2cpp.exe
|
||||
/// is launched from the Unity editor.
|
||||
///
|
||||
/// Disabling this will prevent IndexOutOfRangeException exceptions from
|
||||
/// being thrown in generated code. This will allow reading and writing to
|
||||
/// memory outside of the bounds of an array without any runtime checks.
|
||||
/// Disable this check with extreme caution.
|
||||
/// </summary>
|
||||
ArrayBoundsChecks = 2,
|
||||
/// <summary>
|
||||
/// Enable or disable code generation for divide by zero checks.
|
||||
///
|
||||
/// Global divide by zero check support is disabled by default when il2cpp.exe
|
||||
/// is launched from the Unity editor.
|
||||
///
|
||||
/// Enabling this will cause DivideByZeroException exceptions to be
|
||||
/// thrown in generated code. Most code doesn't need to handle this
|
||||
/// exception, so it is probably safe to leave it disabled.
|
||||
/// </summary>
|
||||
DivideByZeroChecks = 3,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Use this attribute on an assembly, struct, class, method, or property to inform the IL2CPP code conversion utility to override the
|
||||
/// global setting for one of a few different runtime checks.
|
||||
///
|
||||
/// Example:
|
||||
///
|
||||
/// [Il2CppSetOption(Option.NullChecks, false)]
|
||||
/// public static string MethodWithNullChecksDisabled()
|
||||
/// {
|
||||
/// var tmp = new Object();
|
||||
/// return tmp.ToString();
|
||||
/// }
|
||||
/// </summary>
|
||||
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Struct | AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Delegate, Inherited = false, AllowMultiple = true)]
|
||||
public class Il2CppSetOptionAttribute : Attribute
|
||||
{
|
||||
public Option Option { get; private set; }
|
||||
public object Value { get; private set; }
|
||||
|
||||
public Il2CppSetOptionAttribute(Option option, object value)
|
||||
{
|
||||
Option = option;
|
||||
Value = value;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1fa3bc95a1fade84eb4f44a94a7409b5
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,120 +0,0 @@
|
||||
using System.IO;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal abstract class MMC2 : Board
|
||||
{
|
||||
private byte chr_reg0A;
|
||||
|
||||
private byte chr_reg0B;
|
||||
|
||||
private byte chr_reg1A;
|
||||
|
||||
private byte chr_reg1B;
|
||||
|
||||
private byte latch_a = 254;
|
||||
|
||||
private byte latch_b = 254;
|
||||
|
||||
internal override void HardReset()
|
||||
{
|
||||
base.HardReset();
|
||||
Switch08KPRG(PRG_ROM_08KB_Mask - 2, PRGArea.AreaA000);
|
||||
Switch08KPRG(PRG_ROM_08KB_Mask - 1, PRGArea.AreaC000);
|
||||
Switch08KPRG(PRG_ROM_08KB_Mask, PRGArea.AreaE000);
|
||||
chr_reg0B = 4;
|
||||
}
|
||||
|
||||
internal override void WritePRG(ref ushort address, ref byte data)
|
||||
{
|
||||
switch (address & 0xF000)
|
||||
{
|
||||
case 40960:
|
||||
Switch08KPRG(data, PRGArea.Area8000);
|
||||
break;
|
||||
case 45056:
|
||||
chr_reg0A = data;
|
||||
if (latch_a == 253)
|
||||
{
|
||||
Switch04KCHR(chr_reg0A, CHRArea.Area0000);
|
||||
}
|
||||
break;
|
||||
case 49152:
|
||||
chr_reg0B = data;
|
||||
if (latch_a == 254)
|
||||
{
|
||||
Switch04KCHR(chr_reg0B, CHRArea.Area0000);
|
||||
}
|
||||
break;
|
||||
case 53248:
|
||||
chr_reg1A = data;
|
||||
if (latch_b == 253)
|
||||
{
|
||||
Switch04KCHR(chr_reg1A, CHRArea.Area1000);
|
||||
}
|
||||
break;
|
||||
case 57344:
|
||||
chr_reg1B = data;
|
||||
if (latch_b == 254)
|
||||
{
|
||||
Switch04KCHR(chr_reg1B, CHRArea.Area1000);
|
||||
}
|
||||
break;
|
||||
case 61440:
|
||||
Switch01KNMTFromMirroring(((data & 1) == 1) ? Mirroring.Horz : Mirroring.Vert);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
internal override void ReadCHR(ref ushort address, out byte data)
|
||||
{
|
||||
if ((address & 0x1FF0) == 4048 && latch_a != 253)
|
||||
{
|
||||
latch_a = 253;
|
||||
Switch04KCHR(chr_reg0A, CHRArea.Area0000);
|
||||
}
|
||||
else if ((address & 0x1FF0) == 4064 && latch_a != 254)
|
||||
{
|
||||
latch_a = 254;
|
||||
Switch04KCHR(chr_reg0B, CHRArea.Area0000);
|
||||
}
|
||||
else if ((address & 0x1FF0) == 8144 && latch_b != 253)
|
||||
{
|
||||
latch_b = 253;
|
||||
Switch04KCHR(chr_reg1A, CHRArea.Area1000);
|
||||
}
|
||||
else if ((address & 0x1FF0) == 8160 && latch_b != 254)
|
||||
{
|
||||
latch_b = 254;
|
||||
Switch04KCHR(chr_reg1B, CHRArea.Area1000);
|
||||
}
|
||||
base.ReadCHR(ref address, out data);
|
||||
}
|
||||
|
||||
internal override void WriteStateData(ref BinaryWriter stream)
|
||||
{
|
||||
base.WriteStateData(ref stream);
|
||||
stream.Write(chr_reg0A);
|
||||
stream.Write(chr_reg0B);
|
||||
stream.Write(chr_reg1A);
|
||||
stream.Write(chr_reg1B);
|
||||
stream.Write(latch_a);
|
||||
stream.Write(latch_b);
|
||||
}
|
||||
|
||||
internal override void ReadStateData(ref BinaryReader stream)
|
||||
{
|
||||
base.ReadStateData(ref stream);
|
||||
chr_reg0A = stream.ReadByte();
|
||||
chr_reg0B = stream.ReadByte();
|
||||
chr_reg1A = stream.ReadByte();
|
||||
chr_reg1B = stream.ReadByte();
|
||||
latch_a = stream.ReadByte();
|
||||
latch_b = stream.ReadByte();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c2fd2154d001d8c4297526ae3b12644a
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,90 +0,0 @@
|
||||
using System.IO;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal class MMC5Pcm
|
||||
{
|
||||
internal byte output;
|
||||
|
||||
internal bool Outputable;
|
||||
|
||||
private bool readMode;
|
||||
|
||||
private bool PCMIRQenable;
|
||||
|
||||
private bool irqTrip;
|
||||
|
||||
internal void HardReset()
|
||||
{
|
||||
output = 0;
|
||||
readMode = false;
|
||||
PCMIRQenable = false;
|
||||
irqTrip = false;
|
||||
}
|
||||
|
||||
internal void SoftReset()
|
||||
{
|
||||
HardReset();
|
||||
}
|
||||
|
||||
internal void Write5010(byte data)
|
||||
{
|
||||
readMode = (data & 1) == 1;
|
||||
PCMIRQenable = (data & 0x80) == 128;
|
||||
if (PCMIRQenable && irqTrip)
|
||||
{
|
||||
NesEmu.IRQFlags |= 8;
|
||||
}
|
||||
}
|
||||
|
||||
internal byte Read5010()
|
||||
{
|
||||
byte result = (byte)((irqTrip & PCMIRQenable) ? 128 : 0);
|
||||
irqTrip = false;
|
||||
NesEmu.IRQFlags &= -9;
|
||||
return result;
|
||||
}
|
||||
|
||||
internal void Write5011(byte data)
|
||||
{
|
||||
if (readMode)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (data == 0)
|
||||
{
|
||||
irqTrip = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
irqTrip = false;
|
||||
if (Outputable)
|
||||
{
|
||||
output = data;
|
||||
}
|
||||
}
|
||||
if (PCMIRQenable && irqTrip)
|
||||
{
|
||||
NesEmu.IRQFlags |= 8;
|
||||
}
|
||||
}
|
||||
|
||||
internal void SaveState(ref BinaryWriter stream)
|
||||
{
|
||||
stream.Write(readMode);
|
||||
stream.Write(PCMIRQenable);
|
||||
stream.Write(irqTrip);
|
||||
}
|
||||
|
||||
internal void LoadState(ref BinaryReader stream)
|
||||
{
|
||||
readMode = stream.ReadBoolean();
|
||||
PCMIRQenable = stream.ReadBoolean();
|
||||
irqTrip = stream.ReadBoolean();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b4c531b467bf54c4a9d0874c00316b40
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,218 +0,0 @@
|
||||
using System.IO;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
internal class MMC5Sqr
|
||||
{
|
||||
private byte[][] duty_cycle_sequences = new byte[4][]
|
||||
{
|
||||
new byte[8] { 0, 0, 0, 0, 0, 0, 0, 1 },
|
||||
new byte[8] { 0, 0, 0, 0, 0, 0, 1, 1 },
|
||||
new byte[8] { 0, 0, 0, 0, 1, 1, 1, 1 },
|
||||
new byte[8] { 1, 1, 1, 1, 1, 1, 0, 0 }
|
||||
};
|
||||
|
||||
private byte[] duration_table = new byte[32]
|
||||
{
|
||||
10, 254, 20, 2, 40, 4, 80, 6, 160, 8,
|
||||
60, 10, 14, 12, 26, 14, 12, 16, 24, 18,
|
||||
48, 20, 96, 22, 192, 24, 72, 26, 16, 28,
|
||||
32, 30
|
||||
};
|
||||
|
||||
private byte duty_cycle;
|
||||
|
||||
private bool length_halt;
|
||||
|
||||
private bool constant_volume_envelope;
|
||||
|
||||
private byte volume_devider_period;
|
||||
|
||||
private int timer;
|
||||
|
||||
private int period_devider;
|
||||
|
||||
private byte seqencer;
|
||||
|
||||
private bool length_enabled;
|
||||
|
||||
private int length_counter;
|
||||
|
||||
private bool envelope_start_flag;
|
||||
|
||||
private byte envelope_devider;
|
||||
|
||||
private byte envelope_decay_level_counter;
|
||||
|
||||
private byte envelope;
|
||||
|
||||
internal int output;
|
||||
|
||||
internal bool Outputable;
|
||||
|
||||
internal void HardReset()
|
||||
{
|
||||
duty_cycle = 0;
|
||||
length_halt = false;
|
||||
constant_volume_envelope = false;
|
||||
volume_devider_period = 0;
|
||||
timer = 0;
|
||||
period_devider = 0;
|
||||
seqencer = 0;
|
||||
length_enabled = false;
|
||||
length_counter = 0;
|
||||
envelope_start_flag = false;
|
||||
envelope_devider = 0;
|
||||
envelope_decay_level_counter = 0;
|
||||
envelope = 0;
|
||||
}
|
||||
|
||||
internal void SoftReset()
|
||||
{
|
||||
HardReset();
|
||||
}
|
||||
|
||||
internal void Clock()
|
||||
{
|
||||
period_devider--;
|
||||
if (period_devider > 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
period_devider = timer + 1;
|
||||
if (length_counter > 0)
|
||||
{
|
||||
if (Outputable)
|
||||
{
|
||||
output = duty_cycle_sequences[duty_cycle][seqencer] * envelope;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
output = 0;
|
||||
}
|
||||
if (seqencer == 0)
|
||||
{
|
||||
seqencer = 7;
|
||||
}
|
||||
else
|
||||
{
|
||||
seqencer--;
|
||||
}
|
||||
}
|
||||
|
||||
internal void ClockLength()
|
||||
{
|
||||
if (length_counter > 0 && !length_halt)
|
||||
{
|
||||
length_counter--;
|
||||
}
|
||||
}
|
||||
|
||||
internal void ClockEnvelope()
|
||||
{
|
||||
if (envelope_start_flag)
|
||||
{
|
||||
envelope_start_flag = false;
|
||||
envelope_decay_level_counter = 15;
|
||||
envelope_devider = (byte)(volume_devider_period + 1);
|
||||
}
|
||||
else if (envelope_devider > 0)
|
||||
{
|
||||
envelope_devider--;
|
||||
}
|
||||
else
|
||||
{
|
||||
envelope_devider = (byte)(volume_devider_period + 1);
|
||||
if (envelope_decay_level_counter > 0)
|
||||
{
|
||||
envelope_decay_level_counter--;
|
||||
}
|
||||
else if (length_halt)
|
||||
{
|
||||
envelope_decay_level_counter = 15;
|
||||
}
|
||||
}
|
||||
envelope = (constant_volume_envelope ? volume_devider_period : envelope_decay_level_counter);
|
||||
}
|
||||
|
||||
internal void Write0(ref byte value)
|
||||
{
|
||||
duty_cycle = (byte)((value & 0xC0) >> 6);
|
||||
volume_devider_period = (byte)(value & 0xFu);
|
||||
length_halt = (value & 0x20) != 0;
|
||||
constant_volume_envelope = (value & 0x10) != 0;
|
||||
envelope = (constant_volume_envelope ? volume_devider_period : envelope_decay_level_counter);
|
||||
}
|
||||
|
||||
internal void Write2(ref byte value)
|
||||
{
|
||||
timer = (timer & 0xFF00) | value;
|
||||
}
|
||||
|
||||
internal void Write3(ref byte value)
|
||||
{
|
||||
timer = (timer & 0xFF) | ((value & 7) << 8);
|
||||
if (length_enabled)
|
||||
{
|
||||
length_counter = duration_table[value >> 3];
|
||||
}
|
||||
seqencer = 0;
|
||||
envelope_start_flag = true;
|
||||
}
|
||||
|
||||
internal void WriteEnabled(bool enabled)
|
||||
{
|
||||
length_enabled = enabled;
|
||||
if (!length_enabled)
|
||||
{
|
||||
length_counter = 0;
|
||||
}
|
||||
}
|
||||
|
||||
internal bool ReadEnable()
|
||||
{
|
||||
return length_counter > 0;
|
||||
}
|
||||
|
||||
internal void WriteStateData(ref BinaryWriter bin)
|
||||
{
|
||||
bin.Write(duty_cycle);
|
||||
bin.Write(length_halt);
|
||||
bin.Write(constant_volume_envelope);
|
||||
bin.Write(volume_devider_period);
|
||||
bin.Write(timer);
|
||||
bin.Write(period_devider);
|
||||
bin.Write(seqencer);
|
||||
bin.Write(length_enabled);
|
||||
bin.Write(length_counter);
|
||||
bin.Write(envelope_start_flag);
|
||||
bin.Write(envelope_devider);
|
||||
bin.Write(envelope_decay_level_counter);
|
||||
bin.Write(envelope);
|
||||
bin.Write(output);
|
||||
}
|
||||
|
||||
internal void ReadStateData(ref BinaryReader bin)
|
||||
{
|
||||
duty_cycle = bin.ReadByte();
|
||||
length_halt = bin.ReadBoolean();
|
||||
constant_volume_envelope = bin.ReadBoolean();
|
||||
volume_devider_period = bin.ReadByte();
|
||||
timer = bin.ReadInt32();
|
||||
period_devider = bin.ReadInt32();
|
||||
seqencer = bin.ReadByte();
|
||||
length_enabled = bin.ReadBoolean();
|
||||
length_counter = bin.ReadInt32();
|
||||
envelope_start_flag = bin.ReadBoolean();
|
||||
envelope_devider = bin.ReadByte();
|
||||
envelope_decay_level_counter = bin.ReadByte();
|
||||
envelope = bin.ReadByte();
|
||||
output = bin.ReadInt32();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 21efe36faf5e4b74592b812f08f60773
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,134 +0,0 @@
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
public class MNInterfaceLanguage
|
||||
{
|
||||
public static string Message_RomInfoCanBeOnlyShown = "Rom info can be shown only when emulation is on (i.e. game is loaded)";
|
||||
|
||||
public static string Message_StateSlotSetTo = "State slot set to";
|
||||
|
||||
public static string Message_LoadStateCanBeUsedOnly = "Load state as can be used only when emulation is on (i.e. game is loaded)";
|
||||
|
||||
public static string Message_SaveStateCanBeUseOnly = "Save state as can be used only when emulation is on (i.e. game is loaded)";
|
||||
|
||||
public static string Message_HardResetCanBeUsedOnly = "Hard reset can be used only when emulation is on (i.e. game is loaded)";
|
||||
|
||||
public static string Message_SoftResetCanBeUsedOnly = "Soft reset can be used only when emulation is on (i.e. game is loaded)";
|
||||
|
||||
public static string Message_TurboCanBeToggledOnly = "Turbo can be toggled only when emulation is on (i.e. game is loaded)";
|
||||
|
||||
public static string Message_GameGenieCanBeConfiguredOnly = "Game Genie can be enabled/configured only when emulation is on (i.e. game is loaded)";
|
||||
|
||||
public static string Message_Error1 = "Can't save state, emu is off.";
|
||||
|
||||
public static string Message_Error2 = "Can't save state, no rom file is loaded.";
|
||||
|
||||
public static string Message_Error3 = "Can't save state while loading a state !";
|
||||
|
||||
public static string Message_Error4 = "Already saving state !!";
|
||||
|
||||
public static string Message_Error5 = "Can't load state, emu is off.";
|
||||
|
||||
public static string Message_Error6 = "Can't load state, no rom file is loaded.";
|
||||
|
||||
public static string Message_Error7 = "Can't load state while saving a state !";
|
||||
|
||||
public static string Message_Error8 = "Already loading state !!";
|
||||
|
||||
public static string Message_Error9 = "No state found in slot";
|
||||
|
||||
public static string Message_Error10 = "Unable load state at slot";
|
||||
|
||||
public static string Message_Error11 = "Not My Nes State File !";
|
||||
|
||||
public static string Message_Error12 = "Not compatible state file version !";
|
||||
|
||||
public static string Message_Error13 = "This state file is not for this game; not same SHA1 !";
|
||||
|
||||
public static string Message_Error14 = "IS NOT LOCATED, mapper is not supported or unable to find it.";
|
||||
|
||||
public static string Message_Error15 = "will be used instead, assigned successfully.";
|
||||
|
||||
public static string Message_Error16 = "Game Genie code length cannot be more than 8 letters";
|
||||
|
||||
public static string Message_Error17 = "has issues and may not function probably with this game.";
|
||||
|
||||
public static string Message_Info1 = "State saved at slot";
|
||||
|
||||
public static string Message_Info2 = "State loaded from slot";
|
||||
|
||||
public static string Message_Info3 = "Snapshot saved";
|
||||
|
||||
public static string Message_Info4 = "Interface language set to";
|
||||
|
||||
public static string Message_PleaseRestartToApply = "Please restart My Nes to apply.";
|
||||
|
||||
public static string Message_HardReset = "HARD RESET !";
|
||||
|
||||
public static string Message_SoftReset = "SOFT RESET !";
|
||||
|
||||
public static string Message_Paused = "PAUSED";
|
||||
|
||||
public static string Mapper = "Mapper";
|
||||
|
||||
public static string IssueMapper5 = "Split screen not implemented.\nUchuu Keibitai SDF game graphic corruption for unknown reason in the intro (not in the split screen).";
|
||||
|
||||
public static string IssueMapper6 = "Mapper 6 is not tested, issues may occur";
|
||||
|
||||
public static string IssueMapper8 = "Mapper 8 is not tested, issues may occur";
|
||||
|
||||
public static string IssueMapper33 = "Mapper 33: Akira is not working for unknown reason.";
|
||||
|
||||
public static string IssueMapper44 = "In game Super Big 7 - in - 1 : Double Dragon 3 game does not work.";
|
||||
|
||||
public static string IssueMapper53 = "Mapper 53 does not work with the test roms i have, maybe something wrong with the implementation or the roms themselves";
|
||||
|
||||
public static string IssueMapper56 = "Mapper 56 does not work with the test roms i have, maybe something wrong with the implementation or the roms themselves";
|
||||
|
||||
public static string IssueMapper58 = "Study and Game 32-in-1 (Ch) [!].nes needs keyboard ?";
|
||||
|
||||
public static string IssueMapper60 = "Mapper 60 does not work with the test roms i have, maybe something wrong with the implementation or the roms themselves";
|
||||
|
||||
public static string IssueMapper85 = "VRC7 sound channels are not supported";
|
||||
|
||||
public static string IssueMapper90 = "DipSwitch is not implemented, the irq modes 2-3 are not implemented yet.";
|
||||
|
||||
public static string IssueMapper96 = "Mapper 96 does not function probably and needs special controller to be implemented.";
|
||||
|
||||
public static string IssueMapper105 = "Game hangs on title screen !";
|
||||
|
||||
public static string IssueMapper119 = "Mapper 119 does not function probably";
|
||||
|
||||
public static string IssueMapper154 = "Game shows glitches with chr";
|
||||
|
||||
public static string IssueMapper180 = "Crazy Climber needs special controller which not implemented yet.";
|
||||
|
||||
public static string IssueMapper191 = "Mapper 191 is not tested, issues may occur";
|
||||
|
||||
public static string IssueMapper193 = "Game show nothing but fighter sprite !";
|
||||
|
||||
public static string IssueMapper202 = "150 in 1: some games not work well. Is it mapper or rom dump ?";
|
||||
|
||||
public static string IssueMapper203 = "64-in-1: some games not work, maybe something wrong with the implementation or the rom itself";
|
||||
|
||||
public static string IssueMapper207 = "Fudou Myouou Den is not assigned as mapper 207 while it should be !";
|
||||
|
||||
public static string IssueMapper222 = "Mapper 222 is not tested, issues may occur";
|
||||
|
||||
public static string IssueMapper228 = "Mapper 228 does not function probably";
|
||||
|
||||
public static string IssueMapper229 = "Mapper 229 is not tested, issues may occur";
|
||||
|
||||
public static string IssueMapper230 = "Only Contra works !?";
|
||||
|
||||
public static string IssueMapper243 = "Shows glitches in some games.";
|
||||
|
||||
public static string IssueMapper245 = "Graphic glitches, maybe chr switches.";
|
||||
|
||||
public static string IssueMapper255 = "Mapper 255 is not tested, issues may occur";
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 54f6278d37c378c4f9a6fe125f4505fd
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,7 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[BoardInfo("NROM", 0)]
|
||||
internal class Mapper000 : Board
|
||||
{
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 41b0e004e19b28f47812b3eab3da2622
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,245 +0,0 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[BoardInfo("MMC1", 1, 4, 64)]
|
||||
internal class Mapper001 : Board
|
||||
{
|
||||
private int address_reg;
|
||||
|
||||
private byte[] reg = new byte[4];
|
||||
|
||||
private byte shift;
|
||||
|
||||
private byte buffer;
|
||||
|
||||
private bool flag_p;
|
||||
|
||||
private bool flag_c;
|
||||
|
||||
private bool flag_s;
|
||||
|
||||
private bool enable_wram_enable;
|
||||
|
||||
private int prg_hijackedbit;
|
||||
|
||||
private bool use_hijacked;
|
||||
|
||||
private bool use_sram_switch;
|
||||
|
||||
private int sram_switch_mask;
|
||||
|
||||
private int cpuCycles;
|
||||
|
||||
internal override void HardReset()
|
||||
{
|
||||
base.HardReset();
|
||||
cpuCycles = 0;
|
||||
address_reg = 0;
|
||||
reg = new byte[4];
|
||||
reg[0] = 12;
|
||||
flag_c = false;
|
||||
flag_s = (flag_p = true);
|
||||
prg_hijackedbit = 0;
|
||||
reg[1] = (reg[2] = (reg[3] = 0));
|
||||
buffer = 0;
|
||||
shift = 0;
|
||||
if (base.Chips.Contains("MMC1B") || base.Chips.Contains("MMC1B2"))
|
||||
{
|
||||
TogglePRGRAMEnable(enable: false);
|
||||
Console.WriteLine("MMC1: SRAM Disabled.");
|
||||
}
|
||||
enable_wram_enable = !base.Chips.Contains("MMC1A");
|
||||
Console.WriteLine("MMC1: enable_wram_enable = " + enable_wram_enable);
|
||||
use_hijacked = (PRG_ROM_16KB_Mask & 0x10) == 16;
|
||||
if (use_hijacked)
|
||||
{
|
||||
prg_hijackedbit = 16;
|
||||
}
|
||||
use_sram_switch = false;
|
||||
if (PRG_RAM_08KB_Count > 0)
|
||||
{
|
||||
use_sram_switch = true;
|
||||
sram_switch_mask = (use_hijacked ? 8 : 24);
|
||||
sram_switch_mask &= PRG_RAM_08KB_Mask << 3;
|
||||
if (sram_switch_mask == 0)
|
||||
{
|
||||
use_sram_switch = false;
|
||||
}
|
||||
}
|
||||
Switch16KPRG(0xF | prg_hijackedbit, PRGArea.AreaC000);
|
||||
Console.WriteLine("MMC1: use_hijacked = " + use_hijacked);
|
||||
Console.WriteLine("MMC1: use_sram_switch = " + use_sram_switch);
|
||||
Console.WriteLine("MMC1: sram_switch_mask = " + sram_switch_mask.ToString("X2"));
|
||||
}
|
||||
|
||||
internal override void WritePRG(ref ushort address, ref byte value)
|
||||
{
|
||||
if (cpuCycles > 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
cpuCycles = 3;
|
||||
if ((value & 0x80) == 128)
|
||||
{
|
||||
reg[0] |= 12;
|
||||
flag_s = (flag_p = true);
|
||||
shift = (buffer = 0);
|
||||
return;
|
||||
}
|
||||
if ((value & 1) == 1)
|
||||
{
|
||||
buffer |= (byte)(1 << (int)shift);
|
||||
}
|
||||
if (++shift < 5)
|
||||
{
|
||||
return;
|
||||
}
|
||||
address_reg = (address & 0x7FFF) >> 13;
|
||||
reg[address_reg] = buffer;
|
||||
shift = (buffer = 0);
|
||||
switch (address_reg)
|
||||
{
|
||||
case 0:
|
||||
flag_c = (reg[0] & 0x10) != 0;
|
||||
flag_p = (reg[0] & 8) != 0;
|
||||
flag_s = (reg[0] & 4) != 0;
|
||||
UpdatePRG();
|
||||
UpdateCHR();
|
||||
switch (reg[0] & 3)
|
||||
{
|
||||
case 0:
|
||||
Switch01KNMTFromMirroring(Mirroring.OneScA);
|
||||
break;
|
||||
case 1:
|
||||
Switch01KNMTFromMirroring(Mirroring.OneScB);
|
||||
break;
|
||||
case 2:
|
||||
Switch01KNMTFromMirroring(Mirroring.Vert);
|
||||
break;
|
||||
case 3:
|
||||
Switch01KNMTFromMirroring(Mirroring.Horz);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
if (!flag_c)
|
||||
{
|
||||
Switch08KCHR(reg[1] >> 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
Switch04KCHR(reg[1], CHRArea.Area0000);
|
||||
}
|
||||
if (use_sram_switch)
|
||||
{
|
||||
Switch08KPRG((reg[1] & sram_switch_mask) >> 3, PRGArea.Area6000);
|
||||
}
|
||||
if (use_hijacked)
|
||||
{
|
||||
prg_hijackedbit = reg[1] & 0x10;
|
||||
UpdatePRG();
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
if (flag_c)
|
||||
{
|
||||
Switch04KCHR(reg[2], CHRArea.Area1000);
|
||||
}
|
||||
if (use_sram_switch)
|
||||
{
|
||||
Switch08KPRG((reg[2] & sram_switch_mask) >> 3, PRGArea.Area6000);
|
||||
}
|
||||
if (use_hijacked)
|
||||
{
|
||||
prg_hijackedbit = reg[2] & 0x10;
|
||||
UpdatePRG();
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
if (enable_wram_enable)
|
||||
{
|
||||
TogglePRGRAMEnable((reg[3] & 0x10) == 0);
|
||||
}
|
||||
UpdatePRG();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void UpdateCHR()
|
||||
{
|
||||
if (!flag_c)
|
||||
{
|
||||
Switch08KCHR(reg[1] >> 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
Switch04KCHR(reg[1], CHRArea.Area0000);
|
||||
Switch04KCHR(reg[2], CHRArea.Area1000);
|
||||
}
|
||||
if (use_sram_switch)
|
||||
{
|
||||
Switch08KPRG((reg[1] & sram_switch_mask) >> 3, PRGArea.Area6000);
|
||||
}
|
||||
}
|
||||
|
||||
private void UpdatePRG()
|
||||
{
|
||||
if (!flag_p)
|
||||
{
|
||||
Switch32KPRG(((reg[3] & 0xF) | prg_hijackedbit) >> 1, PRGArea.Area8000);
|
||||
}
|
||||
else if (flag_s)
|
||||
{
|
||||
Switch16KPRG((reg[3] & 0xF) | prg_hijackedbit, PRGArea.Area8000);
|
||||
Switch16KPRG(0xF | prg_hijackedbit, PRGArea.AreaC000);
|
||||
}
|
||||
else
|
||||
{
|
||||
Switch16KPRG(prg_hijackedbit, PRGArea.Area8000);
|
||||
Switch16KPRG((reg[3] & 0xF) | prg_hijackedbit, PRGArea.AreaC000);
|
||||
}
|
||||
}
|
||||
|
||||
internal override void OnCPUClock()
|
||||
{
|
||||
if (cpuCycles > 0)
|
||||
{
|
||||
cpuCycles--;
|
||||
}
|
||||
}
|
||||
|
||||
internal override void WriteStateData(ref BinaryWriter stream)
|
||||
{
|
||||
base.WriteStateData(ref stream);
|
||||
stream.Write(reg);
|
||||
stream.Write(shift);
|
||||
stream.Write(buffer);
|
||||
stream.Write(flag_p);
|
||||
stream.Write(flag_c);
|
||||
stream.Write(flag_s);
|
||||
stream.Write(enable_wram_enable);
|
||||
stream.Write(prg_hijackedbit);
|
||||
stream.Write(use_hijacked);
|
||||
stream.Write(use_sram_switch);
|
||||
stream.Write(cpuCycles);
|
||||
}
|
||||
|
||||
internal override void ReadStateData(ref BinaryReader stream)
|
||||
{
|
||||
base.ReadStateData(ref stream);
|
||||
stream.Read(reg, 0, reg.Length);
|
||||
shift = stream.ReadByte();
|
||||
buffer = stream.ReadByte();
|
||||
flag_p = stream.ReadBoolean();
|
||||
flag_c = stream.ReadBoolean();
|
||||
flag_s = stream.ReadBoolean();
|
||||
enable_wram_enable = stream.ReadBoolean();
|
||||
prg_hijackedbit = stream.ReadInt32();
|
||||
use_hijacked = stream.ReadBoolean();
|
||||
use_sram_switch = stream.ReadBoolean();
|
||||
cpuCycles = stream.ReadInt32();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 42f133f6a434de742b44fc92425e28b8
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,17 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[BoardInfo("UxROM", 2)]
|
||||
internal class Mapper002 : Board
|
||||
{
|
||||
internal override void HardReset()
|
||||
{
|
||||
base.HardReset();
|
||||
Switch16KPRG(PRG_ROM_16KB_Mask, PRGArea.AreaC000);
|
||||
}
|
||||
|
||||
internal override void WritePRG(ref ushort addr, ref byte val)
|
||||
{
|
||||
Switch16KPRG(val, PRGArea.Area8000);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a977999313c88f0498ab5893280de143
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,15 +0,0 @@
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[BoardInfo("CNROM", 3)]
|
||||
internal class Mapper003 : Board
|
||||
{
|
||||
private byte data_temp;
|
||||
|
||||
internal override void WritePRG(ref ushort address, ref byte data)
|
||||
{
|
||||
ReadPRG(ref address, out data_temp);
|
||||
data_temp &= data;
|
||||
Switch08KCHR(data_temp);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e59d7105def01754ab2fbe6d71f36875
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,228 +0,0 @@
|
||||
using System.IO;
|
||||
using Unity.IL2CPP.CompilerServices;
|
||||
|
||||
namespace MyNes.Core
|
||||
{
|
||||
[Il2CppSetOption(Option.NullChecks, false)]
|
||||
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
||||
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
||||
[BoardInfo("MMC3", 4, true, true)]
|
||||
internal class Mapper004 : Board
|
||||
{
|
||||
private bool flag_c;
|
||||
|
||||
private bool flag_p;
|
||||
|
||||
private int address_8001;
|
||||
|
||||
private int[] chr_reg;
|
||||
|
||||
private int[] prg_reg;
|
||||
|
||||
private bool irq_enabled;
|
||||
|
||||
private byte irq_counter;
|
||||
|
||||
private int old_irq_counter;
|
||||
|
||||
private byte irq_reload;
|
||||
|
||||
private bool irq_clear;
|
||||
|
||||
private bool mmc3_alt_behavior;
|
||||
|
||||
internal override void HardReset()
|
||||
{
|
||||
base.HardReset();
|
||||
flag_c = (flag_p = false);
|
||||
address_8001 = 0;
|
||||
prg_reg = new int[4];
|
||||
prg_reg[0] = 0;
|
||||
prg_reg[1] = 1;
|
||||
prg_reg[2] = PRG_ROM_08KB_Mask - 1;
|
||||
prg_reg[3] = PRG_ROM_08KB_Mask;
|
||||
SetupPRG();
|
||||
chr_reg = new int[6];
|
||||
for (int i = 0; i < 6; i++)
|
||||
{
|
||||
chr_reg[i] = 0;
|
||||
}
|
||||
irq_enabled = false;
|
||||
irq_counter = 0;
|
||||
irq_reload = byte.MaxValue;
|
||||
old_irq_counter = 0;
|
||||
mmc3_alt_behavior = false;
|
||||
irq_clear = false;
|
||||
if (IsGameFoundOnDB)
|
||||
{
|
||||
switch (GameCartInfo.chip_type[0].ToLower())
|
||||
{
|
||||
case "mmc3a":
|
||||
mmc3_alt_behavior = true;
|
||||
Tracer.WriteWarning("Chip= MMC3 A, MMC3 IQR mode switched to RevA");
|
||||
break;
|
||||
case "mmc3b":
|
||||
mmc3_alt_behavior = false;
|
||||
Tracer.WriteWarning("Chip= MMC3 B, MMC3 IQR mode switched to RevB");
|
||||
break;
|
||||
case "mmc3c":
|
||||
mmc3_alt_behavior = false;
|
||||
Tracer.WriteWarning("Chip= MMC3 C, MMC3 IQR mode switched to RevB");
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal override void WritePRG(ref ushort addr, ref byte val)
|
||||
{
|
||||
switch (addr & 0xE001)
|
||||
{
|
||||
case 32768:
|
||||
address_8001 = val & 7;
|
||||
flag_c = (val & 0x80) != 0;
|
||||
flag_p = (val & 0x40) != 0;
|
||||
SetupCHR();
|
||||
SetupPRG();
|
||||
break;
|
||||
case 32769:
|
||||
switch (address_8001)
|
||||
{
|
||||
case 0:
|
||||
case 1:
|
||||
case 2:
|
||||
case 3:
|
||||
case 4:
|
||||
case 5:
|
||||
chr_reg[address_8001] = val;
|
||||
SetupCHR();
|
||||
break;
|
||||
case 6:
|
||||
case 7:
|
||||
prg_reg[address_8001 - 6] = val & PRG_ROM_08KB_Mask;
|
||||
SetupPRG();
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 40960:
|
||||
if (NMT_DEFAULT_MIRROR != Mirroring.Full)
|
||||
{
|
||||
Switch01KNMTFromMirroring(((val & 1) == 1) ? Mirroring.Horz : Mirroring.Vert);
|
||||
}
|
||||
break;
|
||||
case 40961:
|
||||
TogglePRGRAMEnable((val & 0x80) != 0);
|
||||
TogglePRGRAMWritableEnable((val & 0x40) == 0);
|
||||
break;
|
||||
case 49152:
|
||||
irq_reload = val;
|
||||
break;
|
||||
case 49153:
|
||||
if (mmc3_alt_behavior)
|
||||
{
|
||||
irq_clear = true;
|
||||
}
|
||||
irq_counter = 0;
|
||||
break;
|
||||
case 57344:
|
||||
irq_enabled = false;
|
||||
NesEmu.IRQFlags &= -9;
|
||||
break;
|
||||
case 57345:
|
||||
irq_enabled = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void SetupCHR()
|
||||
{
|
||||
if (!flag_c)
|
||||
{
|
||||
Switch02KCHR(chr_reg[0] >> 1, CHRArea.Area0000);
|
||||
Switch02KCHR(chr_reg[1] >> 1, CHRArea.Area0800);
|
||||
Switch01KCHR(chr_reg[2], CHRArea.Area1000);
|
||||
Switch01KCHR(chr_reg[3], CHRArea.Area1400);
|
||||
Switch01KCHR(chr_reg[4], CHRArea.Area1800);
|
||||
Switch01KCHR(chr_reg[5], CHRArea.Area1C00);
|
||||
}
|
||||
else
|
||||
{
|
||||
Switch02KCHR(chr_reg[0] >> 1, CHRArea.Area1000);
|
||||
Switch02KCHR(chr_reg[1] >> 1, CHRArea.Area1800);
|
||||
Switch01KCHR(chr_reg[2], CHRArea.Area0000);
|
||||
Switch01KCHR(chr_reg[3], CHRArea.Area0400);
|
||||
Switch01KCHR(chr_reg[4], CHRArea.Area0800);
|
||||
Switch01KCHR(chr_reg[5], CHRArea.Area0C00);
|
||||
}
|
||||
}
|
||||
|
||||
private void SetupPRG()
|
||||
{
|
||||
Switch08KPRG(prg_reg[flag_p ? 2 : 0], PRGArea.Area8000);
|
||||
Switch08KPRG(prg_reg[1], PRGArea.AreaA000);
|
||||
Switch08KPRG(prg_reg[(!flag_p) ? 2 : 0], PRGArea.AreaC000);
|
||||
Switch08KPRG(prg_reg[3], PRGArea.AreaE000);
|
||||
}
|
||||
|
||||
internal override void OnPPUA12RaisingEdge()
|
||||
{
|
||||
old_irq_counter = irq_counter;
|
||||
if (irq_counter == 0 || irq_clear)
|
||||
{
|
||||
irq_counter = irq_reload;
|
||||
}
|
||||
else
|
||||
{
|
||||
irq_counter--;
|
||||
}
|
||||
if ((!mmc3_alt_behavior || old_irq_counter != 0 || irq_clear) && irq_counter == 0 && irq_enabled)
|
||||
{
|
||||
NesEmu.IRQFlags |= 8;
|
||||
}
|
||||
irq_clear = false;
|
||||
}
|
||||
|
||||
internal override void WriteStateData(ref BinaryWriter bin)
|
||||
{
|
||||
base.WriteStateData(ref bin);
|
||||
bin.Write(flag_c);
|
||||
bin.Write(flag_p);
|
||||
bin.Write(address_8001);
|
||||
for (int i = 0; i < chr_reg.Length; i++)
|
||||
{
|
||||
bin.Write(chr_reg[i]);
|
||||
}
|
||||
for (int j = 0; j < prg_reg.Length; j++)
|
||||
{
|
||||
bin.Write(prg_reg[j]);
|
||||
}
|
||||
bin.Write(irq_enabled);
|
||||
bin.Write(irq_counter);
|
||||
bin.Write(old_irq_counter);
|
||||
bin.Write(irq_reload);
|
||||
bin.Write(irq_clear);
|
||||
bin.Write(mmc3_alt_behavior);
|
||||
}
|
||||
|
||||
internal override void ReadStateData(ref BinaryReader bin)
|
||||
{
|
||||
base.ReadStateData(ref bin);
|
||||
flag_c = bin.ReadBoolean();
|
||||
flag_p = bin.ReadBoolean();
|
||||
address_8001 = bin.ReadInt32();
|
||||
for (int i = 0; i < chr_reg.Length; i++)
|
||||
{
|
||||
chr_reg[i] = bin.ReadInt32();
|
||||
}
|
||||
for (int j = 0; j < prg_reg.Length; j++)
|
||||
{
|
||||
prg_reg[j] = bin.ReadInt32();
|
||||
}
|
||||
irq_enabled = bin.ReadBoolean();
|
||||
irq_counter = bin.ReadByte();
|
||||
old_irq_counter = bin.ReadInt32();
|
||||
irq_reload = bin.ReadByte();
|
||||
irq_clear = bin.ReadBoolean();
|
||||
mmc3_alt_behavior = bin.ReadBoolean();
|
||||
}
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user