This repository has been archived by the owner on Oct 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataBuffer.cs
123 lines (112 loc) · 3.04 KB
/
DataBuffer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// -----------------------------------------------------------------------
// <copyright file="DataBuffer.cs" company="">
// TODO: Update copyright text.
// </copyright>
// -----------------------------------------------------------------------
namespace Nintenlord.GBA_Graphics_Editor
{
using System.Collections.Generic;
using System.IO;
using Nintenlord.ROMHacking.GBA;
using Nintenlord.ROMHacking.GBA.Compressions;
using System;
/// <summary>
/// Editable buffer of data
/// </summary>
public sealed class DataBuffer
{
bool hasBeenEdited;
List<byte> data;
public byte this[int index]
{
get
{
try
{
return data[index];
}
catch (Exception)
{
throw;
}
}
set
{
try
{
hasBeenEdited |= data[index] != value;
data[index] = value;
}
catch (Exception)
{
throw;
}
}
}
public int Length
{
get { return data.Count; }
}
public bool Edited { get { return hasBeenEdited; } }
public DataBuffer(int capacity)
{
data = new List<byte>(capacity);
hasBeenEdited = false;
}
public int GetLZ77CompLenght()
{
return LZ77.Compress(data.ToArray()).Length;
}
public void WriteData(GBAROM rom, int offset, bool compressed)
{
hasBeenEdited = false;
if (compressed)
{
rom.InsertLZ77CompressedData(offset, data.ToArray());
}
else
{
rom.InsertData(offset, data.ToArray());
}
}
public void ReadCompressedData(GBAROM rom, int offset)
{
hasBeenEdited = false;
data.Clear();
try
{
data.AddRange(rom.DecompressLZ77CompressedData(offset));
}
catch (ArgumentNullException e)
{
throw new ArgumentException("Data at offset " + offset.ToString("X8") + " can't be decompressed", e);
}
}
public void ReadData(GBAROM rom, int offset, int lenght)
{
hasBeenEdited = false;
data.Clear();
try
{
data.AddRange(rom.GetData(offset, lenght));
}
catch (ArgumentException)
{
throw;
}
}
public void Append(IEnumerable<byte> newData)
{
hasBeenEdited = true;
data.AddRange(newData);
}
public void WriteData(BinaryWriter writer)
{
writer.Write(data.ToArray());
}
public byte[] ToArray()
{
return data.ToArray();
}
}
}