-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormattedTextAdapter.cs
59 lines (51 loc) · 1.76 KB
/
FormattedTextAdapter.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
using TriInspector;
namespace CodeWriter.ViewBinding.Applicators.Adapters
{
using System;
using UnityEngine;
using UnityEngine.Scripting;
[AddComponentMenu("View Binding/Adapters/[Binding] Formatted Text Adapter")]
public class FormattedTextAdapter : SingleResultAdapterBase<string, FormattedTextAdapter.ViewVariableString>
{
[Space]
[SerializeField]
private string format = "";
[Required]
[ShowInInspector]
[ViewContextCollection]
public ViewContextBase[] ExtraContexts
{
get => result.extraContexts;
set => result.extraContexts = value;
}
protected override string Adapt()
{
return format;
}
[Serializable, Preserve]
public class ViewVariableString : ViewVariable<string, ViewVariableString>
{
[SerializeField]
public ViewContextBase[] extraContexts = null;
[Preserve]
public ViewVariableString()
{
}
public override void AppendValueTo(ref ValueTextBuilder builder)
{
var formatTextBuilder = new ValueTextBuilder(ValueTextBuilder.DefaultCapacity);
var secondFormatTextBuilder = new ValueTextBuilder(ValueTextBuilder.DefaultCapacity);
try
{
formatTextBuilder.AppendFormat(Value, extraContexts);
secondFormatTextBuilder.AppendFormat(formatTextBuilder.ToString(), extraContexts);
builder.Append(secondFormatTextBuilder.AsSpan());
}
finally
{
formatTextBuilder.Dispose();
}
}
}
}
}