aboutsummaryrefslogtreecommitdiff
path: root/src/sc_interp.c
blob: 4b74fef675fc79a8e6c31663747f4160c4f61bcd (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
/*
 * sc_interp.c
 *
 * Copyright © 2014 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 <assert.h>
#include <stdlib.h>
#include <string.h>
#include <pango/pangocairo.h>
#include <gdk/gdk.h>

#include "sc_parse.h"
#include "sc_interp.h"
#include "shape.h"
#include "wrap.h"

struct _scinterp
{
	PangoContext *pc;
	PangoLanguage *lang;

	struct slide_constants *s_constants;
	struct presentation_constants *p_constants;

	struct sc_font *fontstack;
	int n_fonts;
	int max_fonts;

	struct wrap_line *boxes;
};


static void set_font(SCInterpreter *scin, const char *font_name)
{
	PangoFontMetrics *metrics;
	struct sc_font *scf;

	scf = &scin->fontstack[scin->n_fonts-1];

	scf->fontdesc = pango_font_description_from_string(font_name);
	if ( scf->fontdesc == NULL ) {
		fprintf(stderr, "Couldn't describe font.\n");
		return;
	}
	scf->font = pango_font_map_load_font(pango_context_get_font_map(scin->pc),
	                                     scin->pc, scf->fontdesc);
	if ( scf->font == NULL ) {
		fprintf(stderr, "Couldn't load font.\n");
		return;
	}

	/* FIXME: Language for box */
	metrics = pango_font_get_metrics(scf->font, NULL);
	scf->ascent = pango_font_metrics_get_ascent(metrics);
	scf->height = scf->ascent + pango_font_metrics_get_descent(metrics);
	pango_font_metrics_unref(metrics);

	scf->free_font_on_pop = 1;
}


/* This sets the colour for the font at the top of the stack */
static void set_colour(SCInterpreter *scin, const char *colour)
{
	GdkRGBA col;
	struct sc_font *scf = &scin->fontstack[scin->n_fonts-1];

	if ( colour == NULL ) {
		printf("Invalid colour\n");
		scf->col[0] = 0.0;
		scf->col[1] = 0.0;
		scf->col[2] = 0.0;
		scf->col[3] = 1.0;
		return;
	}

	gdk_rgba_parse(&col, colour);

	scf->col[0] = col.red;
	scf->col[1] = col.green;
	scf->col[2] = col.blue;
	scf->col[3] = col.alpha;
}


static void copy_top_font(SCInterpreter *scin)
{
	if ( scin->n_fonts == scin->max_fonts ) {

		struct sc_font *stack_new;

		stack_new = realloc(scin->fontstack, sizeof(struct sc_font)
		                     * ((scin->max_fonts)+8));
		if ( stack_new == NULL ) {
			fprintf(stderr, "Failed to push font or colour.\n");
			return;
		}

		scin->fontstack = stack_new;
		scin->max_fonts += 8;

	}

	/* When n_fonts=0, we leave the first font uninitialised.  This allows
	 * the stack to be "bootstrapped", but requires the first caller to do
	 * set_font and set_colour straight away. */
	if ( scin->n_fonts > 0 ) {
		scin->fontstack[scin->n_fonts] = scin->fontstack[scin->n_fonts-1];
	}

	/* This is a copy, so don't free it later */
	scin->fontstack[scin->n_fonts].free_font_on_pop = 0;

	scin->n_fonts++;
}


static void push_font(SCInterpreter *scin, const char *font_name)
{
	copy_top_font(scin);
	set_font(scin, font_name);
}


static void push_colour(SCInterpreter *scin, const char *colour)
{
	copy_top_font(scin);
	set_colour(scin, colour);
}


static void pop_font_or_colour(SCInterpreter *scin)
{
	struct sc_font *scf = &scin->fontstack[scin->n_fonts-1];

	if ( scf->free_font_on_pop ) {
		pango_font_description_free(scf->fontdesc);
	}

	scin->n_fonts--;
}


SCInterpreter *sc_interp_new(PangoContext *pc)
{
	SCInterpreter *scin;

	scin = malloc(sizeof(SCInterpreter));
	if ( scin == NULL ) return NULL;

	scin->fontstack = NULL;
	scin->n_fonts = 0;
	scin->max_fonts = 0;

	scin->pc = pc;
	scin->s_constants = NULL;
	scin->p_constants = NULL;

	/* FIXME: Determine proper language (somehow...) */
	scin->lang = pango_language_from_string("en_GB");

	scin->boxes = malloc(sizeof(struct wrap_line));
	if ( scin->boxes == NULL ) {
		fprintf(stderr, "Failed to allocate boxes.\n");
		return NULL;
	}
	initialise_line(scin->boxes);

	/* The "ultimate" default font */
	push_font(scin, "Sans 12");
	set_colour(scin, "#000000");

	return scin;
}


void sc_interp_destroy(SCInterpreter *scin)
{
	/* Empty the stack */
	while ( scin->n_fonts > 0 ) {
		pop_font_or_colour(scin);
	}

	free(scin);
}


int sc_interp_add_blocks(SCInterpreter *scin, const SCBlock *bl)
{
	while ( bl != NULL ) {

		const char *name = sc_block_name(bl);
		const char *options = sc_block_options(bl);
		const char *contents = sc_block_contents(bl);
		SCBlock *child = sc_block_child(bl);

		if ( name == NULL ) {
			split_words(scin->boxes, scin->pc, contents,
			            scin->lang, 1,
			            &scin->fontstack[scin->n_fonts-1]);

		} else if ( (strcmp(name, "font")==0) && (child == NULL) ) {
			set_font(scin, options);

		} else if ( (strcmp(name, "font")==0) && (child != NULL) ) {
			push_font(scin, options);
			sc_interp_add_blocks(scin, child);
			pop_font_or_colour(scin);

		} else if ( (strcmp(name, "fgcol")==0) && (child == NULL) ) {
			set_colour(scin, options);

		} else if ( (strcmp(name, "fgcol")==0) && (child != NULL) ) {
			push_colour(scin, options);
			sc_interp_add_blocks(scin, child);
			pop_font_or_colour(scin);

#if 0
		} else if ( (strcmp(name, "image")==0)
		         && (contents != NULL) && (b->options != NULL) ) {
			int w, h;
			if ( get_size(b->options, fr, &w, &h) == 0 ) {
				add_image_box(boxes, b->contents, offset, w, h,
				              editable);
			}

		} else if ( strcmp(name, "slidenumber")==0) {
			char *tmp = malloc(64);
			if ( tmp != NULL ) {
				snprintf(tmp, 63, "%i",
				         slide_constants->slide_number);
				add_wrap_box(boxes, tmp, offset,
					     WRAP_SPACE_NONE, pc,
					     &fonts->stack[fonts->n_fonts-1],
			                     0);
			} /* else go away and sulk about it */
#endif

		} else {

			fprintf(stderr, "Don't know what to do with this:\n");
			show_sc_block(bl, "");

		}

		bl = sc_block_next(bl);

	}

	return 0;
}


struct wrap_line *sc_interp_get_boxes(SCInterpreter *scin)
{
	return scin->boxes;
}