-
Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathUndertaleBaseTypes.cs
131 lines (114 loc) · 3.9 KB
/
UndertaleBaseTypes.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
124
125
126
127
128
129
130
131
using UndertaleModLib.Models;
namespace UndertaleModLib
{
public interface UndertaleObject
{
/// <summary>
/// Serializes this <see cref="UndertaleObject"/> into a specified <see cref="UndertaleWriter"/>.
/// </summary>
/// <param name="writer">Where to serialize to.</param>
void Serialize(UndertaleWriter writer);
/// <summary>
/// Deserializes this <see cref="UndertaleObject"/> from a specified <see cref="UndertaleReader"/>.
/// </summary>
/// <param name="reader">Where to deserialize from.</param>
void Unserialize(UndertaleReader reader);
/*
* As for C# 10, it's impossible to inherit static methods from an interface :(
* (so this method is for inheriting XML commentary only)
*/
/// <summary>
/// Deserializes the total child object count of this object from specified <see cref="UndertaleReader"/>.
/// </summary>
/// <param name="reader">Where to deserialize from.</param>
/// <returns>The object count.</returns>
static uint UnserializeChildObjectCount(UndertaleReader reader) => 0;
}
public interface UndertaleObjectWithBlobs
{
/// <summary>
/// TODO!
/// </summary>
/// <param name="writer">Where to serialize to.</param>
void SerializeBlobBefore(UndertaleWriter writer);
}
public interface PaddedObject // TODO: use this everywhere
{
/// <summary>
/// TODO!
/// </summary>
/// <param name="writer">Where to serialize to.</param>
void SerializePadding(UndertaleWriter writer);
/// <summary>
/// TODO!
/// </summary>
/// <param name="reader">Where to deserialize from.</param>
void UnserializePadding(UndertaleReader reader);
}
public interface PrePaddedObject
{
/// <summary>
/// TODO!
/// </summary>
/// <param name="writer">Where to serialize to.</param>
void SerializePrePadding(UndertaleWriter writer);
/// <summary>
/// TODO!
/// </summary>
/// <param name="reader">Where to deserialize from.</param>
void UnserializePrePadding(UndertaleReader reader);
}
public enum ResourceType
{
None = -1,
Object = 0,
Sprite = 1,
Sound = 2,
Room = 3,
Unknown = 4, // Probably removed
Path = 5,
Script = 6,
Font = 7,
Timeline = 8,
Background = 9,
Shader = 10,
// GMS2.3+
Sequence = 11,
AnimCurve = 12,
// GM 2023+
ParticleSystem = 13
}
public interface UndertaleResource : UndertaleObject
{
}
public interface UndertaleNamedResource : UndertaleResource
{
UndertaleString Name { get; set; }
}
public interface ISearchable
{
/// <summary>
/// Returns a value indicating whether a specified substring occurs within this object.
/// </summary>
/// <param name="filter">The string to seek. Case insensitive.</param>
/// <returns><see langword="true"/> if <paramref name="filter"/> occurs within this object, or if
/// <paramref name="filter"/> is the empty string (""); otherwise, false.</returns>
bool SearchMatches(string filter);
}
public interface IStaticChildObjCount
{
/// <summary>
/// The total child object count of the current object type.
/// Used for the object count unserialization.
/// </summary>
public static readonly uint ChildObjectCount = 0;
}
public interface IStaticChildObjectsSize
{
/// <summary>
/// The summary child objects size of the current object type.
/// Used for the object count unserialization.
/// </summary>
public static readonly uint ChildObjectsSize = 0;
}
}