-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSteamCatalog.cs
82 lines (64 loc) · 2.38 KB
/
SteamCatalog.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
using GameLib.Plugin.Steam.Model;
using System.Collections.ObjectModel;
using ValveKeyValue;
namespace GameLib.Plugin.Steam;
internal class SteamCatalog
{
private const uint Magic = 0x07_56_44_27;
private readonly string _catalogPath;
private SteamUniverse _universe = SteamUniverse.Invalid;
private IEnumerable<DeserializedSteamCatalog> _catalog = Enumerable.Empty<DeserializedSteamCatalog>();
public SteamUniverse Universe => _universe;
public IEnumerable<DeserializedSteamCatalog> Catalog => _catalog;
public SteamCatalog(string launcherPath)
{
_catalogPath = Path.Combine(launcherPath, "appcache", "appinfo.vdf");
Refresh();
}
public void Refresh()
{
if (!File.Exists(_catalogPath))
{
throw new FileNotFoundException("Configuration file not found, probably Steam client hasn't been started at least once.", _catalogPath);
}
_universe = SteamUniverse.Invalid;
using var stream = File.OpenRead(_catalogPath);
using var reader = new BinaryReader(stream);
var magic = reader.ReadUInt32();
if (magic != Magic)
{
throw new InvalidDataException($"Unknown magic header: {magic}");
}
_universe = (SteamUniverse)reader.ReadUInt32();
var deserializer = KVSerializer.Create(KVSerializationFormat.KeyValues1Binary);
List<DeserializedSteamCatalog> deserializedSteamCatalogList = new();
while (true)
{
var appId = reader.ReadUInt32();
if (appId == 0)
{
break;
}
DeserializedSteamCatalog item = new()
{
AppID = appId,
Size = reader.ReadUInt32(),
InfoState = reader.ReadUInt32(),
LastUpdated = DateTime.UnixEpoch.AddSeconds(reader.ReadUInt32()),
Token = reader.ReadUInt64(),
Hash = new ReadOnlyCollection<byte>(reader.ReadBytes(20)),
ChangeNumber = reader.ReadUInt32(),
};
try
{
item.Data = deserializer.Deserialize<DeserializedSteamCatalog.DeserializedData>(stream);
}
catch
{
continue;
}
deserializedSteamCatalogList.Add(item);
}
_catalog = deserializedSteamCatalogList;
}
}