-
Notifications
You must be signed in to change notification settings - Fork 0
/
S-BoxFinder.c
executable file
·2528 lines (2033 loc) · 78.1 KB
/
S-BoxFinder.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "./SBoxSearch.h"
#define L 76
#define C 67
#define X 88
#define Y 89
#define MAXTABLES 32
#define SBOX 1
#define UNUSED 2
#define TRIGGER 3
#define END "INT_INTF_RIGHT_TERM_IO"
#define MAX_X 200
#define MAX_Y 200
#define BRAM 0
#define LOGIC 1
#define TILE 2
#define BRANCHES 15
//Variables representing inputs to LUT6s
int I0, I1, I2, I3, I4, I5 = 0;
int * inputs[6];
//Dictionary to hold all permutations of LUT6 INIT values
char dictionary[720 * 32][65];
int dicIndex = 0;
int length[32] = {};
int zeros[32] = {};
//INIT value of a LUT6 implemeting XOR, and array to store such LUTs
char xorPattern[65] = {48,49,49,48,49,48,48,49,49,48,48,49,48,49,49,48,49,48,48,49,48,49,49,48,48,49,49,48,49,48,48,49,49,48,48,49,48,49,49,48,48,49,49,48,49,48,48,49,48,49,49,48,49,48,48,49,49,48,48,49,48,49,49,48};
char xorLUTs[1500][30];
int xorIndex = 0;
char beginName[30];
char beginTile[30];
char endName[30];
char endTile[30];
//An array in which to hold the connections read from the JSON file
struct connection connections[1000000];
int connectionIndex = 0;
//Arrays to hold found SBoxes and final round SBoxes
struct sBox sBoxes[500];
struct sBox finalSBoxes[500];
int sBoxIndex = 0;
//2D representation of the FPGA tiles
struct tile* cartTiles[MAX_X][MAX_Y][2];
int tilesSet[MAX_X][MAX_Y][2];
//Array of closest unused Tiles to an S-Box
struct tile unusedTiles[80];
int unusedFrequency[80];
int unusedIndex = 0;
int followingSBoxIndexes[16][5];
int sBoxUnderExamination = 0;
int foundFollowerIndex = 0;
int testing = 0;
int searchDone = 0;
char foundTile[20];
char initialTile[30];
FILE * triggerConnections;
//Print the GoAhead command to block the given connection
void blockConnection(char beginTile[], char beginName[], FILE * file) {
//Print the command to block the begining of the given connection
fputs("SetPortUsageInSelection PortName=",file);
fputs(beginName, file);
fputs(" CheckForExistence=False IncludeReachablePorts=True PortUsage=Blocked TileLocation=", file);
fputs(beginTile, file);
fputs(" TilesToExclude=;", file);
fputc(10, file);
}
//Recursive methods to find and return name and tile of all LUTs following a given port
int nextLUT(char tile[], char name[], char foundNames[][30], char foundTiles[][30], int foundLUTs) {
int lutFound = 0;
int newConnections = 1;
char searchName[30];
char searchTile[30];
char nextSearchName[30];
char nextSearchTile[30];
char lutTest[4];
struct connection * branchPoints[BRANCHES][5];
int branches = 0;
//Initialise the branchPoints arrary
for(int i=0; i<BRANCHES; i++) {
for(int j=0; j<5; j++){
branchPoints[i][j] = NULL;
}
}
strcpy(searchTile, tile);
strcpy(searchName, name);
while(newConnections > 0) {
newConnections = 0;
for(int cIndex = 0; cIndex < connectionIndex; cIndex++) {
if(strcmp(searchTile, connections[cIndex].beginTile) == 0 && strcmp(searchName, connections[cIndex].beginName) == 0) {
//TESTING
/*
if(testing == 1) {
fprintf(triggerConnections, " %s.%s", connections[cIndex].beginTile, connections[cIndex].beginName);
fputc(10, triggerConnections);
printf(" %s.%s\n", connections[cIndex].beginTile, connections[cIndex].beginName);
}
*/
newConnections++;
for(int i = 0; i < 3; i++) {
lutTest[i] = connections[cIndex].endName[i+2];
}
lutTest[3] = 0;
if(strcmp(lutTest, "LUT") == 0 /*strcmp(initialTile, connections[cIndex].endTile) != 0*/) {
strcpy(foundNames[foundLUTs], connections[cIndex].endName);
strcpy(foundTiles[foundLUTs], connections[cIndex].endTile);
lutFound = 1;
foundLUTs++;
cIndex = connectionIndex;
newConnections = 0;
}
if(newConnections == 1) {
strcpy(nextSearchName, connections[cIndex].endName);
strcpy(nextSearchTile, connections[cIndex].endTile);
}
else if (newConnections > 1) {
//A branch has been enountered, so safe other routes accordingly
branchPoints[branches][newConnections - 2] = &connections[cIndex];
}
}
}//for
if(newConnections > 1) {
branches++;
}
strcpy(searchName, nextSearchName);
strcpy(searchTile, nextSearchTile);
}//while
for(int i = branches - 1; i >= 0; i--) {
for(int j = 0; j < 5; j++) {
if(branchPoints[i][j] != NULL) {
foundLUTs = nextLUT(branchPoints[i][j]->endTile, branchPoints[i][j]->endName, foundNames, foundTiles, foundLUTs);
}
}
}
return foundLUTs;
}
//Recursive method to find all LUTs or MUXs following a given point
int nextLUTorMUX(char tile[], char name[], char foundNames[][30], char foundTiles[][30], int foundLUTs) {
testing = 0;
int lutFound = 0;
int newConnections = 1;
char searchName[30];
char searchTile[30];
char nextSearchName[30];
char nextSearchTile[30];
char lutTest[4];
char muxTest[4];
struct connection * branchPoints[BRANCHES][5];
int branches = 0;
//Initialise the branchPoints arrary
for(int i=0; i<BRANCHES; i++) {
for(int j=0; j<5; j++){
branchPoints[i][j] = NULL;
}
}
strcpy(searchTile, tile);
strcpy(searchName, name);
while(newConnections > 0) {
newConnections = 0;
for(int cIndex = 0; cIndex < connectionIndex; cIndex++) {
if(strcmp(searchTile, connections[cIndex].beginTile) == 0 && strcmp(searchName, connections[cIndex].beginName) == 0) {
//TESTING
if(testing == 1) {
printConnection(connections[cIndex]);
}
newConnections++;
for(int i = 0; i < 3; i++) {
lutTest[i] = connections[cIndex].endName[i+2];
muxTest[i] = connections[cIndex].endName[i+2];
}
lutTest[3] = 0;
muxTest[3] = 0;
//printf(lutTest);
if(strcmp(lutTest, "LUT") == 0 || (strcmp(muxTest, "MUX") == 0 && strcmp(initialTile, connections[cIndex].endTile) != 0)) {
if(testing == 1)
printConnection(connections[cIndex]);
strcpy(foundNames[foundLUTs], connections[cIndex].endName);
strcpy(foundTiles[foundLUTs], connections[cIndex].endTile);
//printf("%d: %s (%s)\n", foundLUTs, foundNames[foundLUTs], foundTiles[foundLUTs]);
lutFound = 1;
foundLUTs++;
cIndex = connectionIndex;
newConnections = 0;
}
if(newConnections == 1) {
strcpy(nextSearchName, connections[cIndex].endName);
strcpy(nextSearchTile, connections[cIndex].endTile);
}
else if (newConnections > 1) {
//A branch has been enountered, so safe other routes accordingly
//printf("HERE1\n");
branchPoints[branches][newConnections - 2] = &connections[cIndex];
}
}
}//for
if(newConnections > 1) {
branches++;
}
//TESTING
if(testing == 1) {
printf("--------------------------------------------------------\n");
}
strcpy(searchName, nextSearchName);
strcpy(searchTile, nextSearchTile);
}//while
for(int i = branches - 1; i >= 0; i--) {
for(int j = 0; j < 5; j++) {
if(branchPoints[i][j] != NULL) {
if(testing == 1) {
printf(" -----BRANCH -----\n");
printConnection(*branchPoints[i][j]);
printf("--------------------------------------------------------\n");
}
foundLUTs = nextLUTorMUX(branchPoints[i][j]->endTile, branchPoints[i][j]->endName, foundNames, foundTiles, foundLUTs);
}
}
}
return foundLUTs;
}
void findFollowingSBox(int sBIndex, int lutIndex, char startName[]) {
int foundLUTs = 0;
int tempIndex = 0;
char sBoxNamesFollowing[60][30];
char sBoxTilesFollowing[60][30];
char followingNames[7][30];
char followingTiles[7][30];
//TESTING
if(testing == 1) {
printTile(finalSBoxes[sBIndex].LUT8s[lutIndex]);
}
int followingLUTs = nextLUT(finalSBoxes[sBIndex].LUT8s[lutIndex].name, startName, followingNames, followingTiles, foundLUTs);
//If one LUT follows then the S-Box is in round 10
if(followingLUTs == 1) {
finalSBoxes[sBIndex].round = 10;
return;
}
//Else if 2 follow then it is used in key generation
else if(followingLUTs == 2) {
finalSBoxes[sBIndex].round = -1;
return;
}
//For each of the following LUTs found, find the following S-Box
for(int fIndex = 0; fIndex < followingLUTs; fIndex++) {
//If the following name is an LUT change the 5s to 6s - A5LUT_O5 -> A6LUT_O6
//TO DO - define L and SIX
if(followingNames[fIndex][2] == 76) {
followingNames[fIndex][1] = 54;
followingNames[fIndex][7] = 54;
}
//TESTING
if(testing == 1) {
printf(" %s (%s)\n ", followingNames[fIndex], followingTiles[fIndex]);
}
//Initialise the initial tile for the search
strcpy(initialTile, followingTiles[fIndex]);
//Search for how many LUTs and MUXs immediately follow the LUT
tempIndex = nextLUTorMUX(followingTiles[fIndex], followingNames[fIndex], sBoxNamesFollowing, sBoxTilesFollowing, 0);
//testing = 1;
//For each of the found MUXs and LUTs identify the S-Box to which they belong
for(int i = 0; i < tempIndex; i++) {
//TESTING
if(testing == 1) {
printf(" %s (%s) ", sBoxNamesFollowing[i], sBoxTilesFollowing[i]);
}
//Search the LUT8s comprising all known S-Boxes
for(int j = 0; j < sBoxIndex; j++) {
for(int k = 0; k < 8; k++) {
//If the tile name matches
if(strcmp(finalSBoxes[j].LUT8s[k].name, sBoxTilesFollowing[i]) == 0) {
//If the LUT8 is implemeted on A-D and name starts A-E,
//or the LUT8 is implemeted on A-D and the MUX is BOT
if((finalSBoxes[j].LUT8s[k].LUT6s[0] == 1 && sBoxNamesFollowing[i][0] < 69) ||
(finalSBoxes[j].LUT8s[k].LUT6s[0] == 1 && sBoxNamesFollowing[i][6] == 66)) {
//Testing
if(testing == 1)
printf("%d, ", j);
//If the found index has already been found break (see permutaion findings)
if(finalSBoxes[sBIndex].followingSBoxes[fIndex] == j) {
j = sBoxIndex;
k = 8;
i = tempIndex;
}
//Else set
else
finalSBoxes[sBIndex].followingSBoxes[fIndex] = j;
}
else if(((finalSBoxes[j].LUT8s[k].LUT6s[7] == 1 && sBoxNamesFollowing[i][0] > 68) && strlen(sBoxNamesFollowing[i]) < 9)||
(finalSBoxes[j].LUT8s[k].LUT6s[7] == 1 && sBoxNamesFollowing[i][6] == 84)) {
if(testing == 1)
printf("%d, ", j);
//If the found index has already been found break (see permutaion findings)
if(finalSBoxes[sBIndex].followingSBoxes[fIndex] == j) {
j = sBoxIndex;
k = 8;
i = tempIndex;
}
//Else set
else
finalSBoxes[sBIndex].followingSBoxes[fIndex] = j;
}
}
}
}
if(testing == 1)
printf("\n");
}
if(testing == 1)
printf("\n");
}
}
//A method to extract the Cartesian coordinates of a tile
void getTileCoords(char tile[], int* x, int* y) {
int yCoordFound = 0;
int xIndex, yIndex = 0;
char xCoordString[4], yCoordString[4];
//Extract the X and Y coordinates from the tile name
for(int i = 0; i < strlen(tile); i++) {
if(tile[i] == X) {
i++;
int xIndex = i;
while(tile[i] != 89) {
xCoordString[i - xIndex] = tile[i];
i++;
}
xCoordString[i-xIndex] = 0;
*x = atoi(xCoordString);
yCoordFound = 1;
i++;
yIndex = i;
}
if(yCoordFound == 1) {
yCoordString[i - yIndex] = tile[i];
}
}
yCoordString[strlen(tile) - yIndex] = 0;
*y = atoi(yCoordString);
}
//A method to mark the relevent LUT6 on a tile as in use
void setTileLUT(struct tile * tile, char letter, int type) {
switch (letter)
{
//A
case 65:
if (tile->LUT6s[0] == 0)
tile->LUT6s[0] = type;
else
tile->LUT6s[0] = 0;
break;
//B
case 66:
tile->LUT6s[1] = type;
break;
//C
case 67:
tile->LUT6s[2] = type;
break;
//D
case 68:
tile->LUT6s[3] = type;
break;
//E
case 69:
tile->LUT6s[4] = type;
break;
//F
case 70:
tile->LUT6s[5] = type;
break;
//G
case 71:
tile->LUT6s[6] = type;
break;
//H
case 72:
tile->LUT6s[7] = type;
break;
default:
break;
}
}
//Unset LUTs A-D on the given tile
void clearBottom(struct tile * tile) {
for(int i = 0; i < 4; i++) {
tile->LUT6s[i] = 0;
}
tile->bitA = 10;
}
//Unset LUTs E-H on the given tile
void clearTop(struct tile * tile) {
for(int i = 7; i > 3; i--) {
tile->LUT6s[i] = 0;
}
tile->bitE = 10;
}
//Print the given S-Box to the supplied file
void fputSbox(struct sBox sBox, int index, FILE * file) {
fputs("Index: ", file);
fprintf(file, "%d", index);
fputs(" - Following Index: ", file);
fprintf(file, "%d", sBox.nextIndex);
fputs(" - Byte: ", file);
fprintf(file, "%d", sBox.byte);
fputc(10, file);
for (int i = 0; i < sBox.foundLUT8s; i++) {
fputs(sBox.LUT8s[i].name, file);
fputc(32, file);
for (int j = 0; j < 8; j++) {
fputc(sBox.LUT8s[i].LUT6s[j] + 48, file);
}
fputc(32, file);
if(sBox.LUT8s[i].bitA != 10)
fputc(sBox.LUT8s[i].bitA + 48, file);
else
fputc(sBox.LUT8s[i].bitE + 48, file);
fputc(10, file);
}
fputs("----------------------", file);
fputc(10, file);
}
//Calculate INIT values of SBox LUTs for all input permutations
void dictionaryUpdate (int choice) {
int Out;
switch (choice)
{
//64'hB14EDE67096C6EED - Bit 0
case 0:
Out = !I0 && !I2 && !I3 && !I4 || I0 && !I1 && I2 && !I3 && !I5 || !I0 && !I1 && !I2 && I3 && I4 ||
!I0 && I1 && I2 && !I4 || I0 && !I2 && I3 && !I4 || I1 && !I2 && !I3 && I4 || !I0 && I1 && I2
&& !I3 || I1 && !I2 && I3 && !I4 || I1 && !I3 && !I4 && !I5 || I0 && I1 && I2 && I3 && I5 ||
!I1 && I2 && I3 && I4 && I5 || I0 && !I1 && !I3 && !I4 && I5 || I0 && I1 && !I2 && I3 && !I5 ||
!I0 && I2 && I3 && !I4 && I5 || I0 && !I2 && !I3 && I4 && I5 || I0 && !I1 && I2 && !I4 && !I5;
break;
//64'h68AB4BFA8ACB7A13 - Bit 0
case 1:
Out = I1 && I2 && !I3 && I4 && !I5 || I0 && I1 && I4 && !I5 || !I1 && !I2 && I3 && !I4 && I5 || I0 &&
!I1 && I2 && I4 && I5 || !I0 && I1 && I2 && I3 && I5 || I0 && !I3 && I5 || I0 && !I1 && !I2 && !I5 ||
I0 && I1 && !I2 && I3 || I2 && !I3 && !I4 && I5 || !I1 && !I2 && !I3 && I4 || !I1 && I2 && I3 && !I4
&& !I5 || !I0 && !I1 && !I3 && !I4 && !I5 || !I0 && I1 && I2 && I3 && !I4;
break;
//64'h10BDB210C006EAB5 - Bit 0
case 2:
Out = I0 && I2 && !I4 && !I5 || I1 && I2 && I3 && !I5 || I0 && !I1 && !I2 && !I3 && I4 && !I5 || !I0 && !I1
&& I2 && I5 || I0 && !I1 && I3 && !I4 || I0 && I1 && !I3 && I4 && I5 || !I0 && I1 && !I2 && !I3 && I4 ||
!I0 && !I2 && !I3 && !I4 && !I5 || I0 && !I2 && I3 && !I4 && !I5 || I0 && I1 && I2 && I3 && !I4 || I0 &&
I2 && !I3 && I4 && I5 || !I0 && !I2 && !I3 && I4 && I5 || !I1 && I2 && !I3 && !I4 && !I5;
break;
//64'h4F1EAD396F247A04 - Bit 0
case 3:
Out = !I0 && I1 && !I2 && !I3 && !I5 || I0 && !I1 && I2 && I4 && !I5 || I0 && I1 && !I2 && I5 ||
!I0 && !I1 && I2 && !I3 && I5 || !I0 && I1 && I3 && I4 || I0 && !I2 && I3 && !I5 || !I1 && !I2 && I3 && I4 ||
I0 && !I1 && I2 && I3 && !I4 || !I0 && I2 && I3 && !I4 && !I5 || !I0 && !I2 && I3 && !I4 && I5 ||
I0 && !I2 && I4 && I5 || !I0 && I1 && !I2 && I4 || I0 && I1 && I3 && !I4 && I5 || I0 && !I1 && I2 && !I4 && I5 ||
!I0 && !I1 && !I3 && !I4 && I5;
break;
//64'h7BAE007D4C53FC7D - Bit 1
case 4:
Out = I1 && !I2 && !I3 && I5 || I0 && !I3 && I4 && I5 || !I1 && I3 && I4 && I5 || !I0 && !I3 && !I4 || I1 && I3 && !I4 && !I5 ||
!I1 && I2 && !I4 && !I5 || !I0 && I1 && I2 && !I5 || I1 && !I2 && I3 && !I5 || !I0 && !I1 && !I3 && !I5 ||
I0 && !I2 && I4 && I5 || I1 && !I2 && !I4 && !I5 || !I1 && I2 && !I3 && !I4 || !I0 && I1 && I2 && I3 && I4 || I0 && !I1 &&
!I2 && !I3 && I4;
break;
//64'hE61A4C5E97816F7A - Bit 1
case 5:
Out = !I0 && !I1 && !I2 && I4 && !I5 || I0 && I1 && I2 && I4 && !I5 || !I0 && !I1 && I3 && I4 && !I5 || I0 && !I2 && !I3 && I5 ||
!I0 && !I1 && I2 && !I3 && I5 || !I0 && I1 && I2 && !I4 || !I0 && I1 && !I2 && I3 || I0 && !I2 && !I4 && !I5 || I1 && !I2 &&
!I4 && I5 || I0 && !I1 && !I4 && !I5 || !I1 && !I2 && I3 && !I5 || I0 && I2 && I3 && I4 && I5 || !I1 && I2 && !I3 && !I4 &&
!I5 || I1 && I2 && I3 && I4 && I5 || I0 && !I1 && I3 && I4 && I5;
break;
//64'h6A450B2EF33486B4 - Bit 1
case 6:
Out = !I1 && I2 && !I3 && !I5 || I0 && !I1 && !I2 && I3 || !I0 && I1 && !I2 && !I4 && !I5 || !I0 && I1 && !I2 && !I3 || !I1 &&
I3 && I4 && !I5 || !I1 && !I2 && I3 && !I4 && I5 || !I0 && !I2 && !I3 && I4 && I5 || I0 && !I2 && !I4 && I5 || I0 && I1
&& I2 && I3 && !I5 || !I0 && I1 && I2 && I3 && I4 || I0 && !I1 && I2 && I3 && I4 || I0 && I1 && !I2 && I3 && I5 || !I0 &&
I1 && I2 && I4 && I5 || I0 && I1 && I2 && !I4 && !I5 || I0 && !I1 && I2 && !I3 && !I4;
break;
//64'hC870974094EAD8A9 - Bit 1
case 7:
Out = !I0 && !I1 && !I2 && !I3 && !I4 && !I5 || I0 && I1 && !I4 && !I5 || !I0 && I1 && !I2 && I3 && I4 && !I5 || !I0 && !I1 &&
I2 && I3 && !I5 || !I0 && I1 && I2 && !I3 && I5 || !I1 && !I2 && I3 && !I4 && I5 || !I0 && !I2 && I3 && !I4 && I5 || I0
&& I1 && I2 && I3 || I0 && I1 && I3 && I4 && I5 || I0 && !I3 && I4 && !I5 || !I1 && I2 && !I3 && I4 && I5 || I0 && I2 &&
!I3 && !I5 || I1 && I2 && I3 && I4 && I5 || I1 && I2 && I3 && !I4 && !I5 || I1 && I2 && !I3 && I4 && !I5 || !I0 && !I1 &&
I2 && I3 && !I4;
break;
//64'hA16387FB3B48B4C6 - Bit 2
case 8:
Out = I0 && !I1 && !I2 && !I3 && !I4 || !I1 && I2 && I3 && !I5 || I0 && I1 && !I2 && I4 && !I5 || I0 && I1 && I2
&& !I4 || !I0 && I1 && I2 && !I3 || !I1 && !I3 && !I4 && I5 || !I0 && I1 && !I2 && I3 && !I4 || !I1 && !I2
&& I3 && I4 && !I5 || !I1 && !I2 && !I4 && I5 || !I1 && !I2 && !I3 && I5 || I0 && I2 && I3 && I4 && I5 || !I0
&& !I1 && !I2 && I3 && I4 || I0 && !I3 && !I4 && I5 || I0 && !I1 && I2 && I4 && I5 || !I0 && I1 && !I3 && !I4
&& !I5;
break;
//64'h23A869A2A428C424 - Bit 2
case 9:
Out = I0 && !I1 && !I3 && !I4 && I5 || !I0 && I1 && !I2 && !I4 && !I5 || I0 && !I1 && I2 && !I3 || !I0 && !I1 && !I2
&& I3 && I5 || I0 && I1 && !I2 && I3 && !I4 && I5 || !I0 && I1 && I2 && I3 && !I4 || I0 && I1 && !I2 && !I3 && I4
|| !I0 && I1 && !I2 && I3 && !I5 || I0 && I1 && I2 && I3 && !I5 || I0 && !I1 && I2 && I4 || I0 && I2 && !I3 && I5
|| I0 && !I1 && I2 && I3 && I5 || I0 && !I1 && I3 && I4 && I5;
break;
//64'h577D64E03B0C3FFB - Bit 2
case 10:
Out = I1 && !I2 && !I3 && I4 || !I1 && !I2 && I3 && I4 || !I1 && !I4 && !I5 || !I0 && I4 && I5 || I1 && I2 && !I3 &&
!I4 || I0 && I1 && !I2 && !I5 || !I1 && I3 && !I5 || I0 && !I1 && I2 && !I4 && I5 || !I0 && I1 && I3 && I5 ||
!I2 && I3 && !I4 && !I5 || I0 && !I1 && I2 && !I3 && I5;
break;
//64'hAC39B6C0D6CE2EFC - Bit 2
case 11:
Out = !I0 && I2 && I3 && I4 && !I5 || I0 && !I1 && I3 && !I4 || !I0 && I1 && !I2 && I3 || !I1 && I2 && I3 && !I4 && I5 ||
!I0 && !I1 && !I3 && I4 && I5 || I1 && !I3 && !I5 || I0 && I2 && I3 && I5 || I1 && I2 && !I3 && !I4 || !I1 && I2
&& !I3 && !I4 && !I5 || I0 && I1 && !I2 && I4 && I5 || I0 && !I1 && !I2 && I4 && !I5 || I1 && !I2 && !I4 && !I5 || I0
&& I1 && I2 && I3 && I4 || I0 && !I1 && I2 && I4 && I5;
break;
//64'h109020A2193D586A - Bit 3
case 12:
Out = I0 && !I1 && !I3 && !I4 || !I0 && I1 && I2 && !I4 && !I5 || I0 && I1 && !I2 && !I5 || I0 && !I1 && I2 && !I4 && I5 || I0
&& I1 && I2 && !I3 && I5 || !I0 && !I1 && I4 && !I5 || !I0 && !I1 && I2 && I4 || I0 && !I1 && I2 && !I3 && !I5 || !I0 && I2
&& I3 && !I4 && !I5 || I1 && !I2 && !I3 && I4 && !I5;
break;
//64'h2568EA2EFFA8527D - Bit 3
case 13:
Out = !I0 && !I3 && !I4 && !I5 || I1 && !I2 && !I3 && !I4 || !I0 && I1 && I2 && !I3 && I4 && I5 || I3 && I4 && !I5 || I0 && !I1 &&
I2 && !I3 || I0 && !I2 && !I4 && I5 || I0 && I1 && I4 && !I5 || !I0 && I2 && I3 && !I5 || !I0 && !I2 && I3 && I4 || I0 && I2 &&
I3 && !I4 && I5 || I0 && !I1 && I2 && I4 || I0 && I1 && !I2 && !I3 || I1 && I2 && I3 && !I4 && I5 || I0 && !I1 && !I2 && I3 && !I5;
break;
//64'hE9DA849CF6AC6C1B - Bit 3
case 14:
Out = I0 && !I1 && I2 && I3 && !I5 || !I0 && I1 && I3 && !I5 || I0 && I2 && I4 && !I5 || I0 && !I1 && I3 && I4 && !I5 || I0 && I1 && I2
&& I5 || I0 && !I2 && !I3 && I4 && I5 || !I0 && !I1 && !I2 && I3 && I4 && I5 || I0 && I1 && !I2 && !I3 || I1 && I2 && I4 && I5 ||
!I0 && I1 && !I2 && !I4 && I5 || !I0 && !I1 && I2 && !I3 && I5 || !I1 && !I2 && !I3 && !I4 && !I5 || I2 && I3 && I4 && !I5 ||
I0 && I1 && I3 && I4 && I5 || I0 && I2 && I3 && I4 && I5 || I0 && I1 && !I2 && !I4 && !I5 || I1 && !I2 && !I3 && I4 && !I5 || !I0
&& !I1 && I2 && !I3 && !I4;
break;
//64'h4E9DDB76C892FB1B - Bit 3
case 15:
Out = I0 && !I1 && !I2 && !I3 && !I5 || I0 && !I2 && I3 && I5 || I0 && I1 && I3 && !I5 || !I0 && I1 && I2 && I3 || !I0 && !I1 && I2 &&
!I4 || I1 && !I2 && I4 && I5 || !I1 && !I2 && !I4 && !I5 || !I0 && !I1 && I2 && !I3 || I0 && I1 && I2 && !I3 && I4 || I0 && !I1
&& !I3 && !I4 && I5 || !I0 && I1 && !I3 && !I4 && I5 || I0 && I1 && I3 && !I4 || I0 && I3 && !I4 && !I5 || I0 && !I2 && !I4 && !I5
|| !I1 && !I2 && I3 && !I4 && I5 || !I0 && !I2 && !I3 && I4 && I5;
break;
//64'hC2B0F97752B8B11E - Bit 4
case 16:
Out = I0 && I2 && I3 && !I4 || I0 && !I1 && !I2 && I3 && I4 || I0 && I1 && I3 && !I4 && I5 || I0 && I2 && !I3 && I4 || !I0 &&
!I1 && I2 && !I5 || !I1 && !I3 && !I4 && I5 || I1 && I2 && I3 && I5 || !I0 && !I1 && I3 && !I4 || I0 && I1 && !I2 && !I3
&& !I5 || !I0 && I1 && !I2 && !I3 && !I4 || !I1 && I2 && !I3 && I4 || !I0 && I1 && I2 && I3 && I4 || I0 && !I2 && !I3 &&
!I4 && !I5 || !I0 && !I3 && !I4 && I5;
break;
//64'hF7F17A494CE30F58 - Bit 4
case 17:
Out = I0 && I1 && !I2 && !I4 || !I0 && I2 && !I3 && !I4 && !I5 || !I2 && I3 && !I4 && !I5 || !I0 && !I1 && !I2 && !I3 && I5 ||
I0 && I2 && I4 && I5 || !I0 && I1 && I2 && I4 || I0 && !I1 && I3 && I5 || !I0 && I2 && I3 && I5 || I0 && I2 && !I3 && I4 ||
!I0 && I1 && I3 && I4 || !I0 && !I1 && I4 && I5 || !I1 && !I2 && !I3 && I4 && !I5 || !I0 && I1 && I2 && !I3 || I1 && !I2 &&
I3 && !I5;
break;
//64'h2624B286BC48ECB4 - Bit 4
case 18:
Out = !I1 && I2 && !I3 && !I4 && !I5 || I1 && I3 && !I4 && !I5 || I0 && I1 && !I2 && I4 && !I5 || !I0 && I1 && I2 && !I3 && I4 &&
!I5 || !I1 && I2 && I3 && I4 && !I5 || I0 && !I1 && !I2 && !I4 && I5 || !I1 && I2 && I3 && !I4 && I5 || I0 && !I1 && I2 && I4 &&
I5 || I0 && !I1 && I3 && I5 || I0 && I1 && I2 && !I4 || I0 && I2 && I3 && !I5 || !I0 && I1 && !I2 && I3 && I4 || !I0 && I1 &&
!I2 && !I3 && I5 || !I0 && I1 && !I2 && !I4 && !I5;
break;
//64'hF210A3AECE472E53 - Bit 4
case 19:
Out = I1 && !I2 && !I3 && !I4 && I5 || !I1 && !I2 && I3 && !I4 && I5 || !I0 && !I1 && I2 && I4 && I5 || I1 && I2 && I3 && I4 || I0
&& !I2 && I3 && !I5 || !I1 && !I2 && !I3 && !I5 || I0 && I2 && I3 && I5 || !I0 && I1 && I4 && !I5 || I0 && !I3 && !I4 && I5 ||
!I0 && I2 && !I3 && !I4 && !I5 || I0 && !I1 && I3 && I5 || I0 && !I1 && I3 && !I4 || I1 && !I2 && I3 && !I5;
break;
//64'hF8045F7B6D98DD7F - Bit 5
case 20:
Out = !I0 && !I1 && I2 && !I3 && !I5 || I0 && I1 && !I3 && I4 && !I5 || !I0 && !I2 && I3 && !I5 || I0 && !I1 && I2 && I3 && I4 ||
!I0 && I1 && !I2 && !I3 && I4 && I5 || !I0 && I2 && !I4 || !I1 && !I3 && !I4 || I0 && I1 && !I2 && !I4 || I2 && I3 && I4 &&
I5 || !I0 && !I2 && I3 && !I4 || I0 && I1 && !I2 && I3 && I4 || !I2 && !I3 && !I4 && !I5 || !I0 && I1 && I2 && I3 || I1 && I3
&& !I4 && !I5 || I0 && !I2 && !I4 && I5;
break;
//64'h6BC2AA4E0D787AA4 - Bit 5
case 21:
Out = !I0 && I1 && !I2 && !I3 && !I4 || I0 && I2 && !I3 && !I4 && !I5 || !I0 && I2 && I3 && !I4 && !I5 || I0 && I1 && !I2 && I4 &&
!I5 || I1 && I2 && !I3 && I4 && I5 || !I0 && I1 && I2 && I4 && I5 || I0 && !I2 && I3 && !I4 || I0 && !I1 && !I2 && I5 || I0 &&
!I1 && I3 && !I4 || !I1 && I2 && !I3 && I4 && !I5 || !I0 && !I2 && I3 && I4 && !I5 || I0 && I1 && !I2 && I3 || !I0 && I1 && I2
&& !I3 && I4 || !I0 && !I1 && !I2 && I3 && I4 || I0 && !I2 && !I3 && !I4 && I5 || I0 && I1 && I3 && !I4 && I5 || I0 && !I1 && I2
&& I3 && I5 || !I0 && I1 && I2 && !I3 && I5;
break;
//64'h7D8DCC4706319E08 -Bit 5
case 22:
Out = I0 && I1 && !I2 && !I4 && !I5 || !I0 && !I1 && I2 && I3 && !I4 && !I5 || !I1 && I2 && !I3 && I4 && !I5 || I0 && !I1 && !I2 && I3
&& !I5 || !I1 && !I2 && !I3 && !I4 && I5 || !I0 && I1 && !I4 && I5 || I0 && I1 && !I3 && I4 && I5 || !I1 && I2 && I3 && I4 && I5 ||
!I0 && !I2 && I4 && I5 || I0 && I1 && I3 && !I4 || !I0 && I1 && !I2 && I3 || I0 && I1 && !I2 && I3 && I5 || !I0 && I1 && I2 && I3 &&
I5 || !I0 && !I1 && !I3 && I4 && !I5;
break;
//64'h54B248130B4F256F - Bit 5
case 23:
Out = !I2 && !I3 && !I5 || I0 && !I1 && I2 && !I4 && !I5 || I0 && I1 && !I2 && I3 && !I4 && I5 || !I0 && I1 && I2 && I3 && I5 || I0 && I2
&& !I3 && I4 && I5 || !I0 && I1 && I3 && I4 && I5 || !I0 && I1 && !I3 && !I5 || !I1 && !I2 && I4 && !I5 || !I0 && !I2 && !I4 && !I5
|| !I1 && !I2 && !I3 && !I4 || !I0 && !I1 && I2 && I4 && I5 || I0 && I1 && !I2 && I4 && !I5 || I0 && !I1 && !I3 && I4 && I5 || !I0
&& !I1 && I2 && !I3 && I5;
break;
//64'h980A3CC2C2FDB4FF - Bit 6
case 24:
Out = I0 && !I1 && !I2 && I3 && I4 && !I5 || !I1 && I2 && I3 && !I4 || !I0 && !I1 && I2 && I3 && I5 || !I3 && !I4 && !I5 || I1 &&
!I3 && I4 && !I5 || I0 && I1 && I2 && !I5 || I1 && I2 && !I3 && !I4 || !I1 && I2 && !I3 && !I5 || I0 && I1 && I3 && I4 && I5
|| I1 && !I2 && I3 && !I4 && I5 || I0 && !I2 && !I3 && I4 && I5 || !I0 && !I3 && I4 && !I5 || I1 && I2 && I3 && I4 && !I5 ||
!I0 && I1 && !I2 && I3 && !I4 || I0 && !I1 && !I2 && !I3 && I5;
break;
//64'hE4851B3BF3AB2560 - Bit 6
case 25:
Out = !I0 && I1 && I2 && !I3 && !I4 && !I5 || !I0 && !I2 && I3 && !I4 && !I5 || I0 && !I1 && I2 && !I5 || I0 && !I3 && I4 && !I5
|| I0 && I1 && I2 && I4 || I0 && !I2 && !I4 && I5 || !I1 && I3 && I4 && !I5 || !I1 && !I3 && !I4 && I5 || !I0 && I1 && I2 &&
I3 && I4 || !I0 && I1 && !I2 && I4 && I5 || !I0 && !I1 && I3 && !I4 && I5 || !I0 && !I1 && !I2 && !I3 && I4 || I0 && I2 && I3
&& I4 && I5;
break;
//64'h3F6BCB91B30DB559 - Bit 6
case 26:
Out = I0 && I1 && !I2 && !I3 && !I5 || !I0 && I2 && !I3 && !I4 && !I5 || !I0 && !I2 && I3 && !I4 && !I5 || I0 && I1 && I2 && !I4 &&
I5 || I1 && I2 && I3 && !I4 && I5 || !I0 && I1 && I2 && !I3 && I4 && I5 || !I0 && !I1 && !I2 || I0 && I2 && I3 && !I5 || I0 &&
!I2 && I3 && I5 || I0 && !I1 && I4 && I5 || !I1 && I2 && I3 && !I5 || I0 && !I1 && I3 && I4 || I0 && !I2 && I4 && I5 || !I0 &&
!I1 && !I3 && !I4 || I1 && !I2 && I3 && I4 && I5 || !I1 && I2 && I3 && I4 && I5 || I1 && !I2 && !I3 && I4 && !I5;
break;
//64'h21E0B83325591782 - Bit 6
case 27:
Out = I0 && I1 && I2 && !I3 && !I4 && !I5 || !I0 && !I2 && I3 && !I5 || I0 && I1 && !I2 && !I3 && I4 && !I5 || I0 && !I1 && I2 &&
I3 && I4 || !I1 && !I3 && !I4 && I5 || I0 && I1 && I3 && !I4 && I5 || !I0 && !I1 && !I2 && I3 && I4 || !I0 && I1 && I2 && !I3
&& I4 || I0 && !I1 && I2 && I5 || !I0 && !I1 && I2 && I3 && !I4 || I0 && !I1 && !I2 && !I4 && !I5 || !I0 && !I1 && !I3 && I4 &&
!I5 || I0 && I2 && !I3 && I4 && I5;
break;
//64'h5CAA2EC7BF977090 - Bit 7
case 28:
Out = !I0 && !I1 && I2 && !I5 || I0 && I1 && I2 && !I3 || !I0 && I2 && I3 && !I4 && !I5 || I0 && !I3 && I4 && I5 || I0 && I3 && I4 && !I5
|| I1 && !I2 && I3 && I5 || !I0 && !I2 && I4 && !I5 || !I0 && I2 && I3 && I4 && I5 || I0 && !I1 && I2 && I3 && !I4 || I0 && !I1 && !I2
&& !I4 && I5 || !I0 && I1 && !I3 && !I4 && I5 || !I1 && !I2 && I4 && !I5 || !I1 && !I2 && !I3 && !I4 && I5;
break;
//64'hE7BAC28F866AAC82 - Bit 7
case 29:
Out = I0 && !I1 && !I2 && !I3 || I0 && I1 && I2 && !I4 || I0 && I2 && I3 && !I4 && !I5 || !I0 && I1 && I2 && !I3 && I4 && !I5 || !I2 && !I3
&& !I4 && I5 || !I1 && I2 && !I3 && I4 && I5 || I1 && I2 && I3 && I5 || I0 && I2 && I4 && I5 || I1 && !I2 && I3 && !I4 && !I5 || I0 &&
!I2 && !I3 && I4 || I0 && !I1 && !I2 && I4 || !I0 && I1 && !I2 && I3 && I4 || I0 && I1 && I2 && I3 || I0 && !I1 && !I3 && I4 || I0 && !I1
&& !I2 && I3 && I5 || !I1 && !I2 && I3 && I4 && I5;
break;
//64'h4CB3770196CA0329 - Bit 7
case 30:
Out = !I0 && !I1 && !I2 && !I4 || I0 && I1 && !I2 && !I3 && !I5 || I0 && !I1 && I2 && !I3 && !I4 && !I5 || I1 && I2 && !I3 && I4 && !I5 || !I0
&& I1 && !I2 && I3 && I4 || !I0 && !I1 && I2 && I3 && I4 && !I5 || I0 && I1 && I2 && I4 && !I5 || !I1 && !I3 && I4 && I5 || I1 && !I2 && I3
&& I4 && I5 || !I0 && I1 && I3 && I5 || !I1 && I3 && !I4 && I5 || I0 && !I1 && !I2 && I3 && !I5 || I0 && I1 && I2 && !I3 && I4 || I0 && !I2
&& !I3 && I4 && !I5;
break;
//64'h52379DE7B844E3E1 - Bit 7
case 31:
Out = !I0 && !I1 && !I2 && !I4 || I0 && I1 && I3 && I4 && !I5 || I0 && !I1 && !I2 && I4 && I5 || !I0 && I2 && I3 && I4 && I5 || I0 && I2 && !I4
&& !I5 || I0 && !I1 && !I3 && I5 || I1 && I2 && !I4 && !I5 || !I1 && I2 && I3 && I4 && !I5 || !I0 && I1 && !I3 && I4 && !I5 || !I0 && !I2
&& !I4 && I5 || I0 && I1 && I2 && !I4 && I5 || !I0 && !I2 && !I3 && I4 && I5 || I0 && I1 && I3 && !I4 && I5 || I1 && I2 && !I3 && !I4 && I5
|| !I0 && !I1 && I2 && I3 && I5 || !I1 && I2 && !I3 && I4 && I5 || I0 && !I1 && I3 && !I4 && !I5;
break;
}
if (Out == 0 && zeros[choice] == 1) {
dictionary[dicIndex + (720 * choice)][length[choice]] = 48;
length[choice]++;
}
else if (Out == 1){
zeros[choice] = 1;
dictionary[dicIndex + (720 * choice)][length[choice]] = 49;
length[choice]++;
}
}
//Swap the values at the two addresses given
void swap(int *x, int *y) {
int temp;
temp = *x;
*x = *y;
*y = temp;
}
//Recursively generate all permutations of the given numbers
void generatePermutations(int *a, int l, int r) {
int i;
for (int i = 0; i < 32; i++) {
length[i] = 0;
zeros[i] = 0;
}
if(r == l) {
for (int i = 1; i >= 0 ; i--) {
//BEL pin A6
*inputs[a[0]] = i;
for (int j = 1; j >= 0; j--) {
//BEL pin A5
*inputs[a[1]] = j;
for (int k = 1; k >= 0; k--) {
//BEL pin A4
*inputs[a[2]] = k;
for (int l = 1; l >=0; l--) {
//BEL pin A3
*inputs[a[3]] = l;
for (int m = 1; m >= 0; m--) {
//BEL pin A2
*inputs[a[4]] = m;
for (int n = 1; n>=0; n--) {
//BEL pin A1
*inputs[a[5]] = n;
for(int i = 0; i < MAXTABLES; i++) {
dictionaryUpdate(i);
}
}
}
}
}
}
}
dicIndex++;
}
else {
for (i = l; i <= r; i++)
{
swap((a+l), (a+i));
generatePermutations(a, l+1, r);
swap((a+l), (a+i)); //backtrack
}
}
}
int unusedLUTs(struct tile tile) {
for(int i = 0; i < 8; i++) {
if(tile.LUT6s[i] == 2)
return i;
}
return -1;
}
struct tile * closestUnusedLUT(int x, int y) {
struct tile * unusedTile;
int testResult;
int searching = 1;
int searchOffset = 1;
unusedTile = cartTiles[x][y][0];
testResult = unusedLUTs(*unusedTile);
if(testResult > -1) {
unusedTile->LUT6s[testResult] = 4;
return unusedTile;
}
//If there is a second tile at the same (x,y) check if it's in use
if(tilesSet[x][y][1] == 1) {
unusedTile = cartTiles[x][y][1];
testResult = unusedLUTs(*unusedTile);
if(testResult > -1) {
unusedTile->LUT6s[testResult] = 4;
return unusedTile;
}
}
while(searching == 1) {
searching = 0;
for(int i = -searchOffset; i < searchOffset + 1; i++) {
for(int j = -searchOffset; j < searchOffset + 1; j++) {
if(i != 0 || j != 0) {
if(abs(x + i) > searchOffset - 1 || abs(y + j) > searchOffset - 1) {
if(searchOffset < MAX_Y - y && y - searchOffset >= 0 &&
searchOffset < MAX_X - x && x - searchOffset >= 0) {
searching = 1;
unusedTile = cartTiles[x + i][y + j][0];
testResult = unusedLUTs(*unusedTile);
if(testResult > -1) {
unusedTile->LUT6s[testResult] = 4;
return unusedTile;
}
if(tilesSet[x + i][y + j][1] == 1) {
unusedTile = cartTiles[x + i][y + j][1];
testResult = unusedLUTs(*unusedTile);
if(testResult > -1) {
unusedTile->LUT6s[testResult] = 4;
return unusedTile;
}
}
}
}
}
}
}
searchOffset++;
}
}
int main (int argc, char *argv[]) {
//Open the json file to be processed and check success
if(argc == 2) {
char fileName[40] = "./";
RouteData = fopen(strcat(fileName, argv[1]), "r");
if(RouteData == NULL) {
printf("Unable to open file\n");
exit(EXIT_FAILURE);
}
}
else {
printf("Please supply a file path to be processed\n");
exit(EXIT_FAILURE);
}
//Read all connections from JSON file and store in connections[]
while(strcmp(word, "LUT_VALUES") != 0) {
//Find the start of the next word
getNextWord(word);
//"attributes" indicates the begining of a connection
if (strcmp(word, "attributes") == 0) {
getNextWord(word);
//Read and set the begining and end tiles and names
connections[connectionIndex] = newConnection();
setTileAndName(connections[connectionIndex].beginTile, connections[connectionIndex].beginName);
setTileAndName(connections[connectionIndex].endTile, connections[connectionIndex].endName);
connectionIndex++;
}
}
//TO DO - move this to somewhere more relevent
//Write command to tcl script to block all in use ports
FILE * blockingScript = fopen("./Path Search/blockingScript.tcl", "w");
int testX, testY;
char tileTest[10];
char tempTile[30];