-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPeriodicPatternObserver.cs
More file actions
63 lines (53 loc) · 1.29 KB
/
Copy pathPeriodicPatternObserver.cs
File metadata and controls
63 lines (53 loc) · 1.29 KB
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
namespace Rule110;
public class PeriodicPatternObserver : IObserver
{
private readonly int[] _pattern;
private readonly int _yPeriod;
private int _depth;
private int? _xPos;
private bool _terminated;
public int Depth => _depth;
public PeriodicPatternObserver(int[] pattern, int yPeriod)
{
_pattern = pattern;
_yPeriod = yPeriod;
}
public void Next(int lvl, int[] tape)
{
if (_terminated)
return;
if (lvl % _yPeriod != 0)
return;
for (int i = 0; i < tape.Length - _pattern.Length + 1; i++)
{
if (!SeqEqual(tape, i, _pattern))
continue;
if (!_xPos.HasValue)
{
_xPos = i;
_depth++;
return;
}
if (_xPos != i)
{
_terminated = true;
return;
}
_depth++;
return;
}
_terminated = true;
}
private static bool SeqEqual(int[] tape, int pos, int[] pattern)
{
for (int i = 0; i < pattern.Length; i++)
{
if (tape[i + pos] != pattern[i])
return false;
}
return true;
}
public void Complete()
{
}
}