-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprint-table.c
208 lines (188 loc) · 6.95 KB
/
print-table.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
/*-
* Copyright (c) 2015, Scott Cheloha.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* print-table.c - Using a mixture of information from a score_table and
* a walk_table, print a representation of the internal
* "table" used during a particular run of the
* Needleman-Wunsch algorithm.
*/
#include "dbg.h"
#include "format.h"
#include "print-table.h"
#include "score-table.h"
#include "walk-table.h"
#define UNICODE_LEFTWARDS_ARROW "\u2190"
#define UNICODE_UPWARDS_ARROW "\u2191"
#define UNICODE_NORTH_WEST_ARROW "\u2196"
static void
print_arrow(arrow_t a, int optimal_path, int col_width, int col, int row, char *s1, char *s2, int unicode)
{
switch (a) {
case left:
if (optimal_path == 1) {
set_fmt(gap_arrow_fmt);
}
printf(" %s ", (unicode == 1 ? UNICODE_LEFTWARDS_ARROW : "<"));
break;
case up:
if (optimal_path == 1) {
set_fmt(gap_arrow_fmt);
}
printf("%*s",
(unicode == 1 ? col_width + 2: col_width),
(unicode == 1 ? UNICODE_UPWARDS_ARROW : "^"));
break;
case diag:
if (optimal_path == 1) {
// If the characters match, use the matching arrow
// format. If the characters do not match, use the
// mismatching arrow format.
fmt_t f = s1[col-1] == s2[row-1] ? match_arrow_fmt : mismatch_arrow_fmt;
set_fmt(f);
}
printf(" %s ", (unicode == 1 ? UNICODE_NORTH_WEST_ARROW : "\\"));
break;
default:
unreachable();
break;
}
if (optimal_path == 1) {
reset_fmt();
}
}
static void
print_directional_row(walk_table_t *W,
int row,
char *s1,
char *s2,
int col_width,
int unicode)
{
// Start with a space as a character placeholder
printf(" ");
// Print the row's directional arrows
for (int col = 0; col < W->M; col++) {
int optimal_path = W->cells[col][row].in_optimal_path;
/* Print diagonal arrow if applicable */
if (W->cells[col][row].diag == 1) {
print_arrow(diag, optimal_path, col_width, col, row, s1, s2, unicode);
} else {
printf(" ");
}
/* Print up arrow if applicable */
if (W->cells[col][row].up == 1) {
print_arrow(up, optimal_path, col_width, col, row, s1, s2, unicode);
} else {
printf("%*s", col_width, "");
}
}
printf("\n");
}
static void
print_score_row(score_table_t *S,
walk_table_t *W,
int row,
char *s1,
char *s2,
int col_width,
int unicode)
{
/* Start with either a '-' separator (if this
is the first row of numbers, i.e. n == 0) or a letter from the side
string (s2) */
set_fmt(side_string_fmt);
printf("%c", (row == 0 ? '-' : s2[row-1]));
reset_fmt();
// Now print the scores and left arrows
for (int col = 0; col < S->M; col++) {
int optimal_path = W->cells[col][row].in_optimal_path;
/* Print left arrow if applicable */
if (W->cells[col][row].left == 1) {
print_arrow(left, optimal_path, col_width, col, row, s1, s2, unicode);
} else {
printf(" ");
}
/* Print the cell's score */
if (optimal_path == 1) {
set_fmt(opt_path_fmt);
}
printf("%+*d", col_width, S->cells[col][row].score);
if (optimal_path == 1) {
reset_fmt();
}
}
printf("\n");
}
static void
print_table_row(score_table_t *S,
walk_table_t *W,
int row,
char *s1,
char *s2,
int col_width,
int unicode)
{
print_directional_row(W, row, s1, s2, col_width, unicode);
print_score_row(S, W, row, s1, s2, col_width, unicode);
}
static void
print_top_string(score_table_t *S, char *s1, int col_width)
{
set_fmt(top_string_fmt);
printf("* %*s", col_width, "-");
for (int i = 0; i < S->M - 1; i++) {
printf(" %*s%c", col_width-1, "", s1[i]);
}
printf("\n");
}
static int
width_needed_to_print_integer(int x)
{
int w = 0;
do {
x /= 10;
w = w + 1;
} while (x != 0);
return w + 1; /* add 1 to make room for a positive/negative sign */
}
void
print_table(score_table_t *S, walk_table_t *W, char *s1, char *s2, int unicode)
{
int col_width = width_needed_to_print_integer(S->greatest_abs_val);
/* Print the top string, i.e. the first input string. */
print_top_string(S, s1, col_width);
/* Print the rest of the rows, bordered on the left by the side
* string, i.e. the second input string. */
for (int i = 0; i < S->N; i++) {
print_table_row(S, W, i, s1, s2, col_width, unicode);
}
}