-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathByter.cs
124 lines (105 loc) · 3.67 KB
/
Byter.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
/*
* Byter Interpreter
* Copyright (C) 2010 RoliSoft
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
using System;
namespace RoliSoft.Interpreters
{
public class Byter : IInterpreter
{
public event PrintCharEventHandler PrintChar = Console.Write;
public event PrintStringEventHandler PrintString = Console.WriteLine;
public event ReadCharEventHandler ReadChar = () => Console.ReadKey().KeyChar;
public event ReadStringEventHandler ReadString = Console.ReadLine;
private unsafe char* _matrix;
/// <summary>
/// Builds a 16x16 matrix from the Byter code and runs it.
/// </summary>
/// <param name="src">The Byter code.</param>
/// <returns>Returns the results of the code run.</returns>
public unsafe void Run(string src)
{
fixed (char* ptr = new char[256])
{
var i = 0;
foreach (var c in src)
{
if (c == '0' || c == '<' || c == '>' || c == 'V' || c == 'A' || c == '{' || c == '}' || c == '+' || c == '-' || c == '$' || c == '#')
{
ptr[i++] = c;
}
}
if (i != 256)
{
throw new Exception("Code must be exactly 256 characters!");
}
_matrix = ptr;
}
Step(0, 0);
}
private unsafe void Step(int x, int y)
{
if (x > 15 || y > 15)
{
throw new Exception(x + "x" + y + " is not a valid point in the matrix.");
}
switch (_matrix[x * 16 + y])
{
case '0':
Step(x, --y);
break;
case '<':
_matrix[x * 16 + y] = '>';
Step(x, --y);
break;
case '>':
_matrix[x * 16 + y] = '<';
Step(x, ++y);
break;
case 'V':
_matrix[x * 16 + y] = 'A';
Step(++x, y);
break;
case 'A':
_matrix[x * 16 + y] = 'V';
Step(--x, y);
break;
case '{':
PrintChar((char)(x * 16 + y));
Step(x, --y);
break;
case '}':
PrintChar((char)(x * 16 + y));
Step(x, ++y);
break;
case '+':
PrintChar((char)(x * 16 + y));
Step(--x, y);
break;
case '-':
PrintChar((char)(x * 16 + y));
Step(++x, y);
break;
case '$':
PrintChar((char)(x * 16 + y));
Step(0, 0);
break;
case '#':
return;
}
}
}
}