5 #include "chimara-glk-private.h"
8 extern GPrivate *glk_data_key;
10 /* Forward declarations */
11 static int finish_text_buffer_line_input(winid_t win, gboolean emit_signal);
12 static int finish_text_grid_line_input(winid_t win, gboolean emit_signal);
13 static void cancel_old_input_request(winid_t win);
15 /* Internal function: code common to both flavors of char event request */
17 request_char_event_common(winid_t win, gboolean unicode)
19 VALID_WINDOW(win, return);
20 g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
22 cancel_old_input_request(win);
24 flush_window_buffer(win);
26 if(win->type == wintype_TextBuffer) {
27 /* Move the input_position mark to the end of the window_buffer */
28 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
29 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
31 gtk_text_buffer_get_end_iter(buffer, &end_iter);
32 gtk_text_buffer_move_mark(buffer, input_position, &end_iter);
36 win->input_request_type = unicode? INPUT_REQUEST_CHARACTER_UNICODE : INPUT_REQUEST_CHARACTER;
37 g_signal_handler_unblock( win->widget, win->char_input_keypress_handler );
40 gtk_widget_grab_focus( GTK_WIDGET(win->widget) );
43 /* Emit the "waiting" signal to let listeners know we are ready for input */
44 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
45 g_signal_emit_by_name(glk_data->self, "waiting");
49 * glk_request_char_event:
50 * @win: A window to request char events from.
52 * Request input of a Latin-1 character or special key. A window cannot have
53 * requests for both character and line input at the same time. Nor can it have
54 * requests for character input of both types (Latin-1 and Unicode). It is
55 * illegal to call glk_request_char_event() if the window already has a pending
56 * request for either character or line input.
59 glk_request_char_event(winid_t win)
61 request_char_event_common(win, FALSE);
65 * glk_request_char_event_uni:
66 * @win: A window to request char events from.
68 * Request input of a Unicode character or special key. See
69 * glk_request_char_event().
72 glk_request_char_event_uni(winid_t win)
74 request_char_event_common(win, TRUE);
78 * glk_cancel_char_event:
79 * @win: A window to cancel the latest char event request on.
81 * This cancels a pending request for character input. (Either Latin-1 or
82 * Unicode.) For convenience, it is legal to call glk_cancel_char_event() even
83 * if there is no charcter input request on that window. Glk will ignore the
87 glk_cancel_char_event(winid_t win)
89 VALID_WINDOW(win, return);
90 g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
92 if(win->input_request_type == INPUT_REQUEST_CHARACTER || win->input_request_type == INPUT_REQUEST_CHARACTER_UNICODE)
94 win->input_request_type = INPUT_REQUEST_NONE;
95 g_signal_handler_block( win->widget, win->char_input_keypress_handler );
99 /* Internal function: Request either latin-1 or unicode line input, in a text grid window. */
101 text_grid_request_line_event_common(winid_t win, glui32 maxlen, gboolean insert, gchar *inserttext)
103 /* All outstanding printing _must_ be finished before putting an input entry
105 flush_window_buffer(win);
109 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
111 GtkTextMark *cursor = gtk_text_buffer_get_mark(buffer, "cursor_position");
112 GtkTextIter start_iter, end_iter;
113 gtk_text_buffer_get_iter_at_mark(buffer, &start_iter, cursor);
115 /* Determine the maximum length of the line input */
116 gint cursorpos = gtk_text_iter_get_line_offset(&start_iter);
117 /* Odd; the Glk spec says the maximum input length is
118 windowwidth - 1 - cursorposition. I say no, because if cursorposition is
119 zero, then the input should fill the whole line. FIXME??? */
120 win->input_length = MIN(win->width - cursorpos, win->line_input_buffer_max_len);
121 end_iter = start_iter;
122 gtk_text_iter_set_line_offset(&end_iter, cursorpos + win->input_length);
124 /* If the buffer currently has a selection with one bound in the middle of
125 the input field, then deselect it. Otherwise the input field gets trashed */
126 GtkTextIter start_sel, end_sel;
127 if( gtk_text_buffer_get_selection_bounds(buffer, &start_sel, &end_sel) )
129 if( gtk_text_iter_in_range(&start_sel, &start_iter, &end_iter) )
130 gtk_text_buffer_place_cursor(buffer, &end_sel);
131 if( gtk_text_iter_in_range(&end_sel, &start_iter, &end_iter) )
132 gtk_text_buffer_place_cursor(buffer, &start_sel);
135 /* Erase the text currently in the input field and replace it with a GtkEntry */
136 gtk_text_buffer_delete(buffer, &start_iter, &end_iter);
137 win->input_anchor = gtk_text_buffer_create_child_anchor(buffer, &start_iter);
138 win->input_entry = gtk_entry_new();
139 /* Set the entry's font to match that of the window */
140 GtkRcStyle *style = gtk_widget_get_modifier_style(win->widget); /* Don't free */
141 gtk_widget_modify_font(win->input_entry, style->font_desc);
142 /* Make the entry as small as possible to fit with the text */
143 gtk_entry_set_has_frame(GTK_ENTRY(win->input_entry), FALSE);
144 GtkBorder border = { 0, 0, 0, 0 };
147 #if GTK_CHECK_VERSION(2,10,0)
148 gtk_entry_set_inner_border(GTK_ENTRY(win->input_entry), &border);
150 gtk_entry_set_max_length(GTK_ENTRY(win->input_entry), win->input_length);
151 gtk_entry_set_width_chars(GTK_ENTRY(win->input_entry), win->input_length);
153 /* Insert pre-entered text if needed */
155 gtk_entry_set_text(GTK_ENTRY(win->input_entry), inserttext);
157 /* Set background color of entry (TODO: implement as property) */
159 gdk_color_parse("grey", &background);
160 gtk_widget_modify_base(win->input_entry, GTK_STATE_NORMAL, &background);
162 g_signal_connect(win->input_entry, "activate", G_CALLBACK(on_input_entry_activate), win);
163 g_signal_connect(win->input_entry, "key-press-event", G_CALLBACK(on_input_entry_key_press_event), win);
164 win->line_input_entry_changed = g_signal_connect(win->input_entry, "changed", G_CALLBACK(on_input_entry_changed), win);
166 gtk_widget_show(win->input_entry);
167 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(win->widget), win->input_entry, win->input_anchor);
169 gtk_widget_grab_focus(win->input_entry);
174 /* Internal function: Request either latin-1 or unicode line input, in a text buffer window. */
176 text_buffer_request_line_event_common(winid_t win, glui32 maxlen, gboolean insert, gchar *inserttext)
178 flush_window_buffer(win);
182 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
184 /* Move the input_position mark to the end of the window_buffer */
185 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
186 GtkTextIter end_iter;
187 gtk_text_buffer_get_end_iter(buffer, &end_iter);
188 gtk_text_buffer_move_mark(buffer, input_position, &end_iter);
190 /* Set the entire contents of the window_buffer as uneditable
191 * (so input can only be entered at the end) */
192 GtkTextIter start_iter;
193 gtk_text_buffer_get_start_iter(buffer, &start_iter);
194 gtk_text_buffer_remove_tag_by_name(buffer, "uneditable", &start_iter, &end_iter);
195 gtk_text_buffer_apply_tag_by_name(buffer, "uneditable", &start_iter, &end_iter);
197 /* Insert pre-entered text if needed */
199 gtk_text_buffer_insert(buffer, &end_iter, inserttext, -1);
200 gtk_text_buffer_get_end_iter(buffer, &end_iter); /* update after text insertion */
203 /* Apply the correct style to the input prompt */
204 GtkTextIter input_iter;
205 gtk_text_buffer_get_iter_at_mark(buffer, &input_iter, input_position);
206 gtk_text_buffer_apply_tag_by_name(buffer, "default", &input_iter, &end_iter);
207 gtk_text_buffer_apply_tag_by_name(buffer, "input", &input_iter, &end_iter);
208 gtk_text_buffer_apply_tag_by_name(buffer, "glk-input", &input_iter, &end_iter);
210 gtk_text_view_set_editable(GTK_TEXT_VIEW(win->widget), TRUE);
212 g_signal_handler_unblock(buffer, win->insert_text_handler);
213 gtk_widget_grab_focus(win->widget);
219 * glk_request_line_event:
220 * @win: A text buffer or text grid window to request line input on.
221 * @buf: A buffer of at least @maxlen bytes.
222 * @maxlen: Length of the buffer.
223 * @initlen: The number of characters in @buf to pre-enter.
225 * Requests input of a line of Latin-1 characters. A window cannot have requests
226 * for both character and line input at the same time. Nor can it have requests
227 * for line input of both types (Latin-1 and Unicode). It is illegal to call
228 * glk_request_line_event() if the window already has a pending request for
229 * either character or line input.
231 * The @buf argument is a pointer to space where the line input will be stored.
232 * (This may not be %NULL.) @maxlen is the length of this space, in bytes; the
233 * library will not accept more characters than this. If @initlen is nonzero,
234 * then the first @initlen bytes of @buf will be entered as pre-existing input
235 * — just as if the player had typed them himself. (The player can continue
236 * composing after this pre-entered input, or delete it or edit as usual.)
238 * The contents of the buffer are undefined until the input is completed (either
239 * by a line input event, or glk_cancel_line_event(). The library may or may not
240 * fill in the buffer as the player composes, while the input is still pending;
241 * it is illegal to change the contents of the buffer yourself.
244 glk_request_line_event(winid_t win, char *buf, glui32 maxlen, glui32 initlen)
246 VALID_WINDOW(win, return);
247 g_return_if_fail(buf);
248 g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
249 g_return_if_fail(initlen <= maxlen);
251 cancel_old_input_request(win);
253 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
255 /* Register the buffer */
256 if(glk_data->register_arr)
257 win->buffer_rock = (*glk_data->register_arr)(buf, maxlen, "&+#!Cn");
259 win->input_request_type = INPUT_REQUEST_LINE;
260 win->line_input_buffer = buf;
261 win->line_input_buffer_max_len = maxlen;
262 win->echo_current_line_input = win->echo_line_input;
263 win->current_extra_line_terminators = g_slist_copy(win->extra_line_terminators);
265 gchar *inserttext = (initlen > 0)? g_strndup(buf, initlen) : g_strdup("");
268 case wintype_TextBuffer:
269 text_buffer_request_line_event_common(win, maxlen, (initlen > 0), inserttext);
271 case wintype_TextGrid:
272 text_grid_request_line_event_common(win, maxlen, (initlen > 0), inserttext);
276 g_signal_handler_unblock(win->widget, win->line_input_keypress_handler);
278 /* Emit the "waiting" signal to let listeners know we are ready for input */
279 g_signal_emit_by_name(glk_data->self, "waiting");
283 * glk_request_line_event_uni:
284 * @win: A text buffer or text grid window to request line input on.
285 * @buf: A buffer of at least @maxlen characters.
286 * @maxlen: Length of the buffer.
287 * @initlen: The number of characters in @buf to pre-enter.
289 * Request input of a line of Unicode characters. This works the same as
290 * glk_request_line_event(), except the result is stored in an array of
291 * <type>glui32</type> values instead of an array of characters, and the values
292 * may be any valid Unicode code points.
294 * If possible, the library should return fully composed Unicode characters,
295 * rather than strings of base and composition characters.
298 * Fully-composed characters are the norm for Unicode text, so an
299 * implementation that ignores this issue will probably produce the right
300 * result. However, the game may not want to rely on that. Another factor is
301 * that case-folding can (occasionally) produce non-normalized text.
302 * Therefore, to cover all its bases, a game should call
303 * glk_buffer_to_lower_case_uni(), followed by
304 * glk_buffer_canon_normalize_uni(), before parsing.
308 * Earlier versions of this spec said that line input must always be in
309 * Unicode Normalization Form C. However, this has not been universally
310 * implemented. It is also somewhat redundant, for the results noted above.
311 * Therefore, we now merely recommend that line input be fully composed. The
312 * game is ultimately responsible for all case-folding and normalization. See
313 * <link linkend="chimara-Unicode-String-Normalization">Unicode String
314 * Normalization</link>.
318 glk_request_line_event_uni(winid_t win, glui32 *buf, glui32 maxlen, glui32 initlen)
320 VALID_WINDOW(win, return);
321 g_return_if_fail(buf);
322 g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
323 g_return_if_fail(initlen <= maxlen);
325 cancel_old_input_request(win);
326 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
328 /* Register the buffer */
329 if(glk_data->register_arr)
330 win->buffer_rock = (*glk_data->register_arr)(buf, maxlen, "&+#!Iu");
332 win->input_request_type = INPUT_REQUEST_LINE_UNICODE;
333 win->line_input_buffer_unicode = buf;
334 win->line_input_buffer_max_len = maxlen;
335 win->echo_current_line_input = win->echo_line_input;
336 win->current_extra_line_terminators = g_slist_copy(win->extra_line_terminators);
340 utf8 = convert_ucs4_to_utf8(buf, initlen);
349 case wintype_TextBuffer:
350 text_buffer_request_line_event_common(win, maxlen, (initlen > 0), utf8);
352 case wintype_TextGrid:
353 text_grid_request_line_event_common(win, maxlen, (initlen > 0), utf8);
356 g_signal_handler_unblock(win->widget, win->line_input_keypress_handler);
359 /* Emit the "waiting" signal to let listeners know we are ready for input */
360 g_signal_emit_by_name(glk_data->self, "waiting");
364 * glk_cancel_line_event:
365 * @win: A text buffer or text grid window to cancel line input on.
366 * @event: Will be filled in if the user had already input something.
368 * This cancels a pending request for line input. (Either Latin-1 or Unicode.)
370 * The event pointed to by the event argument will be filled in as if the
371 * player had hit <keycap>enter</keycap>, and the input composed so far will be
372 * stored in the buffer; see below. If you do not care about this information,
373 * pass %NULL as the @event argument. (The buffer will still be filled.)
375 * For convenience, it is legal to call glk_cancel_line_event() even if there
376 * is no line input request on that window. The event type will be set to
377 * %evtype_None in this case.
380 glk_cancel_line_event(winid_t win, event_t *event)
382 VALID_WINDOW(win, return);
383 g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
386 event->type = evtype_None;
392 if(win->input_request_type != INPUT_REQUEST_LINE && win->input_request_type != INPUT_REQUEST_LINE_UNICODE)
395 g_signal_handler_block( win->widget, win->line_input_keypress_handler );
397 int chars_written = 0;
400 if(win->type == wintype_TextGrid) {
401 chars_written = finish_text_grid_line_input(win, FALSE);
402 } else if(win->type == wintype_TextBuffer) {
403 gtk_text_view_set_editable( GTK_TEXT_VIEW(win->widget), FALSE );
404 GtkTextBuffer *window_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
405 g_signal_handler_block(window_buffer, win->insert_text_handler);
406 chars_written = finish_text_buffer_line_input(win, FALSE);
410 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
411 if(glk_data->unregister_arr)
413 if(win->input_request_type == INPUT_REQUEST_LINE_UNICODE)
414 (*glk_data->unregister_arr)(win->line_input_buffer_unicode, win->line_input_buffer_max_len, "&+#!Iu", win->buffer_rock);
416 (*glk_data->unregister_arr)(win->line_input_buffer, win->line_input_buffer_max_len, "&+#!Cn", win->buffer_rock);
419 if(event != NULL && chars_written > 0) {
420 event->type = evtype_LineInput;
421 event->val1 = chars_written;
425 /* Helper function: Turn off shutdown key-press-event signal handler */
427 turn_off_handler(GNode *node)
429 winid_t win = node->data;
430 g_signal_handler_block(win->widget, win->shutdown_keypress_handler);
431 return FALSE; /* don't stop */
434 /* Internal function: Callback for signal key-press-event while waiting for shutdown. */
436 on_shutdown_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win)
438 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(widget, CHIMARA_TYPE_GLK));
440 CHIMARA_GLK_USE_PRIVATE(glk, priv);
442 /* Turn off all the signal handlers */
443 if(priv->root_window)
444 g_node_traverse(priv->root_window, G_IN_ORDER, G_TRAVERSE_LEAVES, -1, (GNodeTraverseFunc)turn_off_handler, NULL);
446 /* Signal the Glk library that it can shut everything down now */
447 g_mutex_lock(priv->shutdown_lock);
448 g_cond_signal(priv->shutdown_key_pressed);
449 g_mutex_unlock(priv->shutdown_lock);
451 return TRUE; /* block the event */
454 /* Internal function: General callback for signal key-press-event on a text buffer or text grid window. Used in character input on both text buffers and grids. Blocked when not in use. */
456 on_char_input_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win)
458 /* Ignore modifier keys, otherwise the char input will already trigger on
459 the shift key when the user tries to type a capital letter */
460 if(event->is_modifier)
461 return FALSE; /* don't stop the event */
463 /* All text up to the input position is now regarded as being read by the user */
464 if(win->type == wintype_TextBuffer)
467 glui32 keycode = keyval_to_glk_keycode(event->keyval, win->input_request_type == INPUT_REQUEST_CHARACTER_UNICODE);
469 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(widget, CHIMARA_TYPE_GLK));
471 event_throw(glk, evtype_CharInput, win, keycode, 0);
472 g_signal_emit_by_name(glk, "char-input", win->rock, event->keyval);
474 /* Only one keypress will be handled */
475 win->input_request_type = INPUT_REQUEST_NONE;
476 g_signal_handler_block(win->widget, win->char_input_keypress_handler);
482 on_line_input_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win)
486 case wintype_TextBuffer:
488 /* All text up to the input position is now regarded as being read by the user */
491 GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(win->widget));
493 /* History up/down */
494 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up
495 || event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
497 /* Prevent falling off the end of the history list */
498 if(win->history == NULL)
500 if( (event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
501 && win->history_pos && win->history_pos->next == NULL)
503 if( (event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
504 && (win->history_pos == NULL || win->history_pos->prev == NULL) )
507 GtkTextIter start, end;
508 /* Erase any text that was already typed */
509 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
510 gtk_text_buffer_get_iter_at_mark(buffer, &start, input_position);
511 gtk_text_buffer_get_end_iter(buffer, &end);
513 if(win->history_pos == NULL) {
514 gchar *current_input = gtk_text_buffer_get_text(buffer, &start, &end, FALSE);
515 win->history = g_list_prepend(win->history, current_input);
516 win->history_pos = win->history;
519 gtk_text_buffer_delete(buffer, &start, &end);
521 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
524 win->history_pos = g_list_next(win->history_pos);
526 win->history_pos = win->history;
529 win->history_pos = g_list_previous(win->history_pos);
531 /* Insert the history item into the window */
532 gtk_text_buffer_get_end_iter(buffer, &end);
534 g_signal_handler_block(buffer, win->insert_text_handler);
535 gtk_text_buffer_insert_with_tags_by_name(buffer, &end, win->history_pos->data, -1, "default", "input", "glk-input", NULL);
537 g_signal_handler_unblock(buffer, win->insert_text_handler);
541 /* Move to beginning/end of input field */
542 else if(event->keyval == GDK_Home) {
543 GtkTextIter input_iter;
544 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
545 gtk_text_buffer_get_iter_at_mark(buffer, &input_iter, input_position);
546 gtk_text_buffer_place_cursor(buffer, &input_iter);
549 else if(event->keyval == GDK_End) {
550 GtkTextIter end_iter;
551 gtk_text_buffer_get_end_iter(buffer, &end_iter);
552 gtk_text_buffer_place_cursor(buffer, &end_iter);
556 /* Handle the line terminators */
557 else if(event->keyval == GDK_Return || event->keyval == GDK_KP_Enter
558 || g_slist_find(win->current_extra_line_terminators, GUINT_TO_POINTER(event->keyval)))
560 /* Remove signal handlers */
561 g_signal_handler_block(buffer, win->insert_text_handler);
562 g_signal_handler_block(win->widget, win->line_input_keypress_handler);
564 /* Insert a newline (even if line input was terminated with a different key */
566 gtk_text_buffer_get_end_iter(buffer, &end);
567 gtk_text_buffer_insert(buffer, &end, "\n", 1);
568 gtk_text_buffer_place_cursor(buffer, &end);
570 /* Make the window uneditable again and retrieve the text that was input */
571 gtk_text_view_set_editable(GTK_TEXT_VIEW(win->widget), FALSE);
573 int chars_written = finish_text_buffer_line_input(win, TRUE);
574 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
575 event_throw(glk, evtype_LineInput, win, chars_written, 0);
581 /* If this is a text grid window, then redirect the key press to the line input GtkEntry */
582 case wintype_TextGrid:
584 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up
585 || event->keyval == GDK_Down || event->keyval == GDK_KP_Down
586 || event->keyval == GDK_Left || event->keyval == GDK_KP_Left
587 || event->keyval == GDK_Right || event->keyval == GDK_KP_Right
588 || event->keyval == GDK_Tab || event->keyval == GDK_KP_Tab
589 || event->keyval == GDK_Page_Up || event->keyval == GDK_KP_Page_Up
590 || event->keyval == GDK_Page_Down || event->keyval == GDK_KP_Page_Down
591 || event->keyval == GDK_Home || event->keyval == GDK_KP_Home
592 || event->keyval == GDK_End || event->keyval == GDK_KP_End)
593 return FALSE; /* Don't redirect these keys */
594 gtk_widget_grab_focus(win->input_entry);
595 gtk_editable_set_position(GTK_EDITABLE(win->input_entry), -1);
596 gboolean retval = TRUE;
597 g_signal_emit_by_name(win->input_entry, "key-press-event", event, &retval);
598 return retval; /* Block this key event if the entry handled it */
604 /* Internal function: finish handling a line input request, for both text grid and text buffer windows. */
606 write_to_window_buffer(winid_t win, const gchar *inserted_text)
610 /* Convert the string from UTF-8 to Latin-1 or Unicode */
611 if(win->input_request_type == INPUT_REQUEST_LINE)
614 gchar *latin1 = convert_utf8_to_latin1(inserted_text, &bytes_written);
619 /* Place input in the echo stream */
620 if(win->echo_stream != NULL)
621 glk_put_string_stream(win->echo_stream, latin1);
623 /* Copy the string (bytes_written does not include the NULL at the end) */
624 copycount = MIN(win->line_input_buffer_max_len, bytes_written);
625 memcpy(win->line_input_buffer, latin1, copycount);
628 else if(win->input_request_type == INPUT_REQUEST_LINE_UNICODE)
631 gunichar *unicode = convert_utf8_to_ucs4(inserted_text, &items_written);
636 /* Place input in the echo stream */
637 if(win->echo_stream != NULL)
638 glk_put_string_stream_uni(win->echo_stream, unicode);
640 /* Copy the string (but not the NULL at the end) */
641 copycount = MIN(win->line_input_buffer_max_len, items_written);
642 memcpy(win->line_input_buffer_unicode, unicode, copycount * sizeof(gunichar));
646 WARNING("Wrong input request type");
648 win->input_request_type = INPUT_REQUEST_NONE;
652 /* Internal function: Retrieves the input of a TextBuffer window and stores it in the window buffer.
653 * Returns the number of characters written, suitable for inclusion in a line input event. */
655 finish_text_buffer_line_input(winid_t win, gboolean emit_signal)
657 VALID_WINDOW(win, return 0);
658 g_return_val_if_fail(win->type == wintype_TextBuffer, 0);
660 GtkTextIter start_iter, end_iter;
662 GtkTextBuffer *window_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
663 GtkTextMark *input_position = gtk_text_buffer_get_mark(window_buffer, "input_position");
664 gtk_text_buffer_get_iter_at_mark(window_buffer, &start_iter, input_position);
665 gtk_text_buffer_get_end_iter(window_buffer, &end_iter);
667 gchar *inserted_text = gtk_text_buffer_get_text(window_buffer, &start_iter, &end_iter, FALSE);
669 /* If echoing is turned off, remove the text from the window */
670 if(!win->echo_current_line_input)
671 gtk_text_buffer_delete(window_buffer, &start_iter, &end_iter);
673 /* Don't include the newline in the input */
674 char *last_char = inserted_text + strlen(inserted_text) - 1;
675 if(*last_char == '\n')
678 int chars_written = write_to_window_buffer(win, inserted_text);
681 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
683 g_signal_emit_by_name(glk, "line-input", win->rock, inserted_text);
686 /* Add the text to the window input history */
687 if(win->history_pos != NULL)
689 g_free(win->history->data);
690 win->history = g_list_delete_link(win->history, win->history);
692 if(*inserted_text != 0)
693 win->history = g_list_prepend(win->history, g_strdup(inserted_text));
695 win->history_pos = NULL;
697 g_free(inserted_text);
699 return chars_written;
702 /* Internal function: Retrieves the input of a TextGrid window and stores it in the window buffer.
703 * Returns the number of characters written, suitable for inclusion in a line input event. */
705 finish_text_grid_line_input(winid_t win, gboolean emit_signal)
707 VALID_WINDOW(win, return 0);
708 g_return_val_if_fail(win->type == wintype_TextGrid, 0);
710 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
712 gchar *text = g_strdup( gtk_entry_get_text(GTK_ENTRY(win->input_entry)) );
713 /* Move the focus back into the text view */
714 gtk_widget_grab_focus(win->widget);
715 /* Remove entry widget from text view */
716 /* Should be ok even though this is the widget's own signal handler */
717 gtk_container_remove( GTK_CONTAINER(win->widget), GTK_WIDGET(win->input_entry) );
718 win->input_entry = NULL;
719 /* Delete the child anchor */
720 GtkTextIter start, end;
721 gtk_text_buffer_get_iter_at_child_anchor(buffer, &start, win->input_anchor);
723 gtk_text_iter_forward_char(&end); /* Point after the child anchor */
724 gtk_text_buffer_delete(buffer, &start, &end);
725 win->input_anchor = NULL;
727 gchar *spaces = g_strnfill(win->input_length - g_utf8_strlen(text, -1), ' ');
728 gchar *text_to_insert = g_strconcat(text, spaces, NULL);
730 gtk_text_buffer_insert(buffer, &start, text_to_insert, -1);
731 g_free(text_to_insert);
733 int chars_written = write_to_window_buffer(win, text);
736 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
738 g_signal_emit_by_name(glk, "line-input", win->rock, text);
741 /* Add the text to the window input history */
742 if(win->history_pos != NULL)
744 g_free(win->history->data);
745 win->history = g_list_delete_link(win->history, win->history);
748 win->history = g_list_prepend(win->history, g_strdup(text));
749 win->history_pos = NULL;
752 return chars_written;
755 /* Internal function: Callback for signal insert-text on a text buffer window.
756 Runs after the default handler has already inserted the text. */
758 after_window_insert_text(GtkTextBuffer *textbuffer, GtkTextIter *location, gchar *text, gint len, winid_t win)
760 GtkTextBuffer *window_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
762 /* Set the history position to NULL and erase the text we were already editing */
763 if(win->history_pos != NULL)
765 g_free(win->history->data);
766 win->history = g_list_delete_link(win->history, win->history);
767 win->history_pos = NULL;
770 /* Apply the 'input' style to the text that was entered */
771 GtkTextIter end_iter;
772 gtk_text_buffer_get_end_iter(window_buffer, &end_iter);
773 GtkTextIter input_iter;
774 GtkTextMark *input_position = gtk_text_buffer_get_mark(window_buffer, "input_position");
775 gtk_text_buffer_get_iter_at_mark(window_buffer, &input_iter, input_position);
776 gtk_text_buffer_apply_tag_by_name(window_buffer, "input", &input_iter, &end_iter);
779 /* Internal function: Callback for signal activate on the line input GtkEntry
780 in a text grid window. */
782 on_input_entry_activate(GtkEntry *input_entry, winid_t win)
784 g_signal_handler_block(win->widget, win->line_input_keypress_handler);
786 int chars_written = finish_text_grid_line_input(win, TRUE);
787 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
788 event_throw(glk, evtype_LineInput, win, chars_written, 0);
791 /* Internal function: Callback for signal key-press-event on the line input
792 GtkEntry in a text grid window. */
794 on_input_entry_key_press_event(GtkEntry *input_entry, GdkEventKey *event, winid_t win)
796 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up
797 || event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
799 /* Prevent falling off the end of the history list */
800 if( (event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
801 && win->history_pos && win->history_pos->next == NULL)
803 if( (event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
804 && (win->history_pos == NULL || win->history_pos->prev == NULL) )
807 if(win->history_pos == NULL)
809 const gchar *current_input = gtk_entry_get_text(input_entry);
810 win->history = g_list_prepend(win->history, g_strdup(current_input));
811 win->history_pos = win->history;
814 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
817 win->history_pos = g_list_next(win->history_pos);
819 win->history_pos = win->history;
822 win->history_pos = g_list_previous(win->history_pos);
824 /* Insert the history item into the window */
825 g_signal_handler_block(input_entry, win->line_input_entry_changed);
826 gtk_entry_set_text(input_entry, win->history_pos->data);
827 g_signal_handler_unblock(input_entry, win->line_input_entry_changed);
830 else if(g_slist_find(win->current_extra_line_terminators, GUINT_TO_POINTER(event->keyval)))
832 /* If this key was a line terminator, pretend we pressed enter */
833 on_input_entry_activate(input_entry, win);
839 on_input_entry_changed(GtkEditable *editable, winid_t win)
841 /* Set the history position to NULL and erase the text we were already editing */
842 if(win->history_pos != NULL)
844 g_free(win->history->data);
845 win->history = g_list_delete_link(win->history, win->history);
846 win->history_pos = NULL;
851 keyval_to_glk_keycode(guint keyval, gboolean unicode)
856 case GDK_KP_Up: return keycode_Up;
858 case GDK_KP_Down: return keycode_Down;
860 case GDK_KP_Left: return keycode_Left;
862 case GDK_KP_Right: return keycode_Right;
865 case GDK_KP_Enter: return keycode_Return;
868 case GDK_KP_Delete: return keycode_Delete;
869 case GDK_Escape: return keycode_Escape;
871 case GDK_KP_Tab: return keycode_Tab;
873 case GDK_KP_Page_Up: return keycode_PageUp;
875 case GDK_KP_Page_Down: return keycode_PageDown;
877 case GDK_KP_Home: return keycode_Home;
879 case GDK_KP_End: return keycode_End;
881 case GDK_KP_F1: return keycode_Func1;
883 case GDK_KP_F2: return keycode_Func2;
885 case GDK_KP_F3: return keycode_Func3;
887 case GDK_KP_F4: return keycode_Func4;
888 case GDK_F5: return keycode_Func5;
889 case GDK_F6: return keycode_Func6;
890 case GDK_F7: return keycode_Func7;
891 case GDK_F8: return keycode_Func8;
892 case GDK_F9: return keycode_Func9;
893 case GDK_F10: return keycode_Func10;
894 case GDK_F11: return keycode_Func11;
895 case GDK_F12: return keycode_Func12;
897 keycode = gdk_keyval_to_unicode(keyval);
898 /* If keycode is 0, then keyval was not recognized; also return
899 unknown if Latin-1 input was requested and the character is not in
901 if(keycode == 0 || (!unicode && keycode > 255))
902 return keycode_Unknown;
908 force_char_input_from_queue(winid_t win, event_t *event)
910 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
911 guint keyval = GPOINTER_TO_UINT(g_async_queue_pop(glk_data->char_input_queue));
913 glk_cancel_char_event(win);
916 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
918 g_signal_emit_by_name(glk, "char-input", win->rock, keyval);
921 event->type = evtype_CharInput;
923 event->val1 = keyval_to_glk_keycode(keyval, win->input_request_type == INPUT_REQUEST_CHARACTER_UNICODE);
928 force_line_input_from_queue(winid_t win, event_t *event)
930 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
931 const gchar *text = g_async_queue_pop(glk_data->line_input_queue);
932 glui32 chars_written = 0;
935 if(win->type == wintype_TextBuffer)
937 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
938 GtkTextIter start, end;
940 /* Remove signal handlers so the line input doesn't get picked up again */
941 g_signal_handler_block(buffer, win->insert_text_handler);
942 g_signal_handler_block(win->widget, win->line_input_keypress_handler);
944 /* Erase any text that was already typed */
945 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
946 gtk_text_buffer_get_iter_at_mark(buffer, &start, input_position);
947 gtk_text_buffer_get_end_iter(buffer, &end);
948 gtk_text_buffer_delete(buffer, &start, &end);
950 /* Make the window uneditable again */
951 gtk_text_view_set_editable(GTK_TEXT_VIEW(win->widget), FALSE);
953 /* Insert the forced input into the window */
954 if(win->echo_current_line_input)
956 gtk_text_buffer_get_end_iter(buffer, &end);
957 gchar *text_to_insert = g_strconcat(text, "\n", NULL);
958 gtk_text_buffer_insert_with_tags_by_name(buffer, &end, text_to_insert, -1, "default", "input", NULL);
961 chars_written = finish_text_buffer_line_input(win, TRUE);
963 else if(win->type == wintype_TextGrid)
965 /* Remove signal handlers so the line input doesn't get picked up again */
966 g_signal_handler_block(win->widget, win->char_input_keypress_handler);
968 /* Insert the forced input into the window */
969 gtk_entry_set_text(GTK_ENTRY(win->input_entry), text);
970 chars_written = finish_text_grid_line_input(win, TRUE);
974 event->type = evtype_LineInput;
976 event->val1 = chars_written;
980 /*** Internal function: cancels any pending input requests on the window and presents a warning if not INPUT_REQUEST_NONE ***/
982 cancel_old_input_request(winid_t win)
984 switch(win->input_request_type) {
985 case INPUT_REQUEST_NONE:
986 break; /* All is well */
987 case INPUT_REQUEST_CHARACTER:
988 case INPUT_REQUEST_CHARACTER_UNICODE:
989 glk_cancel_char_event(win);
990 WARNING("Cancelling pending char event");
992 case INPUT_REQUEST_LINE:
993 case INPUT_REQUEST_LINE_UNICODE:
994 glk_cancel_line_event(win, NULL);
995 WARNING("Cancelling pending line event");
998 WARNING("Could not cancel pending input request: unknown input request");
1003 * glk_set_echo_line_event:
1004 * @win: The window in which to change the echoing behavior.
1005 * @val: Zero to turn off echoing, nonzero for normal echoing.
1007 * Normally, after line input is completed or cancelled in a buffer window, the
1008 * library ensures that the complete input line (or its latest state, after
1009 * cancelling) is displayed at the end of the buffer, followed by a newline.
1010 * This call allows you to suppress this behavior. If the @val argument is zero,
1011 * all <emphasis>subsequent</emphasis> line input requests in the given window
1012 * will leave the buffer unchanged after the input is completed or cancelled;
1013 * the player's input will not be printed. If @val is nonzero, subsequent input
1014 * requests will have the normal printing behavior.
1017 * Note that this feature is unrelated to the window's echo stream.
1020 * If you turn off line input echoing, you can reproduce the standard input
1021 * behavior by following each line input event (or line input cancellation) by
1022 * printing the input line, in the Input style, followed by a newline in the
1025 * The glk_set_echo_line_event() does not affect a pending line input request.
1026 * It also has no effect in non-buffer windows.
1028 * In a grid window, the game can overwrite the input area at will, so there
1029 * is no need for this distinction.
1032 * Not all libraries support this feature. You can test for it with
1033 * %gestalt_LineInputEcho.
1036 glk_set_echo_line_event(winid_t win, glui32 val)
1038 VALID_WINDOW(win, return);
1040 if(win->type != wintype_TextBuffer)
1041 return; /* Quietly do nothing */
1043 win->echo_line_input = val? TRUE : FALSE;
1046 /* Internal function to convert from a Glk keycode to a GDK keyval. */
1048 keycode_to_gdk_keyval(glui32 keycode)
1060 case keycode_Return:
1062 case keycode_Delete:
1064 case keycode_Escape:
1068 case keycode_PageUp:
1070 case keycode_PageDown:
1071 return GDK_Page_Down;
1094 case keycode_Func10:
1096 case keycode_Func11:
1098 case keycode_Func12:
1101 return GDK_BackSpace;
1103 unsigned keyval = gdk_unicode_to_keyval(keycode);
1104 if(keyval < 0x01000000) /* magic number meaning illegal unicode point */
1109 /* Internal function to decide whether @keycode is a valid line terminator. */
1111 is_valid_line_terminator(glui32 keycode)
1114 case keycode_Escape:
1124 case keycode_Func10:
1125 case keycode_Func11:
1126 case keycode_Func12:
1133 * glk_set_terminators_line_event:
1134 * @win: The window for which to set the line input terminator keys.
1135 * @keycodes: An array of <code>keycode_</code> constants, of length @count.
1136 * @count: The array length of @keycodes.
1138 * It is possible to request that other keystrokes complete line input as well.
1139 * (This allows a game to intercept function keys or other special keys during
1140 * line input.) To do this, call glk_set_terminators_line_event(), and pass an
1141 * array of @count keycodes. These must all be special keycodes (see <link
1142 * linkend="chimara-Character-Input">Character Input</link>). Do not include
1143 * regular printable characters in the array, nor %keycode_Return (which
1144 * represents the default <keycap>enter</keycap> key and will always be
1145 * recognized). To return to the default behavior, pass a %NULL or empty array.
1147 * The glk_set_terminators_line_event() affects <emphasis>subsequent</emphasis>
1148 * line input requests in the given window. It does not affect a pending line
1152 * This distinction makes life easier for interpreters that set up UI
1153 * callbacks only at the start of input.
1156 * A library may not support this feature; if it does, it may not support all
1157 * special keys as terminators. (Some keystrokes are reserved for OS or
1158 * interpreter control.) You can test for this with %gestalt_LineTerminators and
1159 * %gestalt_LineTerminatorKey.
1162 glk_set_terminators_line_event(winid_t win, glui32 *keycodes, glui32 count)
1164 VALID_WINDOW(win, return);
1166 g_slist_free(win->extra_line_terminators);
1167 win->extra_line_terminators = NULL;
1169 if(keycodes == NULL || count == 0)
1173 for(i = 0; i < count; i++)
1175 unsigned key = keycode_to_gdk_keyval(keycodes[i]);
1176 if(is_valid_line_terminator(keycodes[i]))
1177 win->extra_line_terminators = g_slist_prepend(win->extra_line_terminators, GUINT_TO_POINTER(key));
1179 WARNING_S("Ignoring invalid line terminator", gdk_keyval_name(key));