-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctions.cs
More file actions
558 lines (548 loc) · 17.2 KB
/
Functions.cs
File metadata and controls
558 lines (548 loc) · 17.2 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
using Newtonsoft.Json.Linq;
using System.Dynamic;
using System.Text.RegularExpressions;
namespace NormaLang
{
/*
* This interface is for any functions that want to be created:
*
* public class FUNCTION_NAME : IFunction {
*
* public string Name { get; } = nameof(FUNCTION_NAME).ToLower();
* public int Params { get; } = NUMBER_OF_PARAMETERS;
* public bool Returns { get; } = IF_THE_FUNCTION_RETURNS_A_VALUE;
*
* public object? Execute(object[] args)
* {
* var param1 = args[0];
* return null;
* }
* }
*/
public interface IFunction
{
public static List<IFunction> AllFunctions { get; set; } = new List<IFunction>()
{
// console:
new FPrint(),
new FInput(),
new FClear(),
// utility:
new FExit(),
new FRunCode(),
new FReadFile(),
new FWriteFile(),
new FCreateFile(),
new FDeleteFile(),
new FEnvPath(),
new FEnvDir(),
new FIntToChar(),
new FCharToInt(),
new FRandom(),
new FSolveEquation(),
new FRegexSplitTokens(),
new FToJSON(), //////////////////////////// REMOVE THIS
// string:
new FSubstring(),
new FIndexOf(),
new FToLower(),
new FToUpper(),
new FTrim(),
new FReverse(),
// array:
new FLength(),
new FAppend(),
new FRemove(),
new FInsert(),
new FSlice(),
new FConcat(),
new FSort(),
};
public string Name { get; }
public int Params { get; }
public bool Returns { get; }
public abstract object? Execute(object[] args);
internal static string ValueToString(object value)
{
if (value is object[] o)
{
return Execution.ArrayToText(o);
}
if (value is ExpandoObject e)
{
return Execution.StructToText(e);
}
else
{
return value.ToString()!;
}
}
}
#region Console
/*
* The print function for Norma
* takes input and prints it to the console
*/
public class FPrint : IFunction
{
public string Name { get; } = "print";
public int Params { get; } = 1;
public bool Returns { get; } = false;
public object? Execute(object[] args)
{
string text = IFunction.ValueToString(args[0]);
Console.WriteLine(text);
return null;
}
}
/*
* The input function for Norma
* Returns the input from the console
*/
public class FInput : IFunction
{
public string Name { get; } = "input";
public int Params { get; } = 0;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
return Console.ReadLine();
}
}
/*
* The clear function for Norma
* Clears the console
*/
public class FClear : IFunction
{
public string Name { get; } = "clear";
public int Params { get; } = 0;
public bool Returns { get; } = false;
public object? Execute(object[] args)
{
Console.Clear();
return null;
}
}
#endregion
#region Utility
public class FExit : IFunction
{
public string Name { get; } = "exit";
public int Params { get; } = 0;
public bool Returns { get; } = false;
public object? Execute(object[] args)
{
Environment.Exit(0);
return null;
}
}
public class FRunCode : IFunction
{
public string Name { get; } = "runCode";
public int Params { get; } = 1;
public bool Returns { get; } = false;
public object? Execute(object[] args)
{
var code = IFunction.ValueToString(args[0]);
Interprete.RunCode(code, Interprete.FilePath);
return null;
}
}
public class FReadFile : IFunction
{
public string Name { get; } = "readFile";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
var file = IFunction.ValueToString(args[0]);
return File.ReadAllText(file);
}
}
public class FWriteFile : IFunction
{
public string Name { get; } = "writeFile";
public int Params { get; } = 2;
public bool Returns { get; } = false;
public object? Execute(object[] args)
{
var file = IFunction.ValueToString(args[0]);
var text = IFunction.ValueToString(args[1]);
File.WriteAllText(file, text);
return null;
}
}
public class FCreateFile : IFunction
{
public string Name { get; } = "createFile";
public int Params { get; } = 1;
public bool Returns { get; } = false;
public object? Execute(object[] args)
{
var file = IFunction.ValueToString(args[0]);
File.Create(file).Close();
return null;
}
}
public class FDeleteFile : IFunction
{
public string Name { get; } = "deleteFile";
public int Params { get; } = 1;
public bool Returns { get; } = false;
public object? Execute(object[] args)
{
var file = IFunction.ValueToString(args[0]);
File.Delete(file);
return null;
}
}
public class FEnvPath : IFunction
{
public string Name { get; } = "envPath";
public int Params { get; } = 0;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
return Interprete.FilePath;
}
}
public class FEnvDir : IFunction
{
public string Name { get; } = "envDir";
public int Params { get; } = 0;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
return Directory.GetParent(Interprete.FilePath).FullName;
}
}
public class FIntToChar : IFunction
{
public string Name { get; } = "intToChar";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
string hex = IFunction.ValueToString(args[0]);
return (char)Convert.ToInt32(hex, 16);
}
}
public class FCharToInt : IFunction
{
public string Name { get; } = "charToInt";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
char c = (char)args[0];
return (int)c;
}
}
public class FRandom : IFunction
{
public string Name { get; } = "random";
public int Params { get; } = 2;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
var min = int.Parse(IFunction.ValueToString(args[0]));
var max = int.Parse(IFunction.ValueToString(args[1]));
return new Random().Next(min, max);
}
}
public class FSolveEquation : IFunction
{
public string Name { get; } = "solveEquation";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
string equation = args[0].ToString();
System.Data.DataTable dt = new System.Data.DataTable();
dt.Columns.Add("expression", typeof(string), equation);
System.Data.DataRow row = dt.NewRow();
dt.Rows.Add(row);
return float.Parse((string)row["expression"]);
}
}
public class FRegexSplitTokens : IFunction
{
public string Name { get; } = "__regexSplitTokens";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
if (args[0] is string)
{
string token = IFunction.ValueToString(args[0]);
string[] parts = Regex.Split(token,
@"((?=\[)|(?<=\[))|(?=\])|(?<=\])|(?=\.)|(?<=\.)|(?=\+)|(?<=\+)|(?=\-)|(?<=\-)|(?=\*)|(?<=\*)|(?=\/)|(?<=\/)|(?=\=)|(?<=\=)"
).Where(x => x != "" && x != " ").ToArray();
return parts;
}
else
{
string[] tokens = (args[0] as object[]).Select(IFunction.ValueToString).ToArray();
string[] parts = Regex.Split(string.Join("", tokens),
@"((?=\[)|(?<=\[))|(?=\])|(?<=\])|(?=\.)|(?<=\.)|(?=\+)|(?<=\+)|(?=\-)|(?<=\-)|(?=\*)|(?<=\*)|(?=\/)|(?<=\/)|(?=\=)|(?<=\=)"
).Where(x => x != "" && x != " ").ToArray();
return parts;
}
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////REMOVE THIS
public class FToJSON : IFunction
{
public string Name { get; } = "toJSON";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
return Newtonsoft.Json.JsonConvert.SerializeObject(args[0], Newtonsoft.Json.Formatting.Indented);
}
}
#endregion
#region String
public class FSubstring : IFunction
{
public string Name { get; } = "substring";
public int Params { get; } = 3;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
var text = IFunction.ValueToString(args[0]);
var start = int.Parse(IFunction.ValueToString(args[1]));
var length = int.Parse(IFunction.ValueToString(args[2]));
return text?.Substring(start, length);
}
}
public class FIndexOf : IFunction
{
public string Name { get; } = "indexOf";
public int Params { get; } = 2;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
var text = IFunction.ValueToString(args[0]);
var name = IFunction.ValueToString(args[1]);
return text?.IndexOf(name!);
}
}
public class FToUpper : IFunction
{
public string Name { get; } = "toUpper";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
var text = IFunction.ValueToString(args[0]);
return text?.ToUpper();
}
}
public class FToLower : IFunction
{
public string Name { get; } = "toLower";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
var text = IFunction.ValueToString(args[0]);
return text?.ToLower();
}
}
public class FTrim : IFunction
{
public string Name { get; } = "trim";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
var text = IFunction.ValueToString(args[0]);
return text?.Trim();
}
}
public class FReverse : IFunction
{
public string Name { get; } = "reverse";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
if (args[0] is object[] array)
{
object[] ar = array.Reverse().ToArray();
return ar;
}
else if (args[0] is string str)
{
return new string(str.Reverse().ToArray());
}
else
{
throw new Exception("Argument must be an array or a string");
}
}
}
#endregion
#region Array
public class FLength : IFunction
{
public string Name { get; } = "length";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
if (args[0] is Array array)
{
return array.Length;
}
else if (args[0] is string str)
{
return str.Length;
}
else
{
throw new Exception("Can not get length of variable that isn't type array or string");
}
}
}
public class FAppend : IFunction
{
public string Name { get; } = "append";
public int Params { get; } = 2;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
if (args[0] is object[] array)
{
return array.Append(args[1]).ToArray();
}
if (args[0] is string s)
{
return s + IFunction.ValueToString(args[1]);
}
if (args[0] is char c)
{
return c.ToString() + IFunction.ValueToString(args[1]);
}
if (args[0] is int i)
{
return i.ToString() + IFunction.ValueToString(args[1]);
}
if (args[0] is float f)
{
return f.ToString() + IFunction.ValueToString(args[1]);
}
else
{
throw new Exception("Can not append to variable that is not array or string");
}
}
}
public class FRemove : IFunction
{
public string Name { get; } = "remove";
public int Params { get; } = 2;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
if (args[0] is object[] array)
{
var index = int.Parse(IFunction.ValueToString(args[1]));
if (index < 0 || index >= array.Length)
{
throw new Exception("Index out of bounds");
}
return array.Where((_, i) => i != index).ToArray();
}
else
{
throw new Exception("Cannot remove from a variable that is not an array");
}
}
}
public class FInsert : IFunction
{
public string Name { get; } = "insert";
public int Params { get; } = 3;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
if (args[0] is object[] array)
{
var index = int.Parse(IFunction.ValueToString(args[1]));
if (index < 0 || index > array.Length)
{
throw new Exception("Index out of bounds");
}
var list = array.ToList();
list.Insert(index, args[2]);
return list.ToArray();
}
else
{
throw new Exception("Cannot insert into a variable that is not an array");
}
}
}
public class FSlice : IFunction
{
public string Name { get; } = "slice";
public int Params { get; } = 3;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
if (args[0] is object[] array)
{
var start = int.Parse(IFunction.ValueToString(args[1]));
var length = int.Parse(IFunction.ValueToString(args[2]));
if (start < 0 || start >= array.Length || length < 0 || start + length > array.Length)
{
throw new Exception("Invalid start or length for slice operation");
}
return array.Skip(start).Take(length).ToArray();
}
else
{
throw new Exception("Cannot slice a variable that is not an array");
}
}
}
public class FConcat : IFunction
{
public string Name { get; } = "concat";
public int Params { get; } = 2;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
if (args[0] is object[] array1 && args[1] is object[] array2)
{
return array1.Concat(array2).ToArray();
}
else
{
throw new Exception("Both arguments must be arrays");
}
}
}
public class FSort : IFunction
{
public string Name { get; } = "sort";
public int Params { get; } = 1;
public bool Returns { get; } = true;
public object? Execute(object[] args)
{
if (args[0] is object[] array)
{
var sortedArray = array.OrderBy(x => x).ToArray();
return sortedArray;
}
else
{
throw new Exception("Argument must be an array");
}
}
}
#endregion
}