forked from AssetRipper/AssetRipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnityObjectBase.OriginalPathDetails.cs
77 lines (68 loc) · 1.43 KB
/
UnityObjectBase.OriginalPathDetails.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
namespace AssetRipper.Assets;
public abstract partial class UnityObjectBase
{
private sealed class OriginalPathDetails
{
private string? directory;
private string? name;
private string? extension;
private string? fullPath;
public string? Directory
{
get => directory;
set
{
directory = value;
fullPath = CalculatePath();
}
}
public string? Name
{
get => name;
set
{
name = value;
fullPath = CalculatePath();
}
}
/// <summary>
/// Not including the period
/// </summary>
public string? Extension
{
get => extension;
set
{
extension = RemovePeriod(value);
fullPath = CalculatePath();
}
}
public string? FullPath
{
get => fullPath;
set
{
if (value != fullPath)
{
fullPath = value;
Directory = Path.GetDirectoryName(value);
Name = Path.GetFileNameWithoutExtension(value);
Extension = RemovePeriod(Path.GetExtension(value));
}
}
}
private string NameWithExtension => string.IsNullOrEmpty(Extension) ? Name ?? "" : $"{Name}.{Extension}";
public override string? ToString() => FullPath;
private string CalculatePath()
{
return Directory is null
? NameWithExtension
: Path.Combine(Directory, NameWithExtension);
}
[return: NotNullIfNotNull(nameof(str))]
private static string? RemovePeriod(string? str)
{
return string.IsNullOrEmpty(str) || str[0] != '.' ? str : str.Substring(1);
}
}
}