-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vector.au3
1220 lines (984 loc) · 48.5 KB
/
Vector.au3
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
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.16.1
Author(s): Zvend Nadav
Discord(s): zvend hero_of_abaddon
Description:
This Vector "Class" implementation acts exactly like the stdlib vector from C++ just without typesafe values.
Of course this will have massive struggle to actually go head to head with the c++ version and was never
meant to.
So this vector is kind of "intelligent" in using the ReDim keyword wisely. You init the vector with a
capacity and as soon the size of the vector will be bigger than its capacity, the vector will auto
increase the capacity by >1.5 of it current capcity depening how you init the vector.
Script Functions:
_Vector_Init($nCapacity = 32, Const $vDefaultValue = Null, $fModifier = 1.5, Const $fuCompare = Null) -> Vector
_Vector_IsVector(Const ByRef $aVector) -> Bool
_Vector_IsValidIndex(Const ByRef $aVector, Const $nIndex) -> Bool
_Vector_GetSize(Const ByRef $aVector) -> UInt
_Vector_GetCapacity(Const ByRef $aVector) -> UInt
_Vector_GetDefaultValue(Const ByRef $aVector) -> DefaultValue / Null
_Vector_GetModifier(Const ByRef $aVector) -> Float
_Vector_IsEmpty(Const ByRef $aVector) -> Bool
_Vector_Get(Const ByRef $aVector, Const $nIndex) -> Variant / Null
_Vector_GetBuffer(Const ByRef $aVector) -> Array
_Vector_Reserve(ByRef $aVector, Const $nCapacity) -> Bool
_Vector_Insert(ByRef $aVector, Const $nIndex, Const $vValue) -> Bool
_Vector_Push(ByRef $aVector, Const $vValue) -> Bool
_Vector_Pop(ByRef $aVector) -> Variant / DefaultValue / Null
_Vector_PopFirst(ByRef $aVector) -> Variant / DefaultValue / Null
_Vector_Set(ByRef $aVector, Const $nIndex, Const $vValue) -> Bool
_Vector_AddVector(ByRef $aVector, Const ByRef $aFromVector) -> Bool
_Vector_Erase(ByRef $aVector, Const $nIndex) -> Bool
_Vector_EraseValue(ByRef $aVector, Const $vValue) -> Bool
_Vector_Swap(ByRef $aVector, Const $nIndex1, Const $nIndex2) -> Bool
_Vector_SwapVectors(ByRef $aVectorL, ByRef $aVectorR) -> Bool
_Vector_Clear(ByRef $aVector) -> Bool
_Vector_Find(Const ByRef $aVector, Const $vValue) -> Bool @extended = index
_Vector_FindBackwards(Const ByRef $aVector, Const $vValue) -> Bool @extended = index
_Vector_Sort(Const ByRef $aVector, Const $vValue) -> Bool
Internal Functions:
__Vector_CalculateCapacity($nCapacity, Const $nRequiredSize, $fModifier) -> UInt
__Vector_IsValidIndex(Const ByRef $aVector, Const $nIndex, Const $bSkipVectorCheck) -> Bool
__Vector_HasSpace(Const ByRef $aVector, Const $nSize, Const $bSkipVectorCheck) -> Bool
__Vector_QuickSort(ByRef $aVector, ByRef $aContainer, Const $nLowIndex, Const $nHighIndex) -> (None)
__Vector_QuickSortPartition(ByRef $aVector, ByRef $aContainer, Const $nLowIndex, Const $nHighIndex) -> UInt
__Vector_SwapContainer(ByRef $aContainer, Const $nIndex1, Const $nIndex2) -> (None)
__Vector_Compare(Const ByRef $fuCompare, Const $vValue1, Const $vValue2) -> UInt
#ce ----------------------------------------------------------------------------
#include-once
#include ".\Function.au3"
Global Enum _
$__VECTOR_IDENTIFIER, _
$__VECTOR_SIZE , _
$__VECTOR_CAPACITY , _
$__VECTOR_DEFAULT , _
$__VECTOR_MODIFIER , _
$__VECTOR_BUFFER , _
$__VECTOR_COMPARE , _
$__VECTOR_PARAMS
Global Enum _
$VECTORERR_NONE , _
$VECTORERR_BAD_CAPACITY , _
$VECTORERR_BAD_MODIFIER , _
$VECTORERR_INVALID_FUNC , _
$VECTORERR_BAD_VECTOR , _
$VECTORERR_INVALID_INDEX, _
$VECTORERR_EMPTY_VECTOR , _
$VECTORERR_BAD_COMPARE
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Init
; Description ...: Creates a new Vector.
; Syntax ........: _Vector_Init([$nCapacity = 32[, $vDefaultValue = Null[, $fModifier = 1.5]]])
; Parameters ....: $nCapacity - [optional and const] an Integer. Default is 32.
; $vDefaultValue - [optional and const] a Variant. Default is Null.
; $fModifier - [optional and const] a Float. Default is 1.5.
; Return values .: Vector on Success. Null on Failure and sets the errorcode to $VECTORERR_BAD_MODIFIER or
; ...............: $VECTORERR_BAD_CAPACITY.
; Author ........: Zvend
; Modified ......: Nadav
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Init(Const $nCapacity = 32, Const $vDefaultValue = Null, Const $fModifier = 1.5)
If $fModifier < 1.5 Then
Return SetError($VECTORERR_BAD_MODIFIER, 0, Null)
EndIf
If Not IsInt($nCapacity) Or $nCapacity < 4 Then
Return SetError($VECTORERR_BAD_CAPACITY, 0, Null)
EndIf
Local $aContainer[$nCapacity]
Local $aNewVector[$__VECTOR_PARAMS]
$aNewVector[$__VECTOR_IDENTIFIER] = "Vector"
$aNewVector[$__VECTOR_SIZE] = 0
$aNewVector[$__VECTOR_CAPACITY] = $nCapacity
$aNewVector[$__VECTOR_DEFAULT] = $vDefaultValue
$aNewVector[$__VECTOR_MODIFIER] = $fModifier
$aNewVector[$__VECTOR_BUFFER] = $aContainer
$aNewVector[$__VECTOR_COMPARE] = Null
Return $aNewVector
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_SetComparatorCallback
; Description ...: Sets the compare callback of the Vector.
; Syntax ........: _Vector_SetComparatorCallback(Byref $aVector, Const $fuCompare)
; Parameters ....: $aVector - [in/out] a Vector.
; $fuCompare - [const] a function (first class object).
; Gets 2 comparable values and returns a negative number if the first was smaller,
; 0 if the values are equal, and a positive number if the first was larger.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_INVALID_FUNC.
; Author ........: Nadav
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_SetComparatorCallback(ByRef $aVector, $fuCompare)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
$fuCompare = _Function_Validate($fuCompare)
If @error Then
Return SetError($VECTORERR_INVALID_FUNC, 0, 0)
EndIf
$aVector[$__VECTOR_COMPARE] = $fuCompare
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_IsVector
; Description ...: Checks whether the argument is a valid Vector.
; Syntax ........: _Vector_IsVector(Const Byref $aVector)
; Parameters ....: $aVector - [in/out and const] a Vector.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_IsVector(Const ByRef $aVector)
If Not IsArray($aVector) Then
Return SetError($VECTORERR_BAD_VECTOR, 0, 0)
EndIf
If UBound($aVector) <> $__VECTOR_PARAMS Then
Return SetError($VECTORERR_BAD_VECTOR, 0, 0)
EndIf
Return $aVector[$__VECTOR_IDENTIFIER] == "Vector"
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_IsValidIndex
; Description ...: Checks if the index is valid for the Vector.
; Syntax ........: _Vector_IsValidIndex(Const Byref $aVector, Const $nIndex)
; Parameters ....: $aVector - [in/out and const] a Vector.
; $nIndex - [const] an Integer.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_INVALID_INDEX.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_IsValidIndex(Const ByRef $aVector, Const $nIndex)
;Wrapper for internal check-functions to not skip vector check.
If Not __Vector_IsValidIndex($aVector, $nIndex, False) Then
Return SetError(@error, 0, 0)
EndIf
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_GetSize
; Description ...: Returns the number of elements in the Vector.
; Syntax ........: _Vector_GetSize(Const Byref $aVector)
; Parameters ....: $aVector - [in/out and const] a Vector.
; Return values .: Number of elements on Success, sets the errorcode to $VECTORERR_BAD_VECTOR on Failure.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_GetSize(Const ByRef $aVector)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
Return $aVector[$__VECTOR_SIZE]
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_GetCapacity
; Description ...: Returns the maximum possible number of elements.
; Syntax ........: _Vector_GetCapacity(Const Byref $aVector)
; Parameters ....: $aVector - [in/out and const] a Vector.
; Return values .: The maximum possible number of elements on Success, sets the errorcode to $VECTORERR_BAD_VECTOR on Failure.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_GetCapacity(Const ByRef $aVector)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
Return $aVector[$__VECTOR_CAPACITY]
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_GetDefaultValue
; Description ...: Returns the default value of the vector.
; Syntax ........: _Vector_GetDefaultValue(Const Byref $aVector)
; Parameters ....: $aVector - [in/out and const] a Vector.
; Return values .: The default value of the vector on Success, Null on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_GetDefaultValue(Const ByRef $aVector)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, Null)
EndIf
Return $aVector[$__VECTOR_DEFAULT]
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_GetModifier
; Description ...: Returns the Vector's Modifier.
; Syntax ........: _Vector_GetModifier(Const Byref $aVector)
; Parameters ....: $aVector - [in/out and const] a Vector.
; Return values .: The Vector's Modifier on Success, 0.0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_GetModifier(Const ByRef $aVector)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0.0)
EndIf
Return $aVector[$__VECTOR_MODIFIER]
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_IsEmpty
; Description ...: Checks whether the Vector is empty.
; Syntax ........: _Vector_IsEmpty(Const Byref $aVector)
; Parameters ....: $aVector - [in/out and const] a Vector.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_IsEmpty(Const ByRef $aVector)
Local $nSize = _Vector_GetSize($aVector)
If @error Then
Return SetError(@error, 0, 0)
EndIf
Return $nSize = 0
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Get
; Description ...: Return specified element with bounds checking.
; Syntax ........: _Vector_Get(Const Byref $aVector, Const $nIndex)
; Parameters ....: $aVector - [in/out and const] a Vector.
; $nIndex - [const] an Integer.
; Return values .: The value of the element on Success, Null on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_INVALID_INDEX.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Get(Const ByRef $aVector, Const $nIndex)
If Not __Vector_IsValidIndex($aVector, $nIndex, False) Then
Return SetError(@error, 0, Null)
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
If IsString($aContainer[$nIndex]) And $aContainer[$nIndex] == "" Then
Return $aVector[$__VECTOR_DEFAULT]
EndIf
Return $aContainer[$nIndex]
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_GetBuffer
; Description ...: Return a copy of the values array of the Vector.
; Syntax ........: _Vector_GetBuffer(Const Byref $aVector)
; Parameters ....: $aVector - [in/out and const] a Vector.
; Return values .: An array containing every element pushed into the Vector on Success, Empty array on Failure and sets errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_GetBuffer(Const ByRef $aVector)
Static Local $aEmptyContainer[0]
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, $aEmptyContainer)
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
If $aVector[$__VECTOR_SIZE] < $aVector[$__VECTOR_CAPACITY] Then
ReDim $aContainer[$aVector[$__VECTOR_SIZE]]
EndIf
Return $aContainer
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Reserve
; Description ...: Requests that the vector's capacity be at least enough to contain n-elements.
; Syntax ........: _Vector_Reserve(Byref $aVector, Const $nCapacity)
; Parameters ....: $aVector - [in/out] a Vector.
; $nCapacity - [const] an Integer.
; Return values .: 1 on Success, 0 on Failure and sets errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_BAD_CAPACITY.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Reserve(ByRef $aVector, Const $nCapacity)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
If Not IsInt($nCapacity) Or $nCapacity < 4 Then
Return SetError($VECTORERR_BAD_CAPACITY, 0, 0)
EndIf
If $nCapacity <= $aVector[$__VECTOR_CAPACITY] Then
Return 1
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
Local $nNewCapacity = __Vector_CalculateCapacity($aVector[$__VECTOR_CAPACITY], $nCapacity, $aVector[$__VECTOR_MODIFIER])
ReDim $aContainer[$nNewCapacity]
$aVector[$__VECTOR_CAPACITY] = $nNewCapacity
$aVector[$__VECTOR_BUFFER] = $aContainer
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Insert
; Description ...: Inserts elements at the specified location in the Vector.
; Syntax ........: _Vector_Insert(Byref $aVector, Const $nIndex, Const $vValue)
; Parameters ....: $aVector - [in/out] a Vector.
; $nIndex - [const] an Integer.
; $vValue - [const] a Variant.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_INVALID_INDEX.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Insert(ByRef $aVector, Const $nIndex, Const $vValue)
If Not __Vector_IsValidIndex($aVector, $nIndex, False) Then
Return SetError(@error, 0, 0)
EndIf
Local $nNextSize = $aVector[$__VECTOR_SIZE] + 1
Local $aContainer = $aVector[$__VECTOR_BUFFER]
If $nNextSize > $aVector[$__VECTOR_CAPACITY] Then
Local $nNewSize = __Vector_CalculateCapacity($aVector[$__VECTOR_CAPACITY], $nNextSize, $aVector[$__VECTOR_MODIFIER])
ReDim $aContainer[$nNewSize]
$aVector[$__VECTOR_CAPACITY] = $nNewSize
EndIf
For $i = $aVector[$__VECTOR_SIZE] To $nIndex + 1 Step -1
$aContainer[$i] = $aContainer[$i - 1]
Next
$aContainer[$nIndex] = $vValue
$aVector[$__VECTOR_SIZE] += 1
$aVector[$__VECTOR_BUFFER] = $aContainer
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Push
; Description ...: Appends the given element value to the end of the Vector.
; Syntax ........: _Vector_Push(Byref $aVector, Const $vValue)
; Parameters ....: $aVector - [in/out] a Vector.
; $vValue - [const] a Variant.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Push(ByRef $aVector, Const $vValue)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
Local $nNextSize = $aVector[$__VECTOR_SIZE] + 1
Local $aContainer = $aVector[$__VECTOR_BUFFER]
If $nNextSize > $aVector[$__VECTOR_CAPACITY] Then
Local $nNewCapacity = __Vector_CalculateCapacity($aVector[$__VECTOR_CAPACITY], $nNextSize, $aVector[$__VECTOR_MODIFIER])
ReDim $aContainer[$nNewCapacity]
$aVector[$__VECTOR_CAPACITY] = $nNewCapacity
EndIf
$aContainer[$aVector[$__VECTOR_SIZE]] = $vValue
$aVector[$__VECTOR_SIZE] = $nNextSize
$aVector[$__VECTOR_BUFFER] = $aContainer
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Pop
; Description ...: Removes the last element of the container and returns it.
; Syntax ........: _Vector_Pop(Byref $aVector)
; Parameters ....: $aVector - [in/out] a Vector.
; Return values .: The value of the removed element on Success, Null on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Pop(ByRef $aVector)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, Null)
EndIf
If $aVector[$__VECTOR_SIZE] <= 0 Then
Return SetError($VECTORERR_EMPTY_VECTOR, 0, $aVector[$__VECTOR_DEFAULT])
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
$aVector[$__VECTOR_SIZE] -= 1
Local $vValue = $aContainer[$aVector[$__VECTOR_SIZE]]
$aContainer[$aVector[$__VECTOR_SIZE]] = Null
Return $vValue
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_PopFirst
; Description ...: Removes the first element of the container and returns it.
; Syntax ........: _Vector_PopFirst(Byref $aVector)
; Parameters ....: $aVector - [in/out] a Vector.
; Return values .: The value of the removed element on Success, Null on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_EMPTY_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_PopFirst(ByRef $aVector)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, Null)
EndIf
If $aVector[$__VECTOR_SIZE] <= 0 Then
Return SetError($VECTORERR_EMPTY_VECTOR, 0, $aVector[$__VECTOR_DEFAULT])
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
$aVector[$__VECTOR_SIZE] -= 1
Local $vValue = $aContainer[0]
For $i = 0 To $aVector[$__VECTOR_SIZE] - 1
$aContainer[$i] = $aContainer[$i + 1]
Next
$aVector[$__VECTOR_BUFFER] = $aContainer
Return $vValue
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Set
; Description ...: Changes the value of the element at the given index.
; Syntax ........: _Vector_Set(Byref $aVector, Const $nIndex, Const $vValue)
; Parameters ....: $aVector - [in/out] a Vector.
; $nIndex - [const] an Integer.
; $vValue - [const] a Variant.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_INVALID_INDEX.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Set(ByRef $aVector, Const $nIndex, Const $vValue)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
If $nIndex < 0 Or $nIndex >= $aVector[$__VECTOR_CAPACITY] Then
Return SetError($VECTORERR_INVALID_INDEX, 0, 0)
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
$aContainer[$nIndex] = $vValue
$aVector[$__VECTOR_BUFFER] = $aContainer
If $nIndex >= $aVector[$__VECTOR_SIZE] Then
$aVector[$__VECTOR_SIZE] = $nIndex + 1
EndIf
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_AddVector
; Description ...: Adds the values of the second vector to the first vector.
; Syntax ........: _Vector_AddVector(Byref $aVector, Const Byref $aFromVector)
; Parameters ....: $aVector - [in/out] a Vector.
; $aFromVector - [in/out and const] a Vector.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_AddVector(ByRef $aVector, Const ByRef $aFromVector)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
Local $aValuesToAdd = _Vector_GetBuffer($aFromVector) ;~ Contains IsVector Check
If @error Then
Return SetError(@error, 0, 0)
EndIf
If UBound($aValuesToAdd) = 0 Then
Return 1
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
Local $nSize = $aVector[$__VECTOR_SIZE]
Local $nFromSize = $aFromVector[$__VECTOR_SIZE]
;~ Eesize if needed
If Not __Vector_HasSpace($aVector, $nFromSize, True) Then
Local $nNewCapacity = __Vector_CalculateCapacity($aVector[$__VECTOR_CAPACITY], $nSize + $nFromSize, $aVector[$__VECTOR_MODIFIER])
ReDim $aContainer[$nNewCapacity]
$aVector[$__VECTOR_CAPACITY] = $nNewCapacity
EndIf
;~ add
Local $i = $nSize
For $vValue In $aValuesToAdd
$aContainer[$i] = $vValue
$i += 1
Next
$aVector[$__VECTOR_SIZE] += $nFromSize
$aVector[$__VECTOR_BUFFER] = $aContainer
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Erase
; Description ...: Erases the specified element from the Vector.
; Syntax ........: _Vector_Erase(Byref $aVector, Const $nIndex)
; Parameters ....: $aVector - [in/out] a Vector.
; $nIndex - [const] an Integer.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_INVALID_INDEX.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Erase(ByRef $aVector, Const $nIndex)
If Not __Vector_IsValidIndex($aVector, $nIndex, False) Then
Return SetError(@error, 0, 0)
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
$aVector[$__VECTOR_SIZE] -= 1
For $i = $nIndex To $aVector[$__VECTOR_SIZE] - 1
$aContainer[$i] = $aContainer[$i + 1]
Next
$aVector[$__VECTOR_BUFFER] = $aContainer
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_EraseRange
; Description ...: Erases the specified elements from the Vector.
; Syntax ........: _Vector_EraseRange(Byref $aVector, Const $nIndexStart, Const $nIndexEnd)
; Parameters ....: $aVector - [in/out] a Vector.
; $nIndexStart - [const] an Integer.
; $nIndexEnd - [const] an Integer.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_INVALID_INDEX.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_EraseRange(ByRef $aVector, Const $nIndexStart, Const $nIndexEnd)
If $nIndexStart = $nIndexEnd Then
Return _Vector_Erase($aVector, $nIndexStart)
EndIf
If Not __Vector_IsValidIndex($aVector, $nIndexStart, False) Then
Return SetError(@error, 0, 0)
EndIf
If Not __Vector_IsValidIndex($aVector, $nIndexEnd, True) Then
Return SetError(@error, 0, 0)
EndIf
Local $nDiff = Abs($nIndexStart - $nIndexEnd) + 1
Local $aContainer = $aVector[$__VECTOR_BUFFER]
Local $nStart = ($nIndexStart > $nIndexEnd) ? ($nIndexEnd) : ($nIndexStart)
$aVector[$__VECTOR_SIZE] -= $nDiff
For $i = $nStart To $aVector[$__VECTOR_SIZE] - 1
$aContainer[$i] = $aContainer[$i + $nDiff]
Next
$aVector[$__VECTOR_BUFFER] = $aContainer
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_EraseValue
; Description ...: Erases all of the elements with the specified value from the Vector.
; Syntax ........: _Vector_EraseValue(Byref $aVector, Const $vValue)
; Parameters ....: $aVector - [in/out] a Vector.
; $vValue - [const] a Variant.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......: Nadav
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_EraseValue(ByRef $aVector, Const $vValue)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
;~ Its harder to find every matching value and erase + reloop all over again
;~ so just copying the vector without matching values
Local $aNewVector = _Vector_Init( _
$aVector[$__VECTOR_CAPACITY], _
$aVector[$__VECTOR_DEFAULT], _
$aVector[$__VECTOR_MODIFIER] _
)
Local $sValueType = VarGetType($vValue)
For $v In _Vector_GetBuffer($aVector)
If __Vector_Compare($aVector[$__VECTOR_COMPARE], $v, $vValue, $sValueType) = 0 Then
ContinueLoop
EndIf
_Vector_Push($aNewVector, $v)
Next
$aVector = $aNewVector
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Swap
; Description ...: Swaps between the values of the specified elements in the Vector.
; Syntax ........: _Vector_Swap(Byref $aVector, Const $nIndex1, Const $nIndex2)
; Parameters ....: $aVector - [in/out] a Vector.
; $nIndex1 - [const] an Integer.
; $nIndex2 - [const] an Integer.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_INVALID_INDEX.
; Author ........: Nadav
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Swap(ByRef $aVector, Const $nIndex1, Const $nIndex2)
If Not __Vector_IsValidIndex($aVector, $nIndex1, False) Then
Return SetError(@error, 0, 0)
EndIf
If Not __Vector_IsValidIndex($aVector, $nIndex2, True) Then
Return SetError(@error, 0, 0)
EndIf
__Vector_SwapContainer($aVector[$__VECTOR_BUFFER], $nIndex1, $nIndex2)
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_SwapVectors
; Description ...: Swaps between the Vectors.
; Syntax ........: _Vector_SwapVectors(Byref $aVectorL, Byref $aVectorR)
; Parameters ....: $aVectorL - [in/out] a Vector.
; $aVectorR - [in/out] a Vector.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_SwapVectors(ByRef $aVectorL, ByRef $aVectorR)
If Not _Vector_IsVector($aVectorL) Then
Return SetError(@error, 0, 0)
EndIf
If Not _Vector_IsVector($aVectorR) Then
Return SetError(@error, 0, 0)
EndIf
Local $aTempVector = $aVectorR
$aVectorR = $aVectorL
$aVectorL = $aTempVector
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Clear
; Description ...: Erases all elements from the container.
; Syntax ........: _Vector_Clear(Byref $aVector)
; Parameters ....: $aVector - [in/out] a Vector.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......: After this call, size returns zero.
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Clear(ByRef $aVector)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
For $i = 0 To $aVector[$__VECTOR_SIZE] - 1
$aContainer[$i] = $aVector[$__VECTOR_DEFAULT]
Next
$aVector[$__VECTOR_BUFFER] = $aContainer
$aVector[$__VECTOR_SIZE] = 0
Return 1
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Find
; Description ...: Checks whether the given value exists in the Vector.
; Syntax ........: _Vector_Find(Const Byref $aVector, Const $vValue)
; Parameters ....: $aVector - [in/out and const] a Vector.
; $vValue - [const] a Variant.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Nadav
; Modified ......: Zvend
; Remarks .......: Searches the value from the beggining of the Vector.
; ...............: Sets @extended to the index of the first element contains the specified value, -1 otherwise.
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Find(Const ByRef $aVector, Const $vValue)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
If $aVector[$__VECTOR_SIZE] = 0 Then
Return SetExtended(-1, 0)
EndIf
Local $sType = VarGetType($vValue)
Local $aContainer = $aVector[$__VECTOR_BUFFER]
For $i = 0 To $aVector[$__VECTOR_SIZE] - 1
If Not (VarGetType($aContainer[$i]) == $sType) Then
ContinueLoop
EndIf
If $aContainer[$i] = $vValue Then
Return SetExtended($i, 1)
EndIf
Next
Return SetExtended(-1, 0)
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_FindBackwards
; Description ...: Checks whether the given value exists in the Vector.
; Syntax ........: _Vector_FindBackwards(Const Byref $aVector, Const $vValue)
; Parameters ....: $aVector - [in/out and const] a Vector.
; $vValue - [const] a Variant.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Zvend
; Modified ......:
; Remarks .......: Searches the value from the end of the Vector.
; ...............: Sets @extended to the index of the last element contains the specified value, -1 otherwise.
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_FindBackwards(Const ByRef $aVector, Const $vValue)
If Not _Vector_IsVector($aVector) Then
Return SetError(@error, 0, 0)
EndIf
If $aVector[$__VECTOR_SIZE] = 0 Then
Return SetExtended(-1, 0)
EndIf
Local $aContainer = $aVector[$__VECTOR_BUFFER]
For $i = $aVector[$__VECTOR_SIZE] - 1 To 0 Step -1
If $aContainer[$i] = $vValue Then
Return SetExtended($i, 1)
EndIf
Next
Return SetExtended(-1, 0)
EndFunc
; #FUNCTION# ====================================================================================================================
; Name ..........: _Vector_Sort
; Description ...: Sorts the Vector.
; Syntax ........: _Vector_Sort(ByRef $aVector)
; Parameters ....: $aVector - [in/out and const] a Vector.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR.
; Author ........: Nadav
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Vector_Sort(ByRef $aVector)
If _Vector_GetSize($aVector) <= 1 Then
Return SetError(@error, 0, @error = 0)
EndIf
__Vector_QuickSort($aVector, $aVector[$__VECTOR_BUFFER], 0, $aVector[$__VECTOR_SIZE] - 1)
Return 1
EndFunc
#Region Internal Only
; #INTERNAL_USE_ONLY# ===========================================================================================================
; Name ..........: __Vector_IsValidIndex
; Description ...: Checks whether the index is a valid for the Vector.
; Syntax ........: __Vector_IsValidIndex(Const Byref $aVector, Const $nIndex, Const $bSkipVectorCheck)
; Parameters ....: $aVector - [in/out and const] a Vector.
; $nIndex - [const] an Integer.
; $bSkipVectorCheck - [const] a Bool.
; Return values .: 1 on Success, 0 on Failure and sets the errorcode to $VECTORERR_BAD_VECTOR or $VECTORERR_INVALID_INDEX.
; Author ........: Zvend