-
Notifications
You must be signed in to change notification settings - Fork 0
/
AMC-buildpdf.cc
203 lines (180 loc) · 6.63 KB
/
AMC-buildpdf.cc
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
/*
Copyright (C) 2013-2022 Alexis Bienvenüe <[email protected]>
This file is part of Auto-Multiple-Choice
Auto-Multiple-Choice is free software: you can redistribute it
and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, either version 2 of
the License, or (at your option) any later version.
Auto-Multiple-Choice is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with Auto-Multiple-Choice. If not, see
<http://www.gnu.org/licenses/>.
*/
#include "buildpdf.cc"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <string>
#ifdef NEEDS_GETLINE
#include<minimal-getline.c>
#endif
void strip_endline(char *line) {
char *endline;
if((endline = strchr(line, '\r'))) *endline = '\0';
if((endline = strchr(line, '\n'))) *endline = '\0';
}
int main(int argc, char** argv )
{
size_t command_t;
char* command = NULL;
std::string saved_text = "";
int processing_error = 0;
int finished = 0;
double width_in_pixels, height_in_pixels;
double dppt;
double line_width = -1.0;
double a, b, c, d, e, f;
long int i, n;
#if !GLIB_CHECK_VERSION(2, 35, 0)
g_type_init ();
#endif
int ch;
while ((ch = getopt(argc, argv, "d:h:w:l:")) != -1) {
switch(ch) {
case 'd': dppt = atof(optarg) / 72.0; break;
case 'w': width_in_pixels = atof(optarg); break;
case 'h': height_in_pixels = atof(optarg); break;
case 'l': line_width = atof(optarg); break;
}
}
BuildPdf PDF(width_in_pixels, height_in_pixels, dppt);
PDF.set_line_width(line_width);
while(!finished) {
getline(&command, &command_t, stdin);
strip_endline(command);
printf("> %s\n", command);
if(strcmp(command, "quit") == 0) {
printf(": Exit!\n");
finished = 1;
} else if(processing_error == 0) {
i = 0;
if(strncmp(command, "output ", 7) == 0) {
processing_error = PDF.start_output(command + 7);
} else if(strcmp(command, "debug") == 0) {
PDF.set_debug(1);
} else if(strncmp(command, "page png ", 9) == 0) {
processing_error = PDF.new_page_from_png(command + 9);
} else if(strncmp(command, "page img ", 9) == 0) {
processing_error = PDF.new_page_from_image(command + 9);
} else if(strncmp(command, "load pdf ", 9) == 0) {
processing_error = PDF.load_pdf(command + 9);
} else if(sscanf(command, "page pdf %ld", &i) == 1) {
processing_error = PDF.new_page_from_pdf(i);
} else if(strcmp(command, "matrix identity") == 0) {
PDF.identity_matrix();
} else if(sscanf(command, "matrix %lf %lf %lf %lf %lf %lf",
&a, &b, &c, &d, &e, &f) == 6) {
PDF.set_matrix_to_scan(a, b, c, d, e, f);
} else if(sscanf(command, "color %lf %lf %lf %lf",
&a, &b, &c, &d) == 4) {
PDF.color(a, b, c, d);
} else if(sscanf(command, "color %lf %lf %lf",
&a, &b, &c) == 3) {
PDF.color(a, b, c);
} else if(sscanf(command, "hcolor %lf %lf %lf",
&a, &b, &c) == 3) {
PDF.header_color(a, b, c);
} else if(sscanf(command, "rectangle %lf %lf %lf %lf",
&a, &b, &c, &d) == 4 ||
sscanf(command, "box %lf %lf %lf %lf",
&a, &b, &c, &d) == 4) {
PDF.draw_rectangle(a, b, c, d);
} else if(sscanf(command, "circle %lf %lf %lf %lf",
&a, &b, &c, &d) == 4) {
PDF.draw_circle(a, b, c, d);
} else if(sscanf(command, "mark %lf %lf %lf %lf",
&a, &b, &c, &d) == 4) {
PDF.draw_mark(a, b, c, d);
} else if(sscanf(command, "fill %lf %lf %lf %lf",
&a, &b, &c, &d) == 4) {
PDF.fill_rectangle(a, b, c, d);
} else if(sscanf(command, "line width %lf",
&a) == 1) {
PDF.set_line_width(a);
} else if(strncmp(command, "font name ", 10) == 0) {
PDF.set_font(command + 10);
} else if(sscanf(command, "margin %lf",
&a) == 1) {
PDF.set_margin(a);
} else if(sscanf(command, "max width %ld",
&i) == 1) {
PDF.set_scan_max_width(i);
} else if(sscanf(command, "max height %ld",
&i) == 1) {
PDF.set_scan_max_height(i);
} else if(strcmp(command, "embedded png") == 0) {
PDF.set_embedded_png();
} else if(strcmp(command, "embedded jpeg") == 0) {
PDF.set_embedded_jpeg();
} else if(sscanf(command, "jpeg quality %ld",
&i) == 1) {
PDF.set_jpeg_quality(i);
} else if(sscanf(command, "text rectangle %lf %lf %lf %lf %ln",
&a, &b, &c, &d, &i) >= 4) {
processing_error = PDF.draw_text_rectangle(a, b, c, d, command + i);
} else if(sscanf(command, "text %lf %lf %lf %lf %ln",
&a, &b, &c, &d, &i) >= 4) {
PDF.draw_text(a, b, c, d, command + i);
} else if(sscanf(command, "nexttext %lf %lf %ln", &a, &b, &i) >= 2) {
PDF.draw_next_text(a, b, command + i);
} else if(sscanf(command, "hnexttext %lf %lf %ln", &a, &b, &i) >= 2) {
PDF.draw_next_text(a, b, command + i, 1);
} else if(sscanf(command, "text margin %ld %lf %lf %lf %ln",
&n, &b, &c, &d, &i) >= 4) {
PDF.draw_text_margin(n, b, c, d, command + i);
} else if(sscanf(command, "stext margin %ld %lf %lf %lf",
&n, &b, &c, &d) == 4) {
PDF.draw_text_margin(n, b, c, d, saved_text.c_str());
} else if(sscanf(command, "stext rectangle %lf %lf %lf %lf",
&a, &b, &c, &d) == 4) {
processing_error = PDF.draw_text_rectangle(a, b, c, d, saved_text.c_str());
} else if(sscanf(command, "stext %lf %lf %lf %lf",
&a, &b, &c, &d) == 4) {
PDF.draw_text(a, b, c, d, saved_text.c_str());
} else if(sscanf(command, "hstext %lf %lf %lf %lf",
&a, &b, &c, &d) == 4) {
PDF.draw_text(a, b, c, d, saved_text.c_str(), 1);
} else if(strcmp(command, "stext begin") == 0) {
saved_text = "";
while(getline(&command, &command_t, stdin) >= 0) {
strip_endline(command);
if(strcmp(command, "__END__") == 0) break;
printf(">> %s\n", command);
if(saved_text.length() > 0) saved_text += "\n";
saved_text += command;
}
} else if(strcmp(command, "show header") == 0) {
PDF.show_header();
} else if(sscanf(command, "begin header %ld %lf",
&n, &a) == 2) {
PDF.clear_header(n);
PDF.set_header_width(a);
PDF.start_header();
} else if(strcmp(command, "finish") == 0) {
PDF.close_output();
} else {
printf("! ERROR: SYNTAX => %s\n", command + i);
processing_error = 2;
}
} else {
printf("> SKIPPING: not responding due to previous error.\n");
}
printf("__END__\n");
fflush(stdout);
}
return(processing_error);
}