-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeExec.vb
1010 lines (725 loc) · 51 KB
/
codeExec.vb
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
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Public Class codeExec
'Public variables As New Collections.Generic.SortedDictionary(Of String, Byte())
Public Shared vars As New List(Of Dictionary(Of String, Byte()))
Public Shared selectedFile As String
Public Shared selectedBlock As Integer 'zero based
Public Shared blockSize As Integer
Public Shared scriptZ As script
Public Shared currentBlock As Byte()
Shared Sub script_load(ByVal path As String)
scriptZ = New script(path)
End Sub
Shared Sub variable_define(ByVal name As String, ByVal length As Integer)
Dim l As Integer = Integer.Parse(length)
Dim bA(l - 1) As Byte
vars(vars.Count - 1).Add(name, bA)
End Sub
Shared Sub variable_define(ByVal name As String, ByVal content As String, ByVal ParamArray parameters() As KeyValuePair(Of String, Byte()))
If parameters.Length = 0 Then
If Not (content(0) = "$" Or content(0) = "#" Or content(0) = "!") Then
Dim sA As String() = content.Split(" ")
Dim bA(sA.Length - 1) As Byte
For i As Integer = 0 To bA.Length - 1
bA(i) = Byte.Parse(sA(i))
Next i
vars(vars.Count - 1).Add(name, bA)
Else
vars(vars.Count - 1).Add(name, logic_expression_simplify(content))
End If
Else
vars(vars.Count - 1).Add(name, execute_function(Mid(content, 2, content.Length - 1), parameters))
End If
End Sub
Shared Sub variable_set(ByVal name As String, ByVal content As String, ByVal ParamArray parameters() As KeyValuePair(Of String, Byte()))
If parameters.Length = 0 Then
If content.Contains(" ") Then
Dim sA As String() = content.Split(" ")
Dim bA(sA.Length - 1) As Byte
For i As Integer = 0 To bA.Length - 1
bA(i) = Byte.Parse(sA(i))
Next i
vars(vars.Count - 1)(name) = bA
Else
vars(vars.Count - 1)(name) = logic_expression_simplify(content)
End If
Else
vars(vars.Count - 1)(name) = execute_function(Mid(content, 2, content.Length - 1), parameters)
End If
End Sub
Shared Sub variable_dispose(ByVal name As String)
vars(vars.Count - 1).Remove(name)
End Sub
Shared Function logic_expression_simplify(ByVal expression As String) As Byte()
If expression.Contains("&") Then
Dim bA1(-1) As Byte
Dim bA2(-1) As Byte
Dim sAmpersand As String() = expression.Split("&")
Select Case sAmpersand(0)(0)
Case Is = "#"
bA1 = execute_function(Mid(sAmpersand(0), 2, sAmpersand(0).Length - 1))
Case Is = "$"
If Mid(sAmpersand(0), 2, sAmpersand(0).Length - 1) = "default" Then
bA1 = _IntToBytes(blockSize)
ElseIf Mid(sAmpersand(0), 2, sAmpersand(0).Length - 1) = "block" Then
bA1 = currentBlock
Else
bA1 = vars.Item(vars.Count - 1).Item(Mid(sAmpersand(0), 2, sAmpersand(0).Length - 1))
End If
Case Is = "!"
Select Case expression.Split("&")(0)(1)
Case Is = "#"
bA1 = execute_function(Mid(sAmpersand(0), 3, sAmpersand(0).Length - 2))
Logic._NOT(bA1)
Case Is = "$"
If Mid(sAmpersand(0), 3, sAmpersand(0).Length - 2) = "default" Then
bA1 = _IntToBytes(blockSize)
Logic._NOT(bA1)
ElseIf Mid(sAmpersand(0), 3, sAmpersand(0).Length - 2) = "block" Then
bA1 = currentBlock
Logic._NOT(bA1)
Else
bA1 = vars.Item(vars.Count - 1).Item(Mid(sAmpersand(0), 3, sAmpersand(0).Length - 2))
Logic._NOT(bA1)
End If
Case Else
'error
End Select
Case Else
'error
End Select
Select Case sAmpersand(1)(0)
Case Is = "#"
bA2 = execute_function(Mid(sAmpersand(1), 2, sAmpersand(1).Length - 1))
Case Is = "$"
If Mid(sAmpersand(1), 2, sAmpersand(1).Length - 1) = "default" Then
bA2 = _IntToBytes(blockSize)
ElseIf Mid(sAmpersand(1), 2, sAmpersand(1).Length - 1) = "block" Then
bA2 = currentBlock
Else
bA2 = vars.Item(vars.Count - 1).Item(Mid(sAmpersand(1), 2, sAmpersand(1).Length - 1))
End If
Case Is = "!"
Select Case sAmpersand(1)(1)
Case Is = "#"
bA2 = execute_function(Mid(sAmpersand(1), 3, sAmpersand(1).Length - 2))
Logic._NOT(bA2)
Case Is = "$"
If Mid(sAmpersand(1), 3, sAmpersand(1).Length - 2) = "default" Then
bA2 = _IntToBytes(blockSize)
Logic._NOT(bA2)
ElseIf Mid(sAmpersand(1), 3, sAmpersand(1).Length - 2) = "block" Then
bA2 = currentBlock
Logic._NOT(bA2)
Else
bA2 = vars.Item(vars.Count - 1).Item(Mid(sAmpersand(1), 3, sAmpersand(1).Length - 2))
Logic._NOT(bA2)
End If
Case Else
'error
End Select
Case Else
'error
End Select
Return Logic._AND(bA1, bA2)
ElseIf expression.Contains("|") Then
Dim bA1(-1) As Byte
Dim bA2(-1) As Byte
Dim sVBar As String() = expression.Split("|")
Select Case sVBar(0)(0)
Case Is = "#"
bA1 = execute_function(Mid(sVBar(0), 2, sVBar(0).Length - 1))
Case Is = "$"
If Mid(sVBar(0), 2, sVBar(0).Length - 1) = "default" Then
bA1 = _IntToBytes(blockSize)
ElseIf Mid(sVBar(0), 2, sVBar(0).Length - 1) = "block" Then
bA1 = currentBlock
Else
bA1 = vars.Item(vars.Count - 1).Item(Mid(sVBar(0), 2, sVBar(0).Length - 1))
End If
Case Is = "!"
Select Case sVBar(0)(1)
Case Is = "#"
bA1 = execute_function(Mid(sVBar(0), 3, sVBar(0).Length - 2))
Logic._NOT(bA1)
Case Is = "$"
If Mid(sVBar(0), 3, sVBar(0).Length - 2) = "default" Then
bA1 = _IntToBytes(blockSize)
Logic._NOT(bA1)
ElseIf Mid(sVBar(0), 3, sVBar(0).Length - 2) = "block" Then
bA1 = currentBlock
Logic._NOT(bA1)
Else
bA1 = vars.Item(vars.Count - 1).Item(Mid(sVBar(0), 3, sVBar(0).Length - 2))
Logic._NOT(bA1)
End If
Case Else
'error
End Select
Case Else
'error
End Select
Select Case sVBar(1)(0)
Case Is = "#"
bA2 = execute_function(Mid(sVBar(1), 2, sVBar(1).Length - 1))
Case Is = "$"
If Mid(sVBar(1), 2, sVBar(1).Length - 1) = "default" Then
bA2 = _IntToBytes(blockSize)
ElseIf Mid(sVBar(1), 2, sVBar(1).Length - 1) = "block" Then
bA2 = currentBlock
Else
bA2 = vars.Item(vars.Count - 1).Item(Mid(sVBar(1), 2, sVBar(1).Length - 1))
End If
Case Is = "!"
Select Case sVBar(1)(1)
Case Is = "#"
bA2 = execute_function(Mid(sVBar(1), 3, sVBar(1).Length - 2))
Logic._NOT(bA2)
Case Is = "$"
If Mid(sVBar(1), 3, sVBar(1).Length - 2) = "default" Then
bA2 = _IntToBytes(blockSize)
Logic._NOT(bA2)
ElseIf Mid(sVBar(1), 3, sVBar(1).Length - 2) = "block" Then
bA2 = currentBlock
Logic._NOT(bA2)
Else
bA2 = vars.Item(vars.Count - 1).Item(Mid(sVBar(1), 3, sVBar(1).Length - 2))
Logic._NOT(bA2)
End If
Case Else
'error
End Select
Case Else
'error
End Select
Return Logic._OR(bA1, bA2)
ElseIf expression.Contains("~") Then
Dim bA1(-1) As Byte
Dim bA2(-1) As Byte
Dim sTilde As String() = expression.Split("~")
Select Case sTilde(0)(0)
Case Is = "#"
bA1 = execute_function(Mid(sTilde(0), 2, sTilde(0).Length - 1))
Case Is = "$"
If Mid(sTilde(0), 2, sTilde(0).Length - 1) = "default" Then
bA1 = _IntToBytes(blockSize)
ElseIf Mid(sTilde(0), 2, sTilde(0).Length - 1) = "block" Then
bA1 = currentBlock
Else
bA1 = vars.Item(vars.Count - 1).Item(Mid(sTilde(0), 2, sTilde(0).Length - 1))
End If
Case Is = "!"
Select Case sTilde(0)(1)
Case Is = "#"
bA1 = execute_function(Mid(sTilde(0), 3, sTilde(0).Length - 2))
Logic._NOT(bA1)
Case Is = "$"
If Mid(sTilde(0), 3, sTilde(0).Length - 2) = "default" Then
bA1 = _IntToBytes(blockSize)
Logic._NOT(bA1)
ElseIf Mid(sTilde(0), 3, sTilde(0).Length - 2) = "block" Then
bA1 = currentBlock
Logic._NOT(bA1)
Else
bA1 = vars.Item(vars.Count - 1).Item(Mid(sTilde(0), 3, sTilde(0).Length - 2))
Logic._NOT(bA1)
End If
Case Else
'error
End Select
Case Else
'error
End Select
Select Case sTilde(1)(0)
Case Is = "#"
bA2 = execute_function(Mid(sTilde(0), 2, sTilde(0).Length - 1))
Case Is = "$"
If Mid(sTilde(1), 2, sTilde(1).Length - 1) = "default" Then
bA2 = _IntToBytes(blockSize)
ElseIf Mid(sTilde(1), 2, sTilde(1).Length - 1) = "block" Then
bA2 = currentBlock
Else
bA2 = vars.Item(vars.Count - 1).Item(Mid(sTilde(0), 2, sTilde(0).Length - 1))
End If
Case Is = "!"
Select Case sTilde(1)(1)
Case Is = "#"
bA2 = execute_function(Mid(sTilde(0), 3, sTilde(0).Length - 2))
Logic._NOT(bA2)
Case Is = "$"
If Mid(sTilde(1), 3, sTilde(1).Length - 2) = "default" Then
bA2 = _IntToBytes(blockSize)
Logic._NOT(bA2)
ElseIf Mid(sTilde(1), 3, sTilde(1).Length - 2) = "block" Then
bA2 = currentBlock
Logic._NOT(bA2)
Else
bA2 = vars.Item(vars.Count - 1).Item(Mid(sTilde(0), 3, sTilde(0).Length - 2))
Logic._NOT(bA2)
End If
Case Else
'error
End Select
Case Else
'error
End Select
Return Logic._XOR(bA1, bA2)
Else
Dim bA0(-1) As Byte
Select Case expression(0)
Case Is = "#"
bA0 = execute_function(Mid(expression, 2, expression.Length - 1))
Case Is = "$"
If Mid(expression, 2, expression.Length - 1) = "default" Then
bA0 = _IntToBytes(blockSize)
ElseIf Mid(expression, 2, expression.Length - 1) = "block" Then
bA0 = currentBlock
Else
bA0 = vars.Item(vars.Count - 1).Item(Mid(expression, 2, expression.Length - 1))
End If
Case Is = "!"
Select Case expression(1)
Case Is = "#"
bA0 = execute_function(Mid(expression, 3, expression.Length - 2))
Logic._NOT(bA0)
Case Is = "$"
If Mid(expression, 3, expression.Length - 2) = "default" Then
bA0 = _IntToBytes(blockSize)
Logic._NOT(bA0)
ElseIf Mid(expression, 3, expression.Length - 2) = "block" Then
bA0 = currentBlock
Logic._NOT(bA0)
Else
bA0 = vars.Item(vars.Count - 1).Item(Mid(expression, 3, expression.Length - 2))
Logic._NOT(bA0)
End If
Case Else
'error
End Select
Case Else
'error
End Select
Return bA0
End If
End Function
Shared Sub execute_application(ByVal path As String, ByVal args As String)
Process.Start(path, args)
End Sub
Shared Function execute_function(ByVal name As String, ByVal ParamArray parameters() As KeyValuePair(Of String, Byte())) As Byte()
Dim funcNameParam As New Dictionary(Of String, Byte())
funcNameParam.Add(name, Nothing)
For i As Integer = 0 To parameters.Length - 1
funcNameParam.Add(parameters.ElementAt(i).Key, parameters.ElementAt(i).Value)
Next
vars.Add(funcNameParam)
'execute lines on function and return back to the main program =====================================================================================================
Select Case name
Case "rand"
Dim l As Long = _BytesToInt(parameters(0).Value)
vars(vars.Count - 1)(name) = builtInFunc._RAND(l)
Case "trim"
builtInFunc._TRIM(parameters(0).Value)
vars(vars.Count - 1)(name) = parameters(0).Value
Case "part"
vars(vars.Count - 1)(name) = builtInFunc._PART(parameters(0).Value, _BytesToInt(parameters(1).Value), _BytesToInt(parameters(2).Value))
Case "lengthof"
vars(vars.Count - 1)(name) = builtInFunc._LENGTHOF(parameters(0).Value)
Case Else
Dim xn As XName = name
Dim count As Integer = scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.Count
For i As Integer = 0 To count - 1
'MsgBox(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Name.ToString)
Select Case scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Name.ToString
Case "condition"
Dim bA1 As Byte() = logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i)[email protected])
Dim succeededOnce As Boolean = False
For j As Integer = 0 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.Count - 1
Select Case scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Name
Case "greaterthan"
If condition._GREATERTHAN(bA1, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j)[email protected])) Then
succeededOnce = True
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Name = "execute" Then
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application <> "" Then
execute_application(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@args)
ElseIf scriptZ.bps.<bluepencil>.<file>.Elements(xn).ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function <> "" Then
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For k As Integer = 1 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Value))
kvpC.Add(kvp)
Next
execute_function(_getEx1stChar(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function), kvpC.ToArray)
Else
'error
End If
Else
'error
End If
Else
End If
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@break = "true" Then
Exit For
End If
Case "lesserthan"
If condition._LESSERTHAN(bA1, logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@value)) Then
succeededOnce = True
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Name = "execute" Then
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application <> "" Then
execute_application(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@applicatione, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@args)
ElseIf scriptZ.bps.<bluepencil>.<file>.Elements(xn).ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function <> "" Then
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For k As Integer = 1 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Value))
kvpC.Add(kvp)
Next
execute_function(_getEx1stChar(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function), kvpC.ToArray)
Else
'error
End If
Else
'error
End If
Else
End If
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@break = "true" Then
Exit For
End If
Case "equal"
If condition._EQUAL(bA1, logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@value)) Then
succeededOnce = True
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Name = "execute" Then
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application <> "" Then
execute_application(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@args)
ElseIf scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function <> "" Then
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For k As Integer = 1 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Value))
kvpC.Add(kvp)
Next
execute_function(_getEx1stChar(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function), kvpC.ToArray)
Else
'error
End If
Else
'error
End If
Else
End If
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@break = "true" Then
Exit For
End If
Case "notgreaterthan"
If Not condition._GREATERTHAN(bA1, logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@value)) Then
succeededOnce = True
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Name = "execute" Then
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application <> "" Then
execute_application(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@args)
ElseIf scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function <> "" Then
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For k As Integer = 1 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Value))
kvpC.Add(kvp)
Next
execute_function(_getEx1stChar(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function), kvpC.ToArray)
Else
'error
End If
Else
'error
End If
Else
End If
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@break = "true" Then
Exit For
End If
Case "notlesserthan"
If Not condition._LESSERTHAN(bA1, logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@value)) Then
succeededOnce = True
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Name = "execute" Then
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application <> "" Then
execute_application(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@args)
ElseIf scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function <> "" Then
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For k As Integer = 1 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Value))
kvpC.Add(kvp)
Next
execute_function(_getEx1stChar(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function), kvpC.ToArray)
Else
'error
End If
Else
'error
End If
Else
End If
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@break = "true" Then
Exit For
End If
Case "notequal"
If Not condition._EQUAL(bA1, logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@value)) Then
succeededOnce = True
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Name = "execute" Then
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application <> "" Then
execute_application(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@args)
ElseIf scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function <> "" Then
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For k As Integer = 1 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Value))
kvpC.Add(kvp)
Next
execute_function(_getEx1stChar(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function), kvpC.ToArray)
Else
'error
End If
Else
'error
End If
Else
End If
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).@break = "true" Then
Exit For
End If
Case "else"
If Not succeededOnce Then
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Name = "execute" Then
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application <> "" Then
execute_application(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@application, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@args)
ElseIf scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function <> "" Then
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.Count > 1 Then
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For k As Integer = 1 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).Attributes.ElementAt(k).Value))
kvpC.Add(kvp)
Next
execute_function(_getEx1stChar(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function), kvpC.ToArray)
Else
execute_function(_getEx1stChar(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Elements.ElementAt(j).Elements.ElementAt(0).@function))
End If
Else
'error
End If
Else
'error
End If
End If
End Select
Next j
''===================================================
Case "define"
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@content = "" Then
variable_define(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@name, _
CInt(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@length))
Else
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For j As Integer = 2 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.ElementAt(j).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.ElementAt(j).Value))
kvpC.Add(kvp)
Next
variable_define(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@name, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@content, kvpC.ToArray)
End If
Case "set"
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@content = "" Then
variable_set(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@name, _
CInt(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@length))
Else
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For j As Integer = 2 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.ElementAt(j).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.ElementAt(j).Value))
kvpC.Add(kvp)
Next
variable_set(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@name, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@content, kvpC.ToArray)
End If
Case "dispose"
variable_dispose(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@name)
''==============================================
Case "display"
out_display(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@content, _
CInt(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@timeout))
Case "write"
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@content(0) = "#" Then
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For j As Integer = 1 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.ElementAt(j).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.ElementAt(j).Value))
kvpC.Add(kvp)
Next
out_write(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@content, kvpC.ToArray)
Else
out_write(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@content)
End If
''=================================================
Case "execute"
Dim exe_application As XName = "application"
Dim exe_function As XName = "function"
If scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@application <> "" Then
Dim exe_args As XName = "args"
execute_application(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@application, _
scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@args)
ElseIf scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@function <> "" Then
Dim function_name As XName = "name"
Dim kvpC As New List(Of KeyValuePair(Of String, Byte()))
For j As Integer = 1 To scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.Count - 1 Step 1
Dim kvp As New KeyValuePair(Of String, Byte())(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.ElementAt(j).Name.ToString, _
logic_expression_simplify(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).Attributes.ElementAt(j).Value))
kvpC.Add(kvp)
Next
execute_function(_getEx1stChar(scriptZ.bps.<bluepencil>.<file>.Elements(xn).Elements.ElementAt(i).@name), kvpC.ToArray)
Else
'error
End If
''=================================================
Case "terminate"
command_terminate()
Case "pause"
scriptZ.paused = True
Case "resume"
scriptZ.paused = False
Case "delete"
command_delete()
Case "exit"
Dim bA1 As Byte() = vars(vars.Count - 1)(name)
vars.RemoveAt(vars.Count - 1)
Return bA1
Exit Function
''================================================
Case Else
End Select
Next i
End Select
'execute lines on function and return back to the main program =======================================================================================================
Dim bA0 As Byte() = vars(vars.Count - 1)(name)
vars.RemoveAt(vars.Count - 1)
Return bA0
End Function
Shared Sub out_write(ByVal content As String, ByVal ParamArray parameters() As KeyValuePair(Of String, Byte()))
Dim toWrite(-1) As Byte
Dim stream0 As System.IO.Stream = System.IO.File.OpenWrite(selectedFile)
stream0.Seek(selectedBlock * blockSize, IO.SeekOrigin.Begin)
Select Case content(0)
Case Is = "#"
toWrite = execute_function(Mid(content, 2, content.Length - 1), parameters)
Case Is = "$"
toWrite = vars(vars.Count - 1)(Mid(content, 2, content.Length - 1))
Case Else
'error
End Select
If blockSize > toWrite.Length Then
For i As Integer = 0 To blockSize - 1 Step toWrite.Length
If i + toWrite.Length < blockSize Then
stream0.Write(toWrite, 0, toWrite.Length)
Else
stream0.Write(toWrite, 0, blockSize Mod toWrite.Length)
End If
Next
Else
stream0.Write(toWrite, 0, blockSize)
End If
stream0.Close()
End Sub
Shared Sub out_write(ByVal content As String)
On Error Resume Next
Dim toWrite(-1) As Byte
Dim stream0 As System.IO.Stream = System.IO.File.OpenWrite(selectedFile)
stream0.SetLength(scriptZ.current_fz)
stream0.Seek(selectedBlock * blockSize, IO.SeekOrigin.Begin)
toWrite = logic_expression_simplify(content)
If blockSize > toWrite.Length Then
For i As Integer = 0 To blockSize - 1 Step toWrite.Length
If i + toWrite.Length < blockSize Then
stream0.Write(toWrite, 0, toWrite.Length)
Else
stream0.Write(toWrite, 0, blockSize Mod toWrite.Length)
End If
Next
Else
stream0.Write(toWrite, 0, blockSize)
End If
stream0.Close()
End Sub
Shared Sub out_display(ByVal content As String, ByVal timeout As Integer)
frmMsg.txtMsg.Text = content
If Not timeout = 0 Then
frmMsg.tmrDisp.Enabled = True
frmMsg.tmrDisp.Interval = timeout
Else
frmMsg.tmrDisp.Enabled = False
End If
frmMsg.ShowDialog()
End Sub
Shared Sub command_delete()
If codeExec.scriptZ.wipe Then
For i As Integer = 0 To scriptZ.lstfil.Count - 1
If My.Computer.FileSystem.FileExists(scriptZ.lstfil(i).Key) Then
My.Computer.FileSystem.DeleteFile(scriptZ.lstfil(i).Key)
End If
Next
Else
If scriptZ.autorename Then
Dim fileI As New System.IO.FileInfo(selectedFile)
Dim dateRnda As New Random
Dim yr As Integer = dateRnda.Next(1900, 2099)
Dim mnth As Integer = dateRnda.Next(1, 13)
Dim dt As Integer = dateRnda.Next(1, Date.DaysInMonth(yr, mnth) + 1)
Dim dateZ As New Date(yr, mnth, dt, dateRnda.Next(0, 24), dateRnda.Next(0, 60), dateRnda.Next(0, 60))
fileI.CreationTime = dateZ
reNewShred: Dim newName As String = System.IO.Path.GetRandomFileName()
If My.Computer.FileSystem.FileExists(System.IO.Path.GetDirectoryName(selectedFile) + "\" + newName) Then
GoTo reNewShred
Else
My.Computer.FileSystem.RenameFile(selectedFile, newName)
End If
My.Computer.FileSystem.DeleteFile(System.IO.Path.GetDirectoryName(selectedFile) + "\" + newName)
Else
My.Computer.FileSystem.DeleteFile(selectedFile)
End If
End If
command_terminate()
End Sub
Shared Sub command_terminate()
scriptZ.stopped = True
End Sub
Shared Function _IntToBytes(ByVal number As Long) As Byte()
Dim ret(7) As Byte
For i As Integer = 7 To 0 Step -1
ret(i) = CByte(number Mod 256)
number \= 256
Next i
Return ret
End Function
Shared Function _BytesToInt(ByVal number As Byte()) As Long
Dim ret As Long = 0
For i As Integer = number.Length - 1 To 0 Step -1
ret += number(i) * (256 ^ (number.Length - 1 - i))
Next i
Return ret
End Function
Shared Sub _setCurrentBlock() 'As Byte()
Dim bufferx(blockSize - 1) As Byte
Dim stream0 As System.IO.Stream = System.IO.File.OpenRead(selectedFile)
stream0.Read(bufferx, 0, blockSize)
currentBlock = bufferx ''