-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRenderAggregator.cs
142 lines (123 loc) · 3.94 KB
/
RenderAggregator.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
132
133
134
135
136
137
138
139
140
141
142
using System;
using System.Collections.Generic;
using System.Linq;
public class RenderAggregator : IVisitor<List<Node>, object>
{
private List<Node> AggregateBatch(List<Node> block)
{
var newBlock = new List<Node>();
var batches = new List<Node>();
foreach(var node in block)
{
if(node is BatchRenderNode) {
foreach(var iNode in ((BatchRenderNode)node).batch)
{
batches.Add(iNode);
}
} else {
if(batches.Count != 0) newBlock.Add(new BatchRenderNode(batches));
batches = new List<Node>();
newBlock.Add(node);
}
}
if(batches.Count != 0) newBlock.Add(new BatchRenderNode(batches));
batches = new List<Node>();
return newBlock;
}
private List<Node> AggregateBlock(List<Node> block)
{
var newBlock = new List<Node>();
var renders = new List<Node>();
foreach(var node in block)
{
if(node is RenderNode) renders.Add(node);
else {
if(renders.Count != 0) newBlock.Add(new BatchRenderNode(renders));
renders = new List<Node>();
newBlock.Add(node);
}
}
if(renders.Count != 0) newBlock.Add(new BatchRenderNode(renders));
renders = new List<Node>();
return AggregateBatch(newBlock);
}
public List<Node> Visit(ExtendsNode node, object ctx)
{
return new List<Node>{node};
}
public List<Node> Visit(NumNode node, object ctx)
{
return new List<Node>{node};
}
public List<Node> Visit(BoolNode node, object _)
{
return new List<Node>{node};
}
public List<Node> Visit(BatchRenderNode node, object ctx)
{
return node.batch;
}
public List<Node> Visit(RenderNode node, object ctx)
{
return new List<Node>{node};
}
public List<Node> Visit(StrNode node, object ctx)
{
return new List<Node>{node};
}
public List<Node> Visit(ListNode node, object ctx)
{
return new List<Node>{node};
}
public List<Node> Visit(ObjectNode node, object ctx)
{
return new List<Node>{node};
}
public List<Node> Visit(AccessProperty node, object ctx)
{
return new List<Node>{node};
}
public List<Node> Visit(VarAccessNode node, object ctx)
{
return new List<Node>{node};
}
public List<Node> Visit(BinOpNode node, object ctx)
{
return new List<Node>{node};
}
public List<Node> Visit(BlockNode node, object ctx)
{
return this.AggregateBlock(node.block.Select(a => a.Accept(this, ctx)).SelectMany(x => x).ToList());
}
public List<Node> Visit(ForNode forNode, object ctx)
{
return new List<Node>{
new ForNode(
forNode.idents.Select(a => a).ToList(),
forNode.iterNode,
this.AggregateBlock(forNode.nodes.Select(a => a.Accept(this, ctx)).SelectMany(x => x).ToList()),
forNode.posStart.Copy(),
forNode.posEnd.Copy()
)
};
}
public List<Node> Visit(CallNode callNode, object ctx)
{
return new List<Node>{callNode};
}
public List<Node> Visit(IfNode ifNode, object ctx)
{
return new List<Node>{
new IfNode(
ifNode.blocks.Select(ab => Tuple.Create(ab.Item1, this.AggregateBlock(ab.Item2.Select(a => a.Accept(this, ctx)).SelectMany(x => x).ToList()))).ToList(),
this.AggregateBlock(ifNode.elseCase.Select(a => a.Accept(this, ctx)).SelectMany(x => x).ToList()),
ifNode.posStart.Copy(),
ifNode.posStart.Copy()
)
};
}
public List<Node> Visit(List<Node> nodes)
{
return this.AggregateBlock(nodes.Select(a => a.Accept(this, null)).SelectMany(x => x).ToList());
}
}