-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathAssertiveLang.cs
737 lines (731 loc) · 30.6 KB
/
AssertiveLang.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
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
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Reflection.Emit;
using System.Collections.Generic;
namespace AssertiveLang
{
public static class Program
{
public static void Main(string[] args)
{
new AsserLangCompiler(File.ReadAllText(args[0])).Compile().AsserFunction();
}
}
public class AsserLangCompiler
{
public AsserLangCompiler(string source)
{
var arr = source.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.None);
if (arr.First() != "쿠쿠루삥뽕") throw new AsserLangException($"아무것도 모르죠?");
if (arr.Last() != "슉슈슉슉") throw new AsserLangException($"아무것도 모르죠?");
Source = source;
TypeBuilder = AsserLangMethod.AsserLangModule.DefineType($"AsserType{(AsserTypeCount++ == 1 ? "" : AsserTypeCount.ToString())}", TypeAttributes.Public);
Method = (AsserLangMethod)TypeBuilder.DefineMethod("AsserLangMethod", MethodAttributes.Public | MethodAttributes.Static, typeof(object), Type.EmptyTypes);
AsserLangMethod.AsserLangAsm.SetEntryPoint(Method.Method);
}
public string Source { get; }
public TypeBuilder TypeBuilder { get; }
public AsserLangMethod Method { get; private set; }
public ILGenerator IL { get; }
public Dictionary<string, LocalBuilder> Variables = new Dictionary<string, LocalBuilder>();
public Dictionary<string, AsserLangMethod> Methods = new Dictionary<string, AsserLangMethod>();
public List<int> GotoList = new List<int>();
public AsserLangResult Result;
public AsserLangResult Compile()
{
int lineNumber = 0;
using (StringReader reader = new StringReader(Source))
{
string line = "";
while ((line = reader.ReadLine()) != null)
{
lineNumber++;
if (line.TrimStart().StartsWith("//"))
continue;
if (line.Contains(";;"))
{
line = line.Substring(line.LastIndexOf(";;")).Replace(";;", "");
if (AsserLangMethod.IsNumber(line, out int label))
GotoList.Add(label);
}
}
reader.Close();
}
Method.PrepareLabels(GotoList);
lineNumber = 0;
try
{
using (StringReader reader = new StringReader(Source))
{
string line = "";
while ((line = reader.ReadLine()) != null)
{
lineNumber++;
if (line.TrimStart().StartsWith("//"))
continue;
Method.Emit(line, reader, TypeBuilder, ref lineNumber);
}
}
if (!Method.Returned)
Method.Ret(true);
var created = TypeBuilder.CreateType();
var method = created.GetMethod(Method.Method.Name);
var func = (Func<object>)method.CreateDelegate(typeof(Func<object>));
return Result = new AsserLangResult(created, method, func);
}
catch (Exception ex)
{
throw new AsserLangException($"컴파일 오류! 줄 {lineNumber}", ex);
}
}
public static void Save()
=> AsserLangMethod.AsserLangAsm.Save("AsserLangMethod.dll");
public static int AsserTypeCount = 1;
}
public class AsserLangException : Exception
{
public AsserLangException(string msg) : base(msg) { }
public AsserLangException(string msg, Exception inner) : base(msg, inner) { }
}
public class AsserLangResult
{
public Type AsserType;
public MethodInfo AsserLangMethod;
public Func<object> AsserFunction;
public AsserLangResult(Type asserType, MethodInfo asserMethod, Func<object> asserFunction)
{
AsserType = asserType;
AsserFunction = asserFunction;
AsserLangMethod = asserMethod;
}
}
public class AsserLangMethod
{
public static explicit operator AsserLangMethod(MethodBuilder methodBuilder) => new AsserLangMethod(methodBuilder);
public static explicit operator MethodBuilder(AsserLangMethod asserMethod) => asserMethod.Method;
public static MethodInfo sEquality = typeof(string).GetMethod("op_Equality");
public static MethodInfo iParse = typeof(int).GetMethod("Parse", new[] { typeof(string) });
public static MethodInfo oWrite = typeof(Console).GetMethod("Write", new[] { typeof(object) });
public static MethodInfo ReadL = typeof(Console).GetMethod("ReadLine");
public MethodBuilder Method;
public ILGenerator IL;
public Dictionary<string, short> Parameters;
public Dictionary<string, LocalBuilder> Variables;
public Dictionary<LocalBuilder, Type> BoxType;
public Dictionary<short, Type> BoxTypeArg;
public AsserLangMethod Outer;
public Type LastBoxedType = typeof(int);
public string[] ParameterNames;
public bool RequireLdnull = true;
public bool Returned = false;
public Stack<Label> Conditions;
public Dictionary<int, Label> Labels = new Dictionary<int, Label>();
public Dictionary<string, AsserLangMethod> LocalMethods;
public AsserLangMethod(MethodBuilder method, Dictionary<string, short> parameters = null, string[] parameterNames = null, Dictionary<string, AsserLangMethod> localMethods = null, AsserLangMethod outer = null)
{
Method = method;
IL = method.GetILGenerator();
Parameters = parameters ?? new Dictionary<string, short>();
ParameterNames = parameterNames;
Variables = new Dictionary<string, LocalBuilder>();
BoxType = new Dictionary<LocalBuilder, Type>();
BoxTypeArg = new Dictionary<short, Type>();
LocalMethods = localMethods ?? new Dictionary<string, AsserLangMethod>();
Labels = new Dictionary<int, Label>();
Conditions = new Stack<Label>();
Outer = outer;
}
public AsserLangMethod DefineMethod(TypeBuilder typeBuilder, string name, string[] parameterNames)
{
var meth = typeBuilder.DefineMethod(name, MethodAttributes.Public | MethodAttributes.Static, typeof(object), Enumerable.Repeat(typeof(object), parameterNames.Length).ToArray());
Dictionary<string, short> param = new Dictionary<string, short>();
for (int i = 0; i < parameterNames.Length; i++)
{
param.Add(parameterNames[i], (short)i);
meth.DefineParameter(i + 1, ParameterAttributes.None, parameterNames[i]);
}
var locMeth = new AsserLangMethod(meth, param, parameterNames, null, this);
locMeth.PrepareLabels(Labels.Keys.ToList());
LocalMethods.Add(name, locMeth);
return locMeth;
}
public void Box(Type type)
{
Emit(OpCodes.Box, type);
LastBoxedType = type;
}
public void PrepareLabels(List<int> gotoList)
{
gotoList.ForEach(i =>
{
if (!Labels.ContainsKey(i))
Labels.Add(i, IL.DefineLabel());
});
}
public void StartCondition(string name, bool equals = true)
{
RequireLdnull = true;
Get(name);
if (LastBoxedType == typeof(int))
{
Emit(OpCodes.Ldc_I4, 0);
Emit(OpCodes.Ceq);
}
else if (LastBoxedType == typeof(string))
{
Emit(OpCodes.Ldstr, "0");
Emit(OpCodes.Call, sEquality);
}
var label = IL.DefineLabel();
Emit(equals ? OpCodes.Brfalse : OpCodes.Brtrue, label);
Conditions.Push(label);
}
public void EndCondition()
{
if (!Conditions.Any()) return;
RequireLdnull = true;
IL.MarkLabel(Conditions.Pop());
}
public void Goto(Label label)
{
RequireLdnull = true;
Emit(OpCodes.Br, label);
}
public LocalBuilder DeclareLocal(string name, object value = null)
{
RequireLdnull = true;
var loc = IL.DeclareLocal(typeof(object));
if (name != null)
{
loc.SetLocalSymInfo(name);
Variables.Add(name, loc);
}
if (value is int i)
{
Emit(OpCodes.Ldc_I4, i);
Emit(OpCodes.Box, typeof(int));
BoxType[loc] = typeof(int);
}
else if (value is string s)
{
Emit(OpCodes.Ldstr, s);
Emit(OpCodes.Box, typeof(string));
BoxType[loc] = typeof(string);
}
else
{
Emit(OpCodes.Ldc_I4_0);
Emit(OpCodes.Box, typeof(int));
BoxType[loc] = typeof(int);
}
Emit(OpCodes.Stloc, loc);
LastBoxedType = BoxType[loc];
return loc;
}
public void Get(string name, bool ignoreBoxing = false)
{
if (Variables.TryGetValue(name, out _))
GetLocal(name, ignoreBoxing);
else if (Parameters.TryGetValue(name, out _))
GetParam(name, ignoreBoxing);
else throw new AsserLangException($"어쩔변수 ({name}이(가) 선언되어있지 않음)");
}
public void Set(string name, object value = null)
{
if (Variables.TryGetValue(name, out _))
SetLocal(name, value);
else if (Parameters.TryGetValue(name, out _))
SetParam(name, value);
else throw new AsserLangException($"어쩔변수 ({name}이(가) 선언되어있지 않음)");
}
public void GetLocal(string name, bool ignoreBoxing = false)
{
RequireLdnull = false;
Emit(OpCodes.Ldloc, Variables[name]);
Type boxType = BoxType[Variables[name]];
if (!ignoreBoxing)
Emit(OpCodes.Unbox_Any, boxType);
LastBoxedType = boxType;
}
public void SetLocal(string name, object value)
{
RequireLdnull = true;
var loc = Variables[name];
if (value is int i)
{
Emit(OpCodes.Ldc_I4, i);
Emit(OpCodes.Box, typeof(int));
BoxType[loc] = typeof(int);
}
else if (value is string s)
{
Emit(OpCodes.Ldstr, s);
Emit(OpCodes.Box, typeof(string));
BoxType[loc] = typeof(string);
}
Emit(OpCodes.Stloc, loc);
LastBoxedType = BoxType[loc];
}
public void GetParam(string name, bool ignoreBoxing = false)
{
RequireLdnull = false;
Emit(OpCodes.Ldarg, Parameters[name]);
if (BoxTypeArg.TryGetValue(Parameters[name], out Type boxType))
{
if (!ignoreBoxing)
Emit(OpCodes.Unbox_Any, boxType);
LastBoxedType = boxType;
}
else
{
if (!ignoreBoxing)
Emit(OpCodes.Unbox_Any, typeof(int));
BoxTypeArg[Parameters[name]] = typeof(int);
LastBoxedType = typeof(int);
}
}
public void SetParam(string name, object value)
{
RequireLdnull = true;
var arg = Parameters[name];
if (value is int i)
{
Emit(OpCodes.Ldc_I4, i);
Emit(OpCodes.Box, typeof(int));
BoxTypeArg[arg] = typeof(int);
}
else if (value is string s)
{
Emit(OpCodes.Ldstr, s);
Emit(OpCodes.Box, typeof(string));
BoxTypeArg[arg] = typeof(string);
}
else throw new AsserLangException($"Compilation Error! Invalid LocalVariable Type ({value.GetType()})");
Emit(OpCodes.Starg, arg);
LastBoxedType = BoxTypeArg[arg];
}
public Label DefineAndMark()
{
RequireLdnull = true;
var label = IL.DefineLabel();
IL.MarkLabel(label);
return label;
}
public void Ret(bool returnLocal = false)
{
if (!Returned)
{
if (RequireLdnull)
IL.Emit(OpCodes.Ldnull);
else IL.Emit(OpCodes.Box, LastBoxedType);
IL.Emit(OpCodes.Ret);
}
Returned = true;
if (returnLocal)
LocalMethods.Values.ToList().ForEach(m => m.Ret());
}
public void Emit(string line, TextReader reader, TypeBuilder typeBuilder, ref int lineNumber)
{
if (Labels.ContainsKey(lineNumber))
IL.MarkLabel(Labels[lineNumber]);
switch (GetKeyword(line, out var values))
{
case "어쩔":
if (values.Length > 1)
{
string k;
if ((k = GetKeyword(values[1], out string[] valss)) != null)
{
DeclareLocal(values[0]);
Emit(InstructionToReEmit(k, valss), reader, typeBuilder, ref lineNumber);
Set(values[0]);
}
else if (IsNumber(values[1], out int result))
DeclareLocal(values[0], result);
else if (ChkVariableOperation(values[1]))
{
DeclareLocal(values[0], result);
ComputeVariableOperation(values[0], values[1]);
}
else
{
DeclareLocal(values[0], result);
Set(values[0], values[1]);
}
}
else DeclareLocal(values[0]);
break;
case "저쩔":
string kk;
if ((kk = GetKeyword(values[1], out string[] vals)) != null)
{
Emit(InstructionToReEmit(kk, vals), reader, typeBuilder, ref lineNumber);
Set(values[0]);
}
else if (IsNumber(values[1], out int re))
Set(values[0], re);
else if (ChkVariableOperation(values[1]))
ComputeVariableOperation(values[0], values[1]);
else Set(values[0], values[1]);
break;
case "ㅇㅉ":
if ((kk = GetKeyword(values[0], out vals)) != null)
{
LastBoxedType = typeof(string);
Emit(InstructionToReEmit(kk, vals), reader, typeBuilder, ref lineNumber);
}
else
{
if (IsNumber(values[0], out int result))
{
Emit(OpCodes.Ldc_I4, result);
Box(typeof(int));
}
else if (ChkVariableOperation(values[0]))
ComputeVariableOperation(null, values[0], true);
else
Get(values[0], true);
}
Emit(OpCodes.Call, oWrite);
RequireLdnull = true;
break;
case "ㅌㅂ":
Emit(OpCodes.Call, ReadL);
Emit(OpCodes.Box, typeof(string));
RequireLdnull = false;
break;
case "안물":
var name = values[0];
if (string.IsNullOrWhiteSpace(name))
throw new AsserLangException("안물 (잘못된 함수 이름)");
string[] parameters = RemoveStart(values, 1);
var localNew = DefineMethod(typeBuilder, name, parameters);
while (!(line = reader.ReadLine()).StartsWith("안물"))
{
lineNumber++;
localNew.Emit(line, reader, typeBuilder, ref lineNumber);
}
lineNumber++;
break;
case "안궁":
if (LocalMethods.TryGetValue(values[0], out var toCall))
{
for (int i = 1; i < values.Length; i++)
{
var param = values[i];
if (GetKeyword(param, out _) != null)
Emit(param, reader, typeBuilder, ref lineNumber);
else if (IsNumber(param, out int result))
{
Emit(OpCodes.Ldc_I4, result);
Box(typeof(int));
}
else Get(values[i]);
}
RequireLdnull = false;
Emit(OpCodes.Call, toCall.Method);
}
else throw new AsserLangException($"안궁 (\"{values[0]}\"이름의 함수는 선언되지 않았습니다.)");
break;
case "화났쥬?":
var sp = values[0].Split('?');
var inst = sp[0].Replace("킹받쥬", "");
StartCondition(inst);
string kw;
if ((kw = GetKeyword(sp[1], out vals)) != null)
Emit(InstructionToReEmit(kw, vals), reader, typeBuilder, ref lineNumber);
else throw new AsserLangException("어쩔조건 (조건식이 존재하지 않습니다.)");
EndCondition();
break;
case "킹받쥬?":
sp = values[0].Split('?');
inst = sp[0].Replace("화났쥬", "");
StartCondition(inst, false);
if ((kk = GetKeyword(sp[1], out vals)) != null)
Emit(InstructionToReEmit(kk, vals), reader, typeBuilder, ref lineNumber);
else throw new AsserLangException("어쩔조건 (조건식이 존재하지 않습니다.)");
EndCondition();
break;
case "우짤래미":
var decTo = 0;
if (values.Length > 1)
{
if (IsNumber(values[1], out var result))
decTo = result;
else throw new AsserLangException($"어쩔변수 ({values[1]}은(는) 숫자가 아닙니다)");
}
DeclareLocal(values[0], char.ConvertFromUtf32(decTo));
break;
case "저짤래미":
if (IsNumber(values[1], out int res))
Set(values[0], char.ConvertFromUtf32(res));
else throw new AsserLangException($"어쩔변수 ({values[1]}은(는) 숫자가 아닙니다)");
break;
case "무지개반사":
if (values.Length > 0)
{
Get(values[0]);
}
Ret();
break;
case ";;":
if (IsNumber(values[0], out int lineNum))
Goto(Labels[lineNum]);
else throw new AsserLangException($"어쩔GOTO인덱스;; (인덱스 \"{values[0]}\"은(는) 숫자가 아닙니다)");
break;
}
}
private void Emit(OpCode opcode, params object[] operands)
{
if (operands.Length == 1)
switch (operands[0])
{
case string i:
IL.Emit(opcode, i);
return;
case FieldInfo i:
IL.Emit(opcode, i);
return;
case Label[] i:
IL.Emit(opcode, i);
return;
case Label i:
IL.Emit(opcode, i);
return;
case LocalBuilder i:
IL.Emit(opcode, i);
return;
case float i:
IL.Emit(opcode, i);
return;
case byte i:
IL.Emit(opcode, i);
return;
case sbyte i:
IL.Emit(opcode, i);
return;
case short i:
IL.Emit(opcode, i);
return;
case double i:
IL.Emit(opcode, i);
return;
case MethodInfo i:
RequireLdnull = i.ReturnType == typeof(void);
IL.Emit(opcode, i);
return;
case int i:
IL.Emit(opcode, i);
return;
case long i:
IL.Emit(opcode, i);
return;
case Type i:
IL.Emit(opcode, i);
return;
case SignatureHelper i:
IL.Emit(opcode, i);
return;
case ConstructorInfo i:
IL.Emit(opcode, i);
return;
default:
IL.Emit(opcode);
return;
}
else if (operands.Length == 2)
switch (operands[0])
{
case MethodInfo i:
RequireLdnull = i.ReturnType == typeof(void);
IL.EmitCall(opcode, i, (Type[])operands[1]);
return;
default:
throw new InvalidOperationException();
}
else if (operands.Length == 3)
switch (operands[0])
{
case System.Runtime.InteropServices.CallingConvention i:
IL.EmitCalli(opcode, i, (Type)operands[1], (Type[])operands[2]);
return;
default:
throw new InvalidOperationException();
}
else if (operands.Length == 4)
switch (operands[0])
{
case CallingConventions i:
IL.EmitCalli(opcode, i, (Type)operands[1], (Type[])operands[2], (Type[])operands[3]);
return;
default:
throw new InvalidOperationException();
}
else
IL.Emit(opcode);
}
private void ComputeVariableOperation(string name, string value, bool box = false)
{
var split = value.Split('ㅌ');
if (split.Length > 1)
{
split.Aggregate((cur, next) =>
{
int curP = cur.Where(c => c == 'ㅋ').Count();
int curM = cur.Where(c => c == 'ㅎ').Count();
int nextP = next.Where(c => c == 'ㅋ').Count();
int nextM = next.Where(c => c == 'ㅎ').Count();
var curVar = cur.Replace("ㅋ", "").Replace("ㅎ", "");
var nextVar = next.Replace("ㅋ", "").Replace("ㅎ", "");
if (curP - curM != 0)
{
Get(curVar);
if (LastBoxedType == typeof(string))
{
Emit(OpCodes.Unbox, LastBoxedType);
Emit(OpCodes.Call, iParse);
}
Emit(OpCodes.Ldc_I4, curP - curM);
Emit(OpCodes.Add);
}
else Get(curVar);
if (nextP - nextM != 0)
{
Get(nextVar);
if (LastBoxedType == typeof(string))
{
Emit(OpCodes.Unbox, LastBoxedType);
Emit(OpCodes.Call, iParse);
}
Emit(OpCodes.Ldc_I4, nextP - nextM);
Emit(OpCodes.Add);
}
else Get(nextVar);
Emit(OpCodes.Mul);
if (box)
Box(typeof(int));
if (!string.IsNullOrWhiteSpace(name))
{
if (!box)
Box(typeof(int));
Set(name);
}
return null;
});
}
else
{
int p = value.Where(c => c == 'ㅋ').Count();
int m = value.Where(c => c == 'ㅎ').Count();
var var = value.Replace("ㅋ", "").Replace("ㅎ", "");
if (p - m != 0)
{
Get(var);
if (LastBoxedType == typeof(string))
{
Emit(OpCodes.Unbox, LastBoxedType);
Emit(OpCodes.Call, iParse);
}
Emit(OpCodes.Ldc_I4, p - m);
Emit(OpCodes.Add);
}
else Get(var);
if (box)
Box(typeof(int));
if (!string.IsNullOrWhiteSpace(name))
{
if (!box)
Box(typeof(int));
Set(name);
}
}
}
#region Statics
static AsserLangMethod()
{
if (Type.GetType("Mono.Runtime") != null)
{
AsserLangAsm = AssemblyBuilder.DefineDynamicAssembly(new AssemblyName("AsserLangMethod"), AssemblyBuilderAccess.Run);
AsserLangModule = AsserLangAsm.DefineDynamicModule("AsserLangMethod");
}
else
{
AsserLangAsm = AssemblyBuilder.DefineDynamicAssembly(new AssemblyName("AsserLangMethod"), AssemblyBuilderAccess.RunAndSave);
AsserLangModule = AsserLangAsm.DefineDynamicModule("AsserLangMethod", "AsserLangMethod.dll", true);
}
}
public static AssemblyBuilder AsserLangAsm;
public static ModuleBuilder AsserLangModule;
public static bool IsNumber(string value, out int result)
{
if (!string.IsNullOrWhiteSpace(value.Replace("ㅋ", "").Replace("ㅎ", "").Replace("ㅌ", "")))
{
result = 0;
return false;
}
return int.TryParse(value.Trim().Split('ㅌ').Select(s =>
{
int pluses = s.Where(c => c == 'ㅋ').Count();
int minuses = s.Where(c => c == 'ㅎ').Count();
return pluses - minuses;
}).Aggregate((cur, next) => cur * next).ToString(), out result);
}
public static bool ChkVariableOperation(string value)
=> !string.IsNullOrWhiteSpace(value.Replace("ㅋ", "").Replace("ㅎ", "").Replace("ㅌ", "")) && (value.Contains("ㅋ") || value.Contains("ㅎ") || value.Contains("ㅌ") && !value.Contains("ㅌㅂ"));
public static string GetKeyword(string line, out string[] values)
{
for (int i = 0; i < States.Length; i++)
{
var state = States[i];
if (line.StartsWith(state))
{
if (state == "화났쥬?" || state == "킹받쥬?" || state == "ㅇㅉ")
{
values = new string[1];
values[0] = line.Replace(state, "");
}
else values = line.Replace(state, "").Split('~');
return state;
}
}
values = null;
return null;
}
public static T[] RemoveStart<T>(T[] array, int count)
{
T[] arr = new T[array.Length - count];
Array.Copy(array, count, arr, 0, arr.Length);
return arr;
}
public static T[] RemoveEnd<T>(T[] array, int count)
{
T[] arr = new T[array.Length - count];
Array.Copy(array, 0, arr, 0, arr.Length);
return arr;
}
public static string InstructionToReEmit(string keyword, string[] vals)
{
string seed = $"{keyword}{vals[0]}";
return RemoveStart(vals, 1).Aggregate(seed, (cur, next) => $"{cur}~{next}");
}
public static readonly string[] States = new string[13]
{
"ㅇㅉ",
"ㅌㅂ",
"저쩔",
"어쩔",
"안물",
"안물",
"안궁",
"화났쥬?",
"킹받쥬?",
"우짤래미",
"저짤래미",
"무지개반사",
";;"
};
#endregion
}
}