aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.c
blob: 139af673ea8f54be30a99a67a2eedccd1c5f3b9e (plain)
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
/*
 * storycode.c
 *
 * Copyright © 2019 Thomas White <taw@bitwiz.org.uk>
 *
 * This file is part of Colloquium.
 *
 * Colloquium 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 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */


#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdlib.h>
#include <string.h>
#include <gio/gio.h>

#include "narrative.h"
#include "slide.h"
#include "stylesheet.h"
#include "narrative_priv.h"
#include "slide_priv.h"

#include "storycode_parse.h"
#include "storycode_lex.h"


extern int scdebug;


Narrative *storycode_parse_presentation(const char *sc)
{
	YY_BUFFER_STATE b;
	Narrative *n;

	b = sc_scan_string(sc);
	//scdebug = 1;
	n = narrative_new();
	scparse(n);
	sc_delete_buffer(b);
	//narrative_debug(n);

	return n;
}


static int write_string(GOutputStream *fh, char *str)
{
	gssize r;
	GError *error = NULL;
	r = g_output_stream_write(fh, str, strlen(str), NULL, &error);
	if ( r == -1 ) {
		fprintf(stderr, "Write failed: %s\n", error->message);
		return 1;
	}
	return 0;
}


char unitc(enum length_unit unit)
{
	if ( unit == LENGTH_FRAC ) return 'f';
	if ( unit == LENGTH_UNIT ) return 'u';
	return '?';
}


const char *bgcolc(enum gradient bggrad)
{
	if ( bggrad == GRAD_NONE ) return "";
	if ( bggrad == GRAD_HORIZ ) return "HORIZONTAL ";
	if ( bggrad == GRAD_VERT ) return "VERTICAL ";
	return "?";
}


const char *alignc(enum alignment ali)
{
	if ( ali == ALIGN_LEFT ) return "left";
	if ( ali == ALIGN_CENTER ) return "center";
	if ( ali == ALIGN_RIGHT ) return "right";
	return "?";
}


static const char *maybe_alignment(enum alignment ali)
{
	if ( ali == ALIGN_INHERIT ) return "";
	if ( ali == ALIGN_LEFT ) return "[left]";
	if ( ali == ALIGN_CENTER ) return "[center]";
	if ( ali == ALIGN_RIGHT ) return "[right]";
	return "[?]";
}


static void write_run_border(GOutputStream *fh, enum text_run_type t)
{
	if ( t == TEXT_RUN_BOLD ) write_string(fh, "*");
	if ( t == TEXT_RUN_ITALIC ) write_string(fh, "/");
	if ( t == TEXT_RUN_UNDERLINE ) write_string(fh, "_");
}


static char *escape_text(const char *in)
{
	int i, j;
	size_t len;
	size_t nl = 0;
	size_t np = 0;
	const char *esc = "*/_";
	size_t n_esc = 3;
	char *out;

	len = strlen(in);
	for ( i=0; i<len; i++ ) {
		for ( j=0; j<n_esc; j++ ) {
			if ( in[i] == esc[j] ) {
				nl++;
				break;
			}
		}
	}

	out = malloc(len + nl + 1);
	if ( out == NULL ) return NULL;

	np = 0;
	for ( i=0; i<=len; i++ ) {
		for ( j=0; j<n_esc; j++ ) {
			if ( in[i] == esc[j] ) {
				out[np++] = '\\';
				break;
			}
		}
		out[np++] = in[i];
	}

	return out;
}


static void write_para(GOutputStream *fh, struct text_run *runs, int n_runs)
{
	int i;
	for ( i=0; i<n_runs; i++ ) {
		char *escaped_str;
		write_run_border(fh, runs[i].type);
		escaped_str = escape_text(runs[i].text);
		write_string(fh, escaped_str);
		free(escaped_str);
		write_run_border(fh, runs[i].type);
	}
}


static void write_text(GOutputStream *fh, SlideItem *item, int geom,
                       const char *t)
{
	char tmp[256];
	size_t indent;
	int i;

	if ( geom ) {
		snprintf(tmp, 255, "  %s[%.4g%cx%.4g%c+%.4g%c+%.4g%c]%s", t,
		         item->geom.w.len, unitc(item->geom.w.unit),
		         item->geom.h.len, unitc(item->geom.h.unit),
		         item->geom.x.len, unitc(item->geom.x.unit),
		         item->geom.y.len, unitc(item->geom.y.unit),
		         maybe_alignment(item->align));
	} else {
		snprintf(tmp, 255, "  %s%s",
		         t, maybe_alignment(item->align));
	}

	indent = strlen(tmp);
	write_string(fh, tmp);
	write_string(fh, ": ");
	write_para(fh, item->paras[0].runs, item->paras[0].n_runs);
	write_string(fh, "\n");
	for ( i=0; i<indent; i++ ) tmp[i] = ' ';
	for ( i=1; i<item->n_paras; i++ ) {
		write_string(fh, tmp);
		write_string(fh, ": ");
		write_para(fh, item->paras[i].runs, item->paras[i].n_runs);
		write_string(fh, "\n");
	}
}


static void write_image(GOutputStream *fh, SlideItem *item)
{
	char tmp[256];

	snprintf(tmp, 255, "  IMAGE[%.4g%cx%.4g%c+%.4g%c+%.4g%c]",
	         item->geom.w.len, unitc(item->geom.w.unit),
	         item->geom.h.len, unitc(item->geom.h.unit),
	         item->geom.x.len, unitc(item->geom.x.unit),
	         item->geom.y.len, unitc(item->geom.y.unit));

	write_string(fh, tmp);
	write_string(fh, ": ");
	write_string(fh, item->filename);
	write_string(fh, "\n");
}


static int write_slide(GOutputStream *fh, Slide *s)
{
	int i;

	for ( i=0; i<s->n_items; i++ ) {
		switch ( s->items[i].type ) {

			case SLIDE_ITEM_TEXT:
			write_text(fh, &s->items[i], 1, "TEXT");
			break;

			case SLIDE_ITEM_PRESTITLE:
			write_text(fh, &s->items[i], 0, "PRESTITLE");
			break;

			case SLIDE_ITEM_SLIDETITLE:
			write_text(fh, &s->items[i], 0, "SLIDETITLE");
			break;

			case SLIDE_ITEM_FOOTER:
			write_string(fh, "  FOOTER\n");
			break;

			case SLIDE_ITEM_IMAGE:
			write_image(fh, &s->items[i]);
			break;

		}
	}

	return 0;
}


static int write_item(GOutputStream *fh, struct narrative_item *item)
{
	switch ( item->type ) {

		case NARRATIVE_ITEM_TEXT:
		/* FIXME: separate alignment */
		if ( write_string(fh, ": ") ) return 1;
		write_para(fh, item->runs, item->n_runs);
		if ( write_string(fh, "\n") ) return 1;
		break;

		case NARRATIVE_ITEM_PRESTITLE:
		/* FIXME: separate alignment */
		if ( write_string(fh, "PRESTITLE: ") ) return 1;
		write_para(fh, item->runs, item->n_runs);
		if ( write_string(fh, "\n") ) return 1;
		break;

		case NARRATIVE_ITEM_BP:
		/* FIXME: separate alignment */
		if ( write_string(fh, "BP: ") ) return 1;
		write_para(fh, item->runs, item->n_runs);
		if ( write_string(fh, "\n") ) return 1;
		break;

		case NARRATIVE_ITEM_SLIDE:
		/* FIXME: separate slide size */
		if ( write_string(fh, "SLIDE {\n") ) return 1;
		if ( write_slide(fh, item->slide) ) return 1;
		if ( write_string(fh, "}\n") ) return 1;
		break;

		case NARRATIVE_ITEM_EOP:
		if ( write_string(fh, "ENDOFPRESENTATION\n") ) return 1;
		break;

	}
	return 0;
}


int storycode_write_presentation(Narrative *n, GOutputStream *fh)
{
	int i;
	char *ss_text;

	/* Stylesheet */
	ss_text = stylesheet_serialise(n->stylesheet);
	if ( ss_text == NULL ) return 1;
	if ( write_string(fh, ss_text) ) return 1;

	if ( write_string(fh, "\n") ) return 1;

	for ( i=0; i<n->n_items; i++ ) {
		if ( write_item(fh, &n->items[i]) ) return 1;
	}

	return 0;
}