-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
zint_maxicode.pas
884 lines (791 loc) · 27.7 KB
/
zint_maxicode.pas
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
unit zint_maxicode;
{
Based on Zint (done by Robin Stuart and the Zint team)
http://github.com/zint/zint
Translation by TheUnknownOnes
http://theunknownones.net
License: Apache License 2.0
Status:
3432bc9aff311f2aea40f0e9883abfe6564c080b work in progress
}
{$IFDEF FPC}
{$mode objfpc}{$H+}
{$ENDIF}
interface
uses
SysUtils, zint;
function maxicode(symbol : zint_symbol; source : TArrayOfByte; _length : Integer) : Integer;
implementation
uses
zint_common, zint_reedsol, zint_helper;
type
TGlobalmaxi_codeword = array[0..143] of Integer;
const MaxiGrid : array[0..989] of Integer = ( { ISO/IEC 16023 Figure 5 - MaxiCode Module Sequence } { 30 x 33 data grid }
122, 121, 128, 127, 134, 133, 140, 139, 146, 145, 152, 151, 158, 157, 164, 163, 170, 169, 176, 175, 182, 181, 188, 187, 194, 193, 200, 199, 0, 0,
124, 123, 130, 129, 136, 135, 142, 141, 148, 147, 154, 153, 160, 159, 166, 165, 172, 171, 178, 177, 184, 183, 190, 189, 196, 195, 202, 201, 817, 0,
126, 125, 132, 131, 138, 137, 144, 143, 150, 149, 156, 155, 162, 161, 168, 167, 174, 173, 180, 179, 186, 185, 192, 191, 198, 197, 204, 203, 819, 818,
284, 283, 278, 277, 272, 271, 266, 265, 260, 259, 254, 253, 248, 247, 242, 241, 236, 235, 230, 229, 224, 223, 218, 217, 212, 211, 206, 205, 820, 0,
286, 285, 280, 279, 274, 273, 268, 267, 262, 261, 256, 255, 250, 249, 244, 243, 238, 237, 232, 231, 226, 225, 220, 219, 214, 213, 208, 207, 822, 821,
288, 287, 282, 281, 276, 275, 270, 269, 264, 263, 258, 257, 252, 251, 246, 245, 240, 239, 234, 233, 228, 227, 222, 221, 216, 215, 210, 209, 823, 0,
290, 289, 296, 295, 302, 301, 308, 307, 314, 313, 320, 319, 326, 325, 332, 331, 338, 337, 344, 343, 350, 349, 356, 355, 362, 361, 368, 367, 825, 824,
292, 291, 298, 297, 304, 303, 310, 309, 316, 315, 322, 321, 328, 327, 334, 333, 340, 339, 346, 345, 352, 351, 358, 357, 364, 363, 370, 369, 826, 0,
294, 293, 300, 299, 306, 305, 312, 311, 318, 317, 324, 323, 330, 329, 336, 335, 342, 341, 348, 347, 354, 353, 360, 359, 366, 365, 372, 371, 828, 827,
410, 409, 404, 403, 398, 397, 392, 391, 80, 79, 0, 0, 14, 13, 38, 37, 3, 0, 45, 44, 110, 109, 386, 385, 380, 379, 374, 373, 829, 0,
412, 411, 406, 405, 400, 399, 394, 393, 82, 81, 41, 0, 16, 15, 40, 39, 4, 0, 0, 46, 112, 111, 388, 387, 382, 381, 376, 375, 831, 830,
414, 413, 408, 407, 402, 401, 396, 395, 84, 83, 42, 0, 0, 0, 0, 0, 6, 5, 48, 47, 114, 113, 390, 389, 384, 383, 378, 377, 832, 0,
416, 415, 422, 421, 428, 427, 104, 103, 56, 55, 17, 0, 0, 0, 0, 0, 0, 0, 21, 20, 86, 85, 434, 433, 440, 439, 446, 445, 834, 833,
418, 417, 424, 423, 430, 429, 106, 105, 58, 57, 0, 0, 0, 0, 0, 0, 0, 0, 23, 22, 88, 87, 436, 435, 442, 441, 448, 447, 835, 0,
420, 419, 426, 425, 432, 431, 108, 107, 60, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 90, 89, 438, 437, 444, 443, 450, 449, 837, 836,
482, 481, 476, 475, 470, 469, 49, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 54, 53, 464, 463, 458, 457, 452, 451, 838, 0,
484, 483, 478, 477, 472, 471, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 466, 465, 460, 459, 454, 453, 840, 839,
486, 485, 480, 479, 474, 473, 52, 51, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 43, 468, 467, 462, 461, 456, 455, 841, 0,
488, 487, 494, 493, 500, 499, 98, 97, 62, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 92, 91, 506, 505, 512, 511, 518, 517, 843, 842,
490, 489, 496, 495, 502, 501, 100, 99, 64, 63, 0, 0, 0, 0, 0, 0, 0, 0, 29, 28, 94, 93, 508, 507, 514, 513, 520, 519, 844, 0,
492, 491, 498, 497, 504, 503, 102, 101, 66, 65, 18, 0, 0, 0, 0, 0, 0, 0, 19, 30, 96, 95, 510, 509, 516, 515, 522, 521, 846, 845,
560, 559, 554, 553, 548, 547, 542, 541, 74, 73, 33, 0, 0, 0, 0, 0, 0, 11, 68, 67, 116, 115, 536, 535, 530, 529, 524, 523, 847, 0,
562, 561, 556, 555, 550, 549, 544, 543, 76, 75, 0, 0, 8, 7, 36, 35, 12, 0, 70, 69, 118, 117, 538, 537, 532, 531, 526, 525, 849, 848,
564, 563, 558, 557, 552, 551, 546, 545, 78, 77, 0, 34, 10, 9, 26, 25, 0, 0, 72, 71, 120, 119, 540, 539, 534, 533, 528, 527, 850, 0,
566, 565, 572, 571, 578, 577, 584, 583, 590, 589, 596, 595, 602, 601, 608, 607, 614, 613, 620, 619, 626, 625, 632, 631, 638, 637, 644, 643, 852, 851,
568, 567, 574, 573, 580, 579, 586, 585, 592, 591, 598, 597, 604, 603, 610, 609, 616, 615, 622, 621, 628, 627, 634, 633, 640, 639, 646, 645, 853, 0,
570, 569, 576, 575, 582, 581, 588, 587, 594, 593, 600, 599, 606, 605, 612, 611, 618, 617, 624, 623, 630, 629, 636, 635, 642, 641, 648, 647, 855, 854,
728, 727, 722, 721, 716, 715, 710, 709, 704, 703, 698, 697, 692, 691, 686, 685, 680, 679, 674, 673, 668, 667, 662, 661, 656, 655, 650, 649, 856, 0,
730, 729, 724, 723, 718, 717, 712, 711, 706, 705, 700, 699, 694, 693, 688, 687, 682, 681, 676, 675, 670, 669, 664, 663, 658, 657, 652, 651, 858, 857,
732, 731, 726, 725, 720, 719, 714, 713, 708, 707, 702, 701, 696, 695, 690, 689, 684, 683, 678, 677, 672, 671, 666, 665, 660, 659, 654, 653, 859, 0,
734, 733, 740, 739, 746, 745, 752, 751, 758, 757, 764, 763, 770, 769, 776, 775, 782, 781, 788, 787, 794, 793, 800, 799, 806, 805, 812, 811, 861, 860,
736, 735, 742, 741, 748, 747, 754, 753, 760, 759, 766, 765, 772, 771, 778, 777, 784, 783, 790, 789, 796, 795, 802, 801, 808, 807, 814, 813, 862, 0,
738, 737, 744, 743, 750, 749, 756, 755, 762, 761, 768, 767, 774, 773, 780, 779, 786, 785, 792, 791, 798, 797, 804, 803, 810, 809, 816, 815, 864, 863
);
const maxiCodeSet : array[0..255] of Integer = ( { from Appendix A - ASCII character to Code Set (e.g. 2 = Set B) }
{ set 0 refers to special characters that fit into more than one set (e.g. GS) }
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 0, 5, 0, 2, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2,
2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 4, 5, 5, 5, 5, 5, 5, 4, 5, 3, 4, 3, 5, 5, 4, 4, 3, 3, 3,
4, 3, 5, 4, 4, 3, 3, 4, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4
);
const maxiSymbolChar : array[0..255] of Integer = ( { from Appendix A - ASCII character to symbol value }
0, 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, 30, 28, 29, 30, 35, 32, 53, 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, 37,
38, 39, 40, 41, 52, 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, 42, 43, 44, 45, 46, 0, 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, 32, 54, 34, 35, 36, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 47, 48,
49, 50, 51, 52, 53, 54, 55, 56, 57, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 36,
37, 37, 38, 39, 40, 41, 42, 43, 38, 44, 37, 39, 38, 45, 46, 40, 41, 39, 40, 41,
42, 42, 47, 43, 44, 43, 44, 45, 45, 46, 47, 46, 0, 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, 32,
33, 34, 35, 36, 0, 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, 32, 33, 34, 35, 36
);
{ Handles error correction of primary message }
procedure maxi_do_primary_check(var maxi_codeword : TGlobalmaxi_codeword);
var
data : TArrayOfByte;
results : TArrayOfByte;
j : Integer;
RSGlobals : TRSGlobals;
const
datalen = 10;
ecclen = 10;
begin
SetLength(data, 15);
SetLength(results, 15);
rs_init_gf($43, RSGlobals);
rs_init_code(ecclen, 1, RSGlobals);
for j := 0 to datalen - 1 do
data[j] := maxi_codeword[j];
rs_encode(datalen, data, results, RSGlobals);
for j := 0 to ecclen - 1 do
maxi_codeword[ datalen + j] := results[ecclen - 1 - j];
rs_free(RSGlobals);
end;
{ Handles error correction of odd characters in secondary }
procedure maxi_do_secondary_chk_odd(ecclen : Integer; var maxi_codeword : TGlobalmaxi_codeword);
var
data : TArrayOfByte;
results : TArrayOfByte;
j : Integer;
datalen : Integer;
RSGlobals : TRSGlobals;
begin
SetLength(data, 100);
SetLength(results, 30);
datalen := 68;
rs_init_gf($43, RSGlobals);
rs_init_code(ecclen, 1, RSGlobals);
if (ecclen = 20) then
datalen := 84;
for j := 0 to datalen - 1 do
if (j and 1) <> 0 then // odd
data[(j-1) div 2] := maxi_codeword[j + 20];
rs_encode(datalen div 2, data, results, RSGlobals);
for j := 0 to ecclen - 1 do
maxi_codeword[ datalen + (2 *j) + 1 + 20 ] := results[ecclen - 1 - j];
rs_free(RSGlobals);
end;
{ Handles error correction of even characters in secondary }
procedure maxi_do_secondary_chk_even(ecclen : Integer; var maxi_codeword : TGlobalmaxi_codeword);
var
data : TArrayOfByte;
results : TArrayOfByte;
j : Integer;
datalen : Integer;
RSGlobals : TRSGlobals;
begin
SetLength(data, 100);
SetLength(results, 30);
datalen := 68;
if (ecclen = 20) then
datalen := 84;
rs_init_gf($43, RSGlobals);
rs_init_code(ecclen, 1, RSGlobals);
for j := 0 to datalen do
if ((j and 1) = 0) then // even
data[j div 2] := maxi_codeword[j + 20];
rs_encode(datalen div 2, data, results, RSGlobals);
for j := 0 to ecclen - 1 do
maxi_codeword[ datalen + (2 *j) + 20] := results[ecclen - 1 - j];
rs_free(RSGlobals);
end;
{ Moves everything up so that a shift or latch can be inserted }
procedure maxi_bump(var _set : TArrayOfInteger; var character : TArrayOfInteger; bump_posn : Integer);
var
i : Integer;
begin
for i := 143 downto bump_posn + 1 do
begin
_set[i] := _set[i - 1];
character[i] := character[i - 1];
end;
end;
{ Format text according to Appendix A }
function maxi_text_process(mode : Integer; source : TArrayOfChar; _length : Integer; var maxi_codeword : TGlobalmaxi_codeword) : Integer;
var
_set, character : TArrayOfInteger;
i : Integer;
count : Integer;
current_set : Integer;
substring : TArrayOfChar;
value : Integer;
j : Integer;
begin
SetLength(substring, 10);
SetLength(_set, 144);
SetLength(character, 144);
{ This code doesn't make use of [Lock in C], [Lock in D]
and [Lock in E] and so is not always the most efficient at
compressing data, but should suffice for most applications }
if (_length > 138) then
begin
result := ZERROR_TOO_LONG; exit;
end;
for i := 0 to nitems(_set) - 1 do
begin
_set[i] := -1;
character[i] := 0;
end;
for i := 0 to _length - 1 do
begin
{ Look up characters in table from Appendix A - this gives
value and code set for most characters }
_set[i] := maxiCodeset[Ord(source[i])];
character[i] := maxiSymbolChar[Ord(source[i])];
end;
{ If a character can be represented in more than one code set,
pick which version to use }
if (_set[0] = 0) then
begin
if (character[0] = 13) then
character[0] := 0;
_set[0] := 1;
end;
for i := 1 to _length - 1 do
begin
if (_set[i] = 0) then
begin
{ Special character }
case character[i] of
13: { Carriage Return }
begin
if (_set[i - 1] = 5) then
begin
character[i] := 13;
_set[i] := 5;
end
else
begin
if ((i <> _length - 1) and (_set[i + 1] = 5)) then
begin
character[i] := 13;
_set[i] := 5;
end
else
begin
character[i] := 0;
_set[i] := 1;
end;
end;
end;
28: { FS }
begin
if (_set[i - 1] = 5) then
begin
character[i] := 32;
_set[i] := 5;
end
else
_set[i] := _set[i - 1];
end;
29: { GS }
begin
if (_set[i - 1] = 5) then
begin
character[i] := 33;
_set[i] := 5;
end
else
_set[i] := _set[i - 1];
end;
30: { RS }
begin
if (_set[i - 1] = 5) then
begin
character[i] := 34;
_set[i] := 5;
end
else
_set[i] := _set[i - 1];
end;
32: { Space }
begin
case _set[i - 1] of
1:
begin
character[i] := 32;
_set[i] := 1;
end;
2:
begin
character[i] := 47;
_set[i] := 2;
end
else
if (_set[i - 1] >= 3) then
begin
if (i <> _length - 1) then
begin
case _set[i + 1] of
1:
begin
character[i] := 32;
_set[i] := 1;
end;
2:
begin
character[i] := 47;
_set[i] := 2;
end
else
if (_set[i + 1] >= 3) then
begin
character[i] := 59;
_set[i] := _set[i - 1];
end;
end;
end
else
begin
character[i] := 59;
_set[i] := _set[i - 1];
end;
end
end;
end;
44: { Comma }
begin
if (_set[i - 1] = 2) then
begin
character[i] := 48;
_set[i] := 2;
end
else
begin
if (i <> _length - 1) and (_set[i + 1] = 2) then
begin
character[i] := 48;
_set[i] := 2;
end
else
_set[i] := 1;
end;
end;
46: { Full Stop }
begin
if (_set[i - 1] = 2) then
begin
character[i] := 49;
_set[i] := 2;
end
else
begin
if (i <> _length - 1) and (_set[i + 1] = 2) then
begin
character[i] := 49;
_set[i] := 2;
end
else
_set[i] := 1;
end;
end;
47: { Slash }
begin
if (_set[i - 1] = 2) then
begin
character[i] := 50;
_set[i] := 2;
end
else
begin
if (i <> _length - 1) and (_set[i + 1] = 2) then
begin
character[i] := 50;
_set[i] := 2;
end
else
_set[i] := 1;
end;
end;
58: { Colon }
begin
if (_set[i - 1] = 2) then
begin
character[i] := 51;
_set[i] := 2;
end
else
begin
if (i <> _length - 1) and (_set[i + 1] = 2) then
begin
character[i] := 51;
_set[i] := 2;
end
else
_set[i] := 1;
end;
end;
end;
end;
end;
for i := _length to nitems(_set) - 1 do
begin
{ Add the padding }
if (_set[_length - 1] = 2) then
_set[i] := 2
else
_set[i] := 1;
character[i] := 33;
end;
{ Find candidates for number compression }
count := 0;
if mode in [2,3] then i := 0 else i := 9;
while i < nitems(_set) - 1 do
begin
if (_set[i] = 1) and (character[i] >= 48) and (character[i] <= 57) then
{ Character is a number }
Inc(count)
else
count := 0;
if (count = 9) then
begin
{ Nine digits in a row can be compressed }
_set[i] := 6;
_set[i - 1] := 6;
_set[i - 2] := 6;
_set[i - 3] := 6;
_set[i - 4] := 6;
_set[i - 5] := 6;
_set[i - 6] := 6;
_set[i - 7] := 6;
_set[i - 8] := 6;
count := 0;
end;
Inc(i);
end;
{ Add shift and latch characters }
current_set := 1;
i := 0;
while i < nitems(_set) do
begin
if (_set[i] <> current_set) then
begin
case _set[i] of
1:
begin
if (_set[i + 1] = 1) then
begin
if (_set[i + 2] = 1) then
begin
if (_set[i + 3] = 1) then
begin
{ Latch A }
maxi_bump(_set, character, i);
character[i] := 63;
current_set := 1;
Inc(_length);
end
else
begin
{ 3 Shift A }
maxi_bump(_set, character, i);
character[i] := 57;
Inc(_length);
Inc(i, 2);
end;
end
else
begin
{ 2 Shift A }
maxi_bump(_set, character, i);
character[i] := 56;
Inc(_length);
Inc(i);
end;
end
else
begin
{ Shift A }
maxi_bump(_set, character, i);
character[i] := 59;
Inc(_length);
end;
end;
2:
begin
if (_set[i + 1] = 2) then
begin
{ Latch B }
maxi_bump(_set, character, i);
character[i] := 63;
current_set := 2;
Inc(_length);
end
else
begin
{ Shift B }
maxi_bump(_set, character, i);
character[i] := 59;
Inc(_length);
end;
end;
3:
begin
{ Shift C }
maxi_bump(_set, character, i);
character[i] := 60;
Inc(_length);
end;
4:
begin
{ Shift D }
maxi_bump(_set, character, i);
character[i] := 61;
Inc(_length);
end;
5:
begin
{ Shift E }
maxi_bump(_set, character, i);
character[i] := 62;
Inc(_length);
end;
6:
begin
{ Number Compressed }
{ Do nothing }
end;
end;
Inc(i);
end;
Inc(i);
end;
{ Number compression has not been forgotten! - It's handled below }
i := 0;
while i < nitems(_set) do
begin
if (_set[i] = 6) then
begin
{ Number compression }
substring[0] := #0;
for j := 0 to 8 do //chaosben: original it counts up to 9, but i thinks thats a bug, because there are only 9 digits (0..8)
substring[j] := Chr(character[i + j]);
substring[9] := #0;
value := StrToInt(ArrayOfCharToString(substring));
character[i] := 31; { NS }
character[i + 1] := (value and $3f000000) shr 24;
character[i + 2] := (value and $fc0000) shr 18;
character[i + 3] := (value and $3f000) shr 12;
character[i + 4] := (value and $fc0) shr 6;
character[i + 5] := (value and $3f);
Inc(i, 6);
for j := i to 139 do
begin
_set[j] := _set[j + 3];
character[j] := character[j + 3];
end;
Dec(_length, 3);
end
else
Inc(i);
end;
case mode of
2,
3:
begin
if (_length > 84) then
begin result := ZERROR_TOO_LONG; exit; end;
{ Copy the encoded text into the codeword array }
for i := 0 to 83 do { secondary only }
maxi_codeword[i + 20] := character[i];
end;
4,
6:
begin
if (_length > 93) then
begin result := ZERROR_TOO_LONG; exit; end;
for i := 0 to 8 do { primary }
maxi_codeword[i + 1] := character[i];
for i := 0 to 83 do { secondary }
maxi_codeword[i + 20] := character[i + 9];
end;
5:
begin
if (_length > 77) then
begin result := ZERROR_TOO_LONG; exit; end;
for i := 0 to 8 do { primary }
maxi_codeword[i + 1] := character[i];
for i := 0 to 67 do { secondary }
maxi_codeword[i + 20] := character[i + 9];
end;
end;
result := 0; exit;
end;
{ Format structured primary for Mode 2 }
procedure maxi_do_primary_2(postcode : TArrayOfChar; country : Integer; service : Integer; var maxi_codeword : TGlobalmaxi_codeword);
var
postcode_length, postcode_num : Integer;
i : Integer;
begin
for i := 0 to 9 do
if ((postcode[i] < '0') or (postcode[i] > '9')) then
postcode[i] := #0;
postcode_length := strlen(postcode);
postcode_num := StrToInt(zint_helper.ArrayOfCharToString(postcode));
maxi_codeword[0] := ((postcode_num and $03) shl 4) or 2;
maxi_codeword[1] := ((postcode_num and $fc) shr 2);
maxi_codeword[2] := ((postcode_num and $3f00) shr 8);
maxi_codeword[3] := ((postcode_num and $fc000) shr 14);
maxi_codeword[4] := ((postcode_num and $3f00000) shr 20);
maxi_codeword[5] := ((postcode_num and $3c000000) shr 26) or ((postcode_length and $3) shl 4);
maxi_codeword[6] := ((postcode_length and $3c) shr 2) or ((country and $3) shl 4);
maxi_codeword[7] := (country and $fc) shr 2;
maxi_codeword[8] := ((country and $300) shr 8) or ((service and $f) shl 2);
maxi_codeword[9] := ((service and $3f0) shr 4);
end;
{ Format structured primary for Mode 3 }
procedure maxi_do_primary_3(postcode : TArrayOfByte; country : Cardinal; service : Integer; var maxi_codeword : TGlobalmaxi_codeword);
var
i, h : Integer;
begin
h := ustrlen(postcode);
to_upper(postcode);
for i := 0 to h - 1 do
begin
if ((Chr(postcode[i]) >= 'A') and (Chr(postcode[i]) <= 'Z')) then
{ (Capital) letters shifted to Code Set A values }
Dec(postcode[i], 64);
if (postcode[i] = 27) or (postcode[i] = 31) or (postcode[i] = 33) or (postcode[i] >= 59) then
{ Not a valid postcode character }
postcode[i] := 32;
{ Input characters lower than 27 (NUL - SUB) in postcode are
interpreted as capital letters in Code Set A (e.g. LF becomes 'J') }
end;
maxi_codeword[0] := ((Ord(postcode[5]) and $03) shl 4) or 3;
maxi_codeword[1] := ((Ord(postcode[4]) and $03) shl 4) or ((Ord(postcode[5]) and $3c) shr 2);
maxi_codeword[2] := ((Ord(postcode[3]) and $03) shl 4) or ((Ord(postcode[4]) and $3c) shr 2);
maxi_codeword[3] := ((Ord(postcode[2]) and $03) shl 4) or ((Ord(postcode[3]) and $3c) shr 2);
maxi_codeword[4] := ((Ord(postcode[1]) and $03) shl 4) or ((Ord(postcode[2]) and $3c) shr 2);
maxi_codeword[5] := ((Ord(postcode[0]) and $03) shl 4) or ((Ord(postcode[1]) and $3c) shr 2);
maxi_codeword[6] := ((Ord(postcode[0]) and $3c) shr 2) or ((country and $3) shl 4);
maxi_codeword[7] := (country and $fc) shr 2;
maxi_codeword[8] := Integer(((country and $300) shr 8)) or ((service and $f) shl 2);
maxi_codeword[9] := ((service and $3f0) shr 4);
end;
function maxicode(symbol : zint_symbol; source : TArrayOfByte; _length : Integer) : Integer;
var
i, j, block, bit, mode, countrycode, service, lp : Integer;
bit_pattern : TArrayOfInteger;
internal_error, eclen : Integer;
postcode, countrystr, servicestr : TArrayOfChar;
local_source : TArrayOfChar;
maxi_codeword : TGlobalmaxi_codeword;
begin
SetLength(local_source, _length + 1);
SetLength(postcode, 12);
SetLength(countrystr, 4);
SetLength(servicestr, 4);
{countrycode := 0; }{service :=0;} lp := 0;
internal_error := 0;
SetLength(bit_pattern, 7);
mode := symbol.option_1;
strcpy(postcode, '');
strcpy(countrystr, '');
strcpy(servicestr, '');
{ The following to be replaced by ECI handling }
{
chaosben: i think this is a bug, because it was already done before and
when calling latin1_process a second time error "ZERROR_INVALID_DATA" is raised
thats why its commented out
case symbol.input_mode of
DATA_MODE,
GS1_MODE:
local_source := source;
UNICODE_MODE:
begin
error_number := latin1_process(symbol, source, local_source, _length);
if (error_number <> 0) then begin result := error_number; exit; end;
end;
end;
chaosben: instead, we assign local_source directly}
ArrayCopy(local_source, source);
local_source[_length] := #0;
FillChar(maxi_codeword[0], SizeOf(maxi_codeword), 0);
if (mode = -1) then
begin { If mode is unspecified }
lp := strlen(symbol.primary);
if (lp = 0) then
mode := 4
else
begin
mode := 2;
i := 0;
while (i < 10) and (i < lp)do
begin
if ((symbol.primary[i] < #48) or (symbol.primary[i] > #57)) then
begin
mode := 3;
break;
end;
Inc(i);
end;
end;
end;
if ((mode < 2) or (mode > 6)) then
begin { Only codes 2 to 6 supported }
strcpy(symbol.errtxt, 'Invalid Maxicode Mode');
result := ZERROR_INVALID_OPTION; exit;
end;
if ((mode = 2) or (mode = 3)) then
begin { Modes 2 and 3 need data in symbol.primary }
if (lp = 0) then
{ Mode set manually means lp doesn't get set }
lp := strlen( symbol.primary );
if (lp <> 15) then
begin
strcpy(symbol.errtxt, 'Invalid Primary String');
result := ZERROR_INVALID_DATA; exit;
end;
for i := 9 to 14 do
begin { check that country code and service are numeric }
if ((symbol.primary[i] < '0') or (symbol.primary[i] > '9')) then
begin
strcpy(symbol.errtxt, 'Invalid Primary String');
result := ZERROR_INVALID_DATA; exit;
end;
end;
ArrayCopy(postcode, symbol.primary, 9);
postcode[9] := #0;
if (mode = 2) then
begin
for i := 0 to 9 do
if (postcode[i] = ' ') then
postcode[i] := #0;
end
else if (mode = 3) then
postcode[7] := #0;
countrystr[0] := symbol.primary[9];
countrystr[1] := symbol.primary[10];
countrystr[2] := symbol.primary[11];
countrystr[3] := #0;
servicestr[0] := symbol.primary[12];
servicestr[1] := symbol.primary[13];
servicestr[2] := symbol.primary[14];
servicestr[3] := #0;
countrycode := StrToInt(ArrayOfCharToString(countrystr));
service := StrToInt(ArrayOfCharToString(servicestr));
if (mode = 2) then maxi_do_primary_2( postcode, countrycode, service, maxi_codeword);
if (mode = 3) then maxi_do_primary_3( ArrayOfCharToArrayOfByte(postcode), countrycode, service, maxi_codeword);
end
else
maxi_codeword[0] := mode;
i := maxi_text_process(mode, local_source, _length, maxi_codeword);
if (i = ZERROR_TOO_LONG ) then
begin
strcpy(symbol.errtxt, 'Input data too long');
result := i; exit;
end;
{ All the data is sorted - now do error correction }
maxi_do_primary_check(maxi_codeword); { always EEC }
if ( mode = 5 ) then
eclen := 56 // 68 data codewords , 56 error corrections
else
eclen := 40; // 84 data codewords, 40 error corrections
maxi_do_secondary_chk_even(eclen div 2, maxi_codeword); // do error correction of even
maxi_do_secondary_chk_odd(eclen div 2, maxi_codeword); // do error correction of odd
{ Copy data into symbol grid }
for i := 0 to 32 do
begin
for j := 0 to 29 do
begin
block := (MaxiGrid[(i * 30) + j] + 5) div 6;
bit := (MaxiGrid[(i * 30) + j] + 5) mod 6;
if (block <> 0) then
begin
bit_pattern[0] := (maxi_codeword[block - 1] and $20) shr 5;
bit_pattern[1] := (maxi_codeword[block - 1] and $10) shr 4;
bit_pattern[2] := (maxi_codeword[block - 1] and $8) shr 3;
bit_pattern[3] := (maxi_codeword[block - 1] and $4) shr 2;
bit_pattern[4] := (maxi_codeword[block - 1] and $2) shr 1;
bit_pattern[5] := (maxi_codeword[block - 1] and $1);
if (bit_pattern[bit] <> 0) then
set_module(symbol, i, j);
end;
end;
end;
{ Add orientation markings }
set_module(symbol, 0, 28); // Top right filler
set_module(symbol, 0, 29);
set_module(symbol, 9, 10); // Top left marker
set_module(symbol, 9, 11);
set_module(symbol, 10, 11);
set_module(symbol, 15, 7); // Left hand marker
set_module(symbol, 16, 8);
set_module(symbol, 16, 20); // Right hand marker
set_module(symbol, 17, 20);
set_module(symbol, 22, 10); // Bottom left marker
set_module(symbol, 23, 10);
set_module(symbol, 22, 17); // Bottom right marker
set_module(symbol, 23, 17);
symbol.width := 30;
symbol.rows := 33;
result := internal_error; exit;
end;
end.