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 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
28 win->input_request_type = unicode? INPUT_REQUEST_CHARACTER_UNICODE : INPUT_REQUEST_CHARACTER;
29 g_signal_handler_unblock( win->widget, win->char_input_keypress_handler );
32 gtk_widget_grab_focus( GTK_WIDGET(win->widget) );
35 /* Emit the "waiting" signal to let listeners know we are ready for input */
36 g_signal_emit_by_name(glk_data->self, "waiting");
40 * glk_request_char_event:
41 * @win: A window to request char events from.
43 * Request input of a Latin-1 character or special key. A window cannot have
44 * requests for both character and line input at the same time. Nor can it have
45 * requests for character input of both types (Latin-1 and Unicode). It is
46 * illegal to call glk_request_char_event() if the window already has a pending
47 * request for either character or line input.
50 glk_request_char_event(winid_t win)
52 request_char_event_common(win, FALSE);
56 * glk_request_char_event_uni:
57 * @win: A window to request char events from.
59 * Request input of a Unicode character or special key. See
60 * glk_request_char_event().
63 glk_request_char_event_uni(winid_t win)
65 request_char_event_common(win, TRUE);
69 * glk_cancel_char_event:
70 * @win: A window to cancel the latest char event request on.
72 * This cancels a pending request for character input. (Either Latin-1 or
73 * Unicode.) For convenience, it is legal to call glk_cancel_char_event() even
74 * if there is no charcter input request on that window. Glk will ignore the
78 glk_cancel_char_event(winid_t win)
80 VALID_WINDOW(win, return);
81 g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
83 if(win->input_request_type == INPUT_REQUEST_CHARACTER || win->input_request_type == INPUT_REQUEST_CHARACTER_UNICODE)
85 win->input_request_type = INPUT_REQUEST_NONE;
86 g_signal_handler_block( win->widget, win->char_input_keypress_handler );
90 /* Internal function: Request either latin-1 or unicode line input, in a text grid window. */
92 text_grid_request_line_event_common(winid_t win, glui32 maxlen, gboolean insert, gchar *inserttext)
94 /* All outstanding printing _must_ be finished before putting an input entry
96 flush_window_buffer(win);
100 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
102 GtkTextMark *cursor = gtk_text_buffer_get_mark(buffer, "cursor_position");
103 GtkTextIter start_iter, end_iter;
104 gtk_text_buffer_get_iter_at_mark(buffer, &start_iter, cursor);
106 /* Determine the maximum length of the line input */
107 gint cursorpos = gtk_text_iter_get_line_offset(&start_iter);
108 /* Odd; the Glk spec says the maximum input length is
109 windowwidth - 1 - cursorposition. I say no, because if cursorposition is
110 zero, then the input should fill the whole line. FIXME??? */
111 win->input_length = MIN(win->width - cursorpos, win->line_input_buffer_max_len);
112 end_iter = start_iter;
113 gtk_text_iter_set_line_offset(&end_iter, cursorpos + win->input_length);
115 /* If the buffer currently has a selection with one bound in the middle of
116 the input field, then deselect it. Otherwise the input field gets trashed */
117 GtkTextIter start_sel, end_sel;
118 if( gtk_text_buffer_get_selection_bounds(buffer, &start_sel, &end_sel) )
120 if( gtk_text_iter_in_range(&start_sel, &start_iter, &end_iter) )
121 gtk_text_buffer_place_cursor(buffer, &end_sel);
122 if( gtk_text_iter_in_range(&end_sel, &start_iter, &end_iter) )
123 gtk_text_buffer_place_cursor(buffer, &start_sel);
126 /* Erase the text currently in the input field and replace it with a GtkEntry */
127 gtk_text_buffer_delete(buffer, &start_iter, &end_iter);
128 win->input_anchor = gtk_text_buffer_create_child_anchor(buffer, &start_iter);
129 win->input_entry = gtk_entry_new();
130 /* Set the entry's font to match that of the window */
131 GtkRcStyle *style = gtk_widget_get_modifier_style(win->widget); /* Don't free */
132 gtk_widget_modify_font(win->input_entry, style->font_desc);
133 /* Make the entry as small as possible to fit with the text */
134 gtk_entry_set_has_frame(GTK_ENTRY(win->input_entry), FALSE);
135 GtkBorder border = { 0, 0, 0, 0 };
138 #if GTK_CHECK_VERSION(2,10,0)
139 gtk_entry_set_inner_border(GTK_ENTRY(win->input_entry), &border);
141 gtk_entry_set_max_length(GTK_ENTRY(win->input_entry), win->input_length);
142 gtk_entry_set_width_chars(GTK_ENTRY(win->input_entry), win->input_length);
144 /* Insert pre-entered text if needed */
146 gtk_entry_set_text(GTK_ENTRY(win->input_entry), inserttext);
148 /* Set background color of entry (TODO: implement as property) */
150 gdk_color_parse("grey", &background);
151 gtk_widget_modify_base(win->input_entry, GTK_STATE_NORMAL, &background);
153 g_signal_connect(win->input_entry, "activate", G_CALLBACK(on_input_entry_activate), win);
154 g_signal_connect(win->input_entry, "key-press-event", G_CALLBACK(on_input_entry_key_press_event), win);
155 win->line_input_entry_changed = g_signal_connect(win->input_entry, "changed", G_CALLBACK(on_input_entry_changed), win);
157 gtk_widget_show(win->input_entry);
158 gtk_text_view_add_child_at_anchor(GTK_TEXT_VIEW(win->widget), win->input_entry, win->input_anchor);
160 gtk_widget_grab_focus(win->input_entry);
165 /* Internal function: Request either latin-1 or unicode line input, in a text buffer window. */
167 text_buffer_request_line_event_common(winid_t win, glui32 maxlen, gboolean insert, gchar *inserttext)
169 flush_window_buffer(win);
173 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
175 /* Move the input_position mark to the end of the window_buffer */
176 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
177 GtkTextIter end_iter;
178 gtk_text_buffer_get_end_iter(buffer, &end_iter);
179 gtk_text_buffer_move_mark(buffer, input_position, &end_iter);
181 /* Set the entire contents of the window_buffer as uneditable
182 * (so input can only be entered at the end) */
183 GtkTextIter start_iter;
184 gtk_text_buffer_get_start_iter(buffer, &start_iter);
185 gtk_text_buffer_remove_tag_by_name(buffer, "uneditable", &start_iter, &end_iter);
186 gtk_text_buffer_apply_tag_by_name(buffer, "uneditable", &start_iter, &end_iter);
188 /* Insert pre-entered text if needed */
190 gtk_text_buffer_insert(buffer, &end_iter, inserttext, -1);
191 gtk_text_buffer_get_end_iter(buffer, &end_iter); /* update after text insertion */
194 /* Apply the correct style to the input prompt */
195 GtkTextIter input_iter;
196 gtk_text_buffer_get_iter_at_mark(buffer, &input_iter, input_position);
197 gtk_text_buffer_apply_tag_by_name(buffer, "default", &input_iter, &end_iter);
198 gtk_text_buffer_apply_tag_by_name(buffer, "input", &input_iter, &end_iter);
199 gtk_text_buffer_apply_tag_by_name(buffer, "glk-input", &input_iter, &end_iter);
201 gtk_text_view_set_editable(GTK_TEXT_VIEW(win->widget), TRUE);
203 g_signal_handler_unblock(buffer, win->insert_text_handler);
204 gtk_widget_grab_focus(win->widget);
210 * glk_request_line_event:
211 * @win: A text buffer or text grid window to request line input on.
212 * @buf: A buffer of at least @maxlen bytes.
213 * @maxlen: Length of the buffer.
214 * @initlen: The number of characters in @buf to pre-enter.
216 * Requests input of a line of Latin-1 characters. A window cannot have requests
217 * for both character and line input at the same time. Nor can it have requests
218 * for line input of both types (Latin-1 and Unicode). It is illegal to call
219 * glk_request_line_event() if the window already has a pending request for
220 * either character or line input.
222 * The @buf argument is a pointer to space where the line input will be stored.
223 * (This may not be %NULL.) @maxlen is the length of this space, in bytes; the
224 * library will not accept more characters than this. If @initlen is nonzero,
225 * then the first @initlen bytes of @buf will be entered as pre-existing input
226 * — just as if the player had typed them himself. (The player can continue
227 * composing after this pre-entered input, or delete it or edit as usual.)
229 * The contents of the buffer are undefined until the input is completed (either
230 * by a line input event, or glk_cancel_line_event(). The library may or may not
231 * fill in the buffer as the player composes, while the input is still pending;
232 * it is illegal to change the contents of the buffer yourself.
235 glk_request_line_event(winid_t win, char *buf, glui32 maxlen, glui32 initlen)
237 VALID_WINDOW(win, return);
238 g_return_if_fail(buf);
239 g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
240 g_return_if_fail(initlen <= maxlen);
242 cancel_old_input_request(win);
244 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
246 /* Register the buffer */
247 if(glk_data->register_arr)
248 win->buffer_rock = (*glk_data->register_arr)(buf, maxlen, "&+#!Cn");
250 win->input_request_type = INPUT_REQUEST_LINE;
251 win->line_input_buffer = buf;
252 win->line_input_buffer_max_len = maxlen;
253 win->echo_current_line_input = win->echo_line_input;
254 win->current_extra_line_terminators = g_slist_copy(win->extra_line_terminators);
256 gchar *inserttext = (initlen > 0)? g_strndup(buf, initlen) : g_strdup("");
259 case wintype_TextBuffer:
260 text_buffer_request_line_event_common(win, maxlen, (initlen > 0), inserttext);
262 case wintype_TextGrid:
263 text_grid_request_line_event_common(win, maxlen, (initlen > 0), inserttext);
267 g_signal_handler_unblock(win->widget, win->line_input_keypress_handler);
269 /* Emit the "waiting" signal to let listeners know we are ready for input */
270 g_signal_emit_by_name(glk_data->self, "waiting");
274 * glk_request_line_event_uni:
275 * @win: A text buffer or text grid window to request line input on.
276 * @buf: A buffer of at least @maxlen characters.
277 * @maxlen: Length of the buffer.
278 * @initlen: The number of characters in @buf to pre-enter.
280 * Request input of a line of Unicode characters. This works the same as
281 * glk_request_line_event(), except the result is stored in an array of
282 * <type>glui32</type> values instead of an array of characters, and the values
283 * may be any valid Unicode code points.
285 * If possible, the library should return fully composed Unicode characters,
286 * rather than strings of base and composition characters.
289 * Fully-composed characters are the norm for Unicode text, so an
290 * implementation that ignores this issue will probably produce the right
291 * result. However, the game may not want to rely on that. Another factor is
292 * that case-folding can (occasionally) produce non-normalized text.
293 * Therefore, to cover all its bases, a game should call
294 * glk_buffer_to_lower_case_uni(), followed by
295 * glk_buffer_canon_normalize_uni(), before parsing.
299 * Earlier versions of this spec said that line input must always be in
300 * Unicode Normalization Form C. However, this has not been universally
301 * implemented. It is also somewhat redundant, for the results noted above.
302 * Therefore, we now merely recommend that line input be fully composed. The
303 * game is ultimately responsible for all case-folding and normalization. See
304 * <link linkend="chimara-Unicode-String-Normalization">Unicode String
305 * Normalization</link>.
309 glk_request_line_event_uni(winid_t win, glui32 *buf, glui32 maxlen, glui32 initlen)
311 VALID_WINDOW(win, return);
312 g_return_if_fail(buf);
313 g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
314 g_return_if_fail(initlen <= maxlen);
316 cancel_old_input_request(win);
317 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
319 /* Register the buffer */
320 if(glk_data->register_arr)
321 win->buffer_rock = (*glk_data->register_arr)(buf, maxlen, "&+#!Iu");
323 win->input_request_type = INPUT_REQUEST_LINE_UNICODE;
324 win->line_input_buffer_unicode = buf;
325 win->line_input_buffer_max_len = maxlen;
326 win->echo_current_line_input = win->echo_line_input;
327 win->current_extra_line_terminators = g_slist_copy(win->extra_line_terminators);
331 utf8 = convert_ucs4_to_utf8(buf, initlen);
340 case wintype_TextBuffer:
341 text_buffer_request_line_event_common(win, maxlen, (initlen > 0), utf8);
343 case wintype_TextGrid:
344 text_grid_request_line_event_common(win, maxlen, (initlen > 0), utf8);
347 g_signal_handler_unblock(win->widget, win->line_input_keypress_handler);
350 /* Emit the "waiting" signal to let listeners know we are ready for input */
351 g_signal_emit_by_name(glk_data->self, "waiting");
355 * glk_cancel_line_event:
356 * @win: A text buffer or text grid window to cancel line input on.
357 * @event: Will be filled in if the user had already input something.
359 * This cancels a pending request for line input. (Either Latin-1 or Unicode.)
361 * The event pointed to by the event argument will be filled in as if the
362 * player had hit <keycap>enter</keycap>, and the input composed so far will be
363 * stored in the buffer; see below. If you do not care about this information,
364 * pass %NULL as the @event argument. (The buffer will still be filled.)
366 * For convenience, it is legal to call glk_cancel_line_event() even if there
367 * is no line input request on that window. The event type will be set to
368 * %evtype_None in this case.
371 glk_cancel_line_event(winid_t win, event_t *event)
373 VALID_WINDOW(win, return);
374 g_return_if_fail(win->type != wintype_TextBuffer || win->type != wintype_TextGrid);
377 event->type = evtype_None;
383 if(win->input_request_type != INPUT_REQUEST_LINE && win->input_request_type != INPUT_REQUEST_LINE_UNICODE)
386 g_signal_handler_block( win->widget, win->line_input_keypress_handler );
388 int chars_written = 0;
391 if(win->type == wintype_TextGrid) {
392 chars_written = finish_text_grid_line_input(win, FALSE);
393 } else if(win->type == wintype_TextBuffer) {
394 gtk_text_view_set_editable( GTK_TEXT_VIEW(win->widget), FALSE );
395 GtkTextBuffer *window_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
396 g_signal_handler_block(window_buffer, win->insert_text_handler);
397 chars_written = finish_text_buffer_line_input(win, FALSE);
401 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
402 if(glk_data->unregister_arr)
404 if(win->input_request_type == INPUT_REQUEST_LINE_UNICODE)
405 (*glk_data->unregister_arr)(win->line_input_buffer_unicode, win->line_input_buffer_max_len, "&+#!Iu", win->buffer_rock);
407 (*glk_data->unregister_arr)(win->line_input_buffer, win->line_input_buffer_max_len, "&+#!Cn", win->buffer_rock);
410 if(event != NULL && chars_written > 0) {
411 event->type = evtype_LineInput;
412 event->val1 = chars_written;
416 /* Helper function: Turn off shutdown key-press-event signal handler */
418 turn_off_handler(GNode *node)
420 winid_t win = node->data;
421 g_signal_handler_block(win->widget, win->shutdown_keypress_handler);
422 return FALSE; /* don't stop */
425 /* Internal function: Callback for signal key-press-event while waiting for shutdown. */
427 on_shutdown_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win)
429 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(widget, CHIMARA_TYPE_GLK));
431 CHIMARA_GLK_USE_PRIVATE(glk, priv);
433 /* Turn off all the signal handlers */
434 if(priv->root_window)
435 g_node_traverse(priv->root_window, G_IN_ORDER, G_TRAVERSE_LEAVES, -1, (GNodeTraverseFunc)turn_off_handler, NULL);
437 /* Signal the Glk library that it can shut everything down now */
438 g_mutex_lock(priv->shutdown_lock);
439 g_cond_signal(priv->shutdown_key_pressed);
440 g_mutex_unlock(priv->shutdown_lock);
442 return TRUE; /* block the event */
445 /* 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. */
447 on_char_input_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win)
449 /* Ignore modifier keys, otherwise the char input will already trigger on
450 the shift key when the user tries to type a capital letter */
451 if(event->is_modifier)
452 return FALSE; /* don't stop the event */
454 /* All text up to the input position is now regarded as being read by the user */
455 if(win->type == wintype_TextBuffer)
458 glui32 keycode = keyval_to_glk_keycode(event->keyval, win->input_request_type == INPUT_REQUEST_CHARACTER_UNICODE);
460 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(widget, CHIMARA_TYPE_GLK));
462 event_throw(glk, evtype_CharInput, win, keycode, 0);
463 g_signal_emit_by_name(glk, "char-input", win->rock, event->keyval);
465 /* Only one keypress will be handled */
466 win->input_request_type = INPUT_REQUEST_NONE;
467 g_signal_handler_block(win->widget, win->char_input_keypress_handler);
473 on_line_input_key_press_event(GtkWidget *widget, GdkEventKey *event, winid_t win)
477 case wintype_TextBuffer:
479 /* All text up to the input position is now regarded as being read by the user */
482 GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(win->widget));
484 /* History up/down */
485 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up
486 || event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
488 /* Prevent falling off the end of the history list */
489 if(win->history == NULL)
491 if( (event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
492 && win->history_pos && win->history_pos->next == NULL)
494 if( (event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
495 && (win->history_pos == NULL || win->history_pos->prev == NULL) )
498 GtkTextIter start, end;
499 /* Erase any text that was already typed */
500 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
501 gtk_text_buffer_get_iter_at_mark(buffer, &start, input_position);
502 gtk_text_buffer_get_end_iter(buffer, &end);
504 if(win->history_pos == NULL) {
505 gchar *current_input = gtk_text_buffer_get_text(buffer, &start, &end, FALSE);
506 win->history = g_list_prepend(win->history, current_input);
507 win->history_pos = win->history;
510 gtk_text_buffer_delete(buffer, &start, &end);
512 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
515 win->history_pos = g_list_next(win->history_pos);
517 win->history_pos = win->history;
520 win->history_pos = g_list_previous(win->history_pos);
522 /* Insert the history item into the window */
523 gtk_text_buffer_get_end_iter(buffer, &end);
525 g_signal_handler_block(buffer, win->insert_text_handler);
526 gtk_text_buffer_insert_with_tags_by_name(buffer, &end, win->history_pos->data, -1, "default", "input", "glk-input", NULL);
528 g_signal_handler_unblock(buffer, win->insert_text_handler);
532 /* Move to beginning/end of input field */
533 else if(event->keyval == GDK_Home) {
534 GtkTextIter input_iter;
535 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
536 gtk_text_buffer_get_iter_at_mark(buffer, &input_iter, input_position);
537 gtk_text_buffer_place_cursor(buffer, &input_iter);
540 else if(event->keyval == GDK_End) {
541 GtkTextIter end_iter;
542 gtk_text_buffer_get_end_iter(buffer, &end_iter);
543 gtk_text_buffer_place_cursor(buffer, &end_iter);
547 /* Handle the line terminators */
548 else if(event->keyval == GDK_Return || event->keyval == GDK_KP_Enter
549 || g_slist_find(win->current_extra_line_terminators, GUINT_TO_POINTER(event->keyval)))
551 /* Remove signal handlers */
552 g_signal_handler_block(buffer, win->insert_text_handler);
553 g_signal_handler_block(win->widget, win->line_input_keypress_handler);
555 /* Insert a newline (even if line input was terminated with a different key */
557 gtk_text_buffer_get_end_iter(buffer, &end);
558 gtk_text_buffer_insert(buffer, &end, "\n", 1);
559 gtk_text_buffer_place_cursor(buffer, &end);
561 /* Make the window uneditable again and retrieve the text that was input */
562 gtk_text_view_set_editable(GTK_TEXT_VIEW(win->widget), FALSE);
564 int chars_written = finish_text_buffer_line_input(win, TRUE);
565 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
566 event_throw(glk, evtype_LineInput, win, chars_written, 0);
572 /* If this is a text grid window, then redirect the key press to the line input GtkEntry */
573 case wintype_TextGrid:
575 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up
576 || event->keyval == GDK_Down || event->keyval == GDK_KP_Down
577 || event->keyval == GDK_Left || event->keyval == GDK_KP_Left
578 || event->keyval == GDK_Right || event->keyval == GDK_KP_Right
579 || event->keyval == GDK_Tab || event->keyval == GDK_KP_Tab
580 || event->keyval == GDK_Page_Up || event->keyval == GDK_KP_Page_Up
581 || event->keyval == GDK_Page_Down || event->keyval == GDK_KP_Page_Down
582 || event->keyval == GDK_Home || event->keyval == GDK_KP_Home
583 || event->keyval == GDK_End || event->keyval == GDK_KP_End)
584 return FALSE; /* Don't redirect these keys */
585 gtk_widget_grab_focus(win->input_entry);
586 gtk_editable_set_position(GTK_EDITABLE(win->input_entry), -1);
587 gboolean retval = TRUE;
588 g_signal_emit_by_name(win->input_entry, "key-press-event", event, &retval);
589 return retval; /* Block this key event if the entry handled it */
595 /* Internal function: finish handling a line input request, for both text grid and text buffer windows. */
597 write_to_window_buffer(winid_t win, const gchar *inserted_text)
601 /* Convert the string from UTF-8 to Latin-1 or Unicode */
602 if(win->input_request_type == INPUT_REQUEST_LINE)
605 gchar *latin1 = convert_utf8_to_latin1(inserted_text, &bytes_written);
610 /* Place input in the echo stream */
611 if(win->echo_stream != NULL)
612 glk_put_string_stream(win->echo_stream, latin1);
614 /* Copy the string (bytes_written does not include the NULL at the end) */
615 copycount = MIN(win->line_input_buffer_max_len, bytes_written);
616 memcpy(win->line_input_buffer, latin1, copycount);
619 else if(win->input_request_type == INPUT_REQUEST_LINE_UNICODE)
622 gunichar *unicode = convert_utf8_to_ucs4(inserted_text, &items_written);
627 /* Place input in the echo stream */
628 if(win->echo_stream != NULL)
629 glk_put_string_stream_uni(win->echo_stream, unicode);
631 /* Copy the string (but not the NULL at the end) */
632 copycount = MIN(win->line_input_buffer_max_len, items_written);
633 memcpy(win->line_input_buffer_unicode, unicode, copycount * sizeof(gunichar));
637 WARNING("Wrong input request type");
639 win->input_request_type = INPUT_REQUEST_NONE;
643 /* Internal function: Retrieves the input of a TextBuffer window and stores it in the window buffer.
644 * Returns the number of characters written, suitable for inclusion in a line input event. */
646 finish_text_buffer_line_input(winid_t win, gboolean emit_signal)
648 VALID_WINDOW(win, return 0);
649 g_return_val_if_fail(win->type == wintype_TextBuffer, 0);
651 GtkTextIter start_iter, end_iter;
653 GtkTextBuffer *window_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
654 GtkTextMark *input_position = gtk_text_buffer_get_mark(window_buffer, "input_position");
655 gtk_text_buffer_get_iter_at_mark(window_buffer, &start_iter, input_position);
656 gtk_text_buffer_get_end_iter(window_buffer, &end_iter);
658 gchar *inserted_text = gtk_text_buffer_get_text(window_buffer, &start_iter, &end_iter, FALSE);
660 /* If echoing is turned off, remove the text from the window */
661 if(!win->echo_current_line_input)
662 gtk_text_buffer_delete(window_buffer, &start_iter, &end_iter);
664 /* Don't include the newline in the input */
665 char *last_char = inserted_text + strlen(inserted_text) - 1;
666 if(*last_char == '\n')
669 int chars_written = write_to_window_buffer(win, inserted_text);
672 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
674 g_signal_emit_by_name(glk, "line-input", win->rock, inserted_text);
677 /* Add the text to the window input history */
678 if(win->history_pos != NULL)
680 g_free(win->history->data);
681 win->history = g_list_delete_link(win->history, win->history);
683 if(*inserted_text != 0)
684 win->history = g_list_prepend(win->history, g_strdup(inserted_text));
686 win->history_pos = NULL;
688 g_free(inserted_text);
690 return chars_written;
693 /* Internal function: Retrieves the input of a TextGrid window and stores it in the window buffer.
694 * Returns the number of characters written, suitable for inclusion in a line input event. */
696 finish_text_grid_line_input(winid_t win, gboolean emit_signal)
698 VALID_WINDOW(win, return 0);
699 g_return_val_if_fail(win->type == wintype_TextGrid, 0);
701 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
703 gchar *text = g_strdup( gtk_entry_get_text(GTK_ENTRY(win->input_entry)) );
704 /* Move the focus back into the text view */
705 gtk_widget_grab_focus(win->widget);
706 /* Remove entry widget from text view */
707 /* Should be ok even though this is the widget's own signal handler */
708 gtk_container_remove( GTK_CONTAINER(win->widget), GTK_WIDGET(win->input_entry) );
709 win->input_entry = NULL;
710 /* Delete the child anchor */
711 GtkTextIter start, end;
712 gtk_text_buffer_get_iter_at_child_anchor(buffer, &start, win->input_anchor);
714 gtk_text_iter_forward_char(&end); /* Point after the child anchor */
715 gtk_text_buffer_delete(buffer, &start, &end);
716 win->input_anchor = NULL;
718 gchar *spaces = g_strnfill(win->input_length - g_utf8_strlen(text, -1), ' ');
719 gchar *text_to_insert = g_strconcat(text, spaces, NULL);
721 gtk_text_buffer_insert(buffer, &start, text_to_insert, -1);
722 g_free(text_to_insert);
724 int chars_written = write_to_window_buffer(win, text);
727 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
729 g_signal_emit_by_name(glk, "line-input", win->rock, text);
732 /* Add the text to the window input history */
733 if(win->history_pos != NULL)
735 g_free(win->history->data);
736 win->history = g_list_delete_link(win->history, win->history);
739 win->history = g_list_prepend(win->history, g_strdup(text));
740 win->history_pos = NULL;
743 return chars_written;
746 /* Internal function: Callback for signal insert-text on a text buffer window.
747 Runs after the default handler has already inserted the text. */
749 after_window_insert_text(GtkTextBuffer *textbuffer, GtkTextIter *location, gchar *text, gint len, winid_t win)
751 GtkTextBuffer *window_buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
753 /* Set the history position to NULL and erase the text we were already editing */
754 if(win->history_pos != NULL)
756 g_free(win->history->data);
757 win->history = g_list_delete_link(win->history, win->history);
758 win->history_pos = NULL;
761 /* Apply the 'input' style to the text that was entered */
762 GtkTextIter end_iter;
763 gtk_text_buffer_get_end_iter(window_buffer, &end_iter);
764 GtkTextIter input_iter;
765 GtkTextMark *input_position = gtk_text_buffer_get_mark(window_buffer, "input_position");
766 gtk_text_buffer_get_iter_at_mark(window_buffer, &input_iter, input_position);
767 gtk_text_buffer_apply_tag_by_name(window_buffer, "input", &input_iter, &end_iter);
770 /* Internal function: Callback for signal activate on the line input GtkEntry
771 in a text grid window. */
773 on_input_entry_activate(GtkEntry *input_entry, winid_t win)
775 g_signal_handler_block(win->widget, win->line_input_keypress_handler);
777 int chars_written = finish_text_grid_line_input(win, TRUE);
778 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
779 event_throw(glk, evtype_LineInput, win, chars_written, 0);
782 /* Internal function: Callback for signal key-press-event on the line input
783 GtkEntry in a text grid window. */
785 on_input_entry_key_press_event(GtkEntry *input_entry, GdkEventKey *event, winid_t win)
787 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up
788 || event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
790 /* Prevent falling off the end of the history list */
791 if( (event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
792 && win->history_pos && win->history_pos->next == NULL)
794 if( (event->keyval == GDK_Down || event->keyval == GDK_KP_Down)
795 && (win->history_pos == NULL || win->history_pos->prev == NULL) )
798 if(win->history_pos == NULL)
800 const gchar *current_input = gtk_entry_get_text(input_entry);
801 win->history = g_list_prepend(win->history, g_strdup(current_input));
802 win->history_pos = win->history;
805 if(event->keyval == GDK_Up || event->keyval == GDK_KP_Up)
808 win->history_pos = g_list_next(win->history_pos);
810 win->history_pos = win->history;
813 win->history_pos = g_list_previous(win->history_pos);
815 /* Insert the history item into the window */
816 g_signal_handler_block(input_entry, win->line_input_entry_changed);
817 gtk_entry_set_text(input_entry, win->history_pos->data);
818 g_signal_handler_unblock(input_entry, win->line_input_entry_changed);
821 else if(g_slist_find(win->current_extra_line_terminators, GUINT_TO_POINTER(event->keyval)))
823 /* If this key was a line terminator, pretend we pressed enter */
824 on_input_entry_activate(input_entry, win);
830 on_input_entry_changed(GtkEditable *editable, winid_t win)
832 /* Set the history position to NULL and erase the text we were already editing */
833 if(win->history_pos != NULL)
835 g_free(win->history->data);
836 win->history = g_list_delete_link(win->history, win->history);
837 win->history_pos = NULL;
842 keyval_to_glk_keycode(guint keyval, gboolean unicode)
847 case GDK_KP_Up: return keycode_Up;
849 case GDK_KP_Down: return keycode_Down;
851 case GDK_KP_Left: return keycode_Left;
853 case GDK_KP_Right: return keycode_Right;
856 case GDK_KP_Enter: return keycode_Return;
859 case GDK_KP_Delete: return keycode_Delete;
860 case GDK_Escape: return keycode_Escape;
862 case GDK_KP_Tab: return keycode_Tab;
864 case GDK_KP_Page_Up: return keycode_PageUp;
866 case GDK_KP_Page_Down: return keycode_PageDown;
868 case GDK_KP_Home: return keycode_Home;
870 case GDK_KP_End: return keycode_End;
872 case GDK_KP_F1: return keycode_Func1;
874 case GDK_KP_F2: return keycode_Func2;
876 case GDK_KP_F3: return keycode_Func3;
878 case GDK_KP_F4: return keycode_Func4;
879 case GDK_F5: return keycode_Func5;
880 case GDK_F6: return keycode_Func6;
881 case GDK_F7: return keycode_Func7;
882 case GDK_F8: return keycode_Func8;
883 case GDK_F9: return keycode_Func9;
884 case GDK_F10: return keycode_Func10;
885 case GDK_F11: return keycode_Func11;
886 case GDK_F12: return keycode_Func12;
888 keycode = gdk_keyval_to_unicode(keyval);
889 /* If keycode is 0, then keyval was not recognized; also return
890 unknown if Latin-1 input was requested and the character is not in
892 if(keycode == 0 || (!unicode && keycode > 255))
893 return keycode_Unknown;
899 force_char_input_from_queue(winid_t win, event_t *event)
901 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
902 guint keyval = GPOINTER_TO_UINT(g_async_queue_pop(glk_data->char_input_queue));
904 glk_cancel_char_event(win);
907 ChimaraGlk *glk = CHIMARA_GLK(gtk_widget_get_ancestor(win->widget, CHIMARA_TYPE_GLK));
909 g_signal_emit_by_name(glk, "char-input", win->rock, keyval);
912 event->type = evtype_CharInput;
914 event->val1 = keyval_to_glk_keycode(keyval, win->input_request_type == INPUT_REQUEST_CHARACTER_UNICODE);
919 force_line_input_from_queue(winid_t win, event_t *event)
921 ChimaraGlkPrivate *glk_data = g_private_get(glk_data_key);
922 const gchar *text = g_async_queue_pop(glk_data->line_input_queue);
923 glui32 chars_written = 0;
926 if(win->type == wintype_TextBuffer)
928 GtkTextBuffer *buffer = gtk_text_view_get_buffer( GTK_TEXT_VIEW(win->widget) );
929 GtkTextIter start, end;
931 /* Remove signal handlers so the line input doesn't get picked up again */
932 g_signal_handler_block(buffer, win->insert_text_handler);
933 g_signal_handler_block(win->widget, win->line_input_keypress_handler);
935 /* Erase any text that was already typed */
936 GtkTextMark *input_position = gtk_text_buffer_get_mark(buffer, "input_position");
937 gtk_text_buffer_get_iter_at_mark(buffer, &start, input_position);
938 gtk_text_buffer_get_end_iter(buffer, &end);
939 gtk_text_buffer_delete(buffer, &start, &end);
941 /* Make the window uneditable again */
942 gtk_text_view_set_editable(GTK_TEXT_VIEW(win->widget), FALSE);
944 /* Insert the forced input into the window */
945 if(win->echo_current_line_input)
947 gtk_text_buffer_get_end_iter(buffer, &end);
948 gchar *text_to_insert = g_strconcat(text, "\n", NULL);
949 gtk_text_buffer_insert_with_tags_by_name(buffer, &end, text_to_insert, -1, "default", "input", NULL);
952 chars_written = finish_text_buffer_line_input(win, TRUE);
954 else if(win->type == wintype_TextGrid)
956 /* Remove signal handlers so the line input doesn't get picked up again */
957 g_signal_handler_block(win->widget, win->char_input_keypress_handler);
959 /* Insert the forced input into the window */
960 gtk_entry_set_text(GTK_ENTRY(win->input_entry), text);
961 chars_written = finish_text_grid_line_input(win, TRUE);
965 event->type = evtype_LineInput;
967 event->val1 = chars_written;
971 /*** Internal function: cancels any pending input requests on the window and presents a warning if not INPUT_REQUEST_NONE ***/
973 cancel_old_input_request(winid_t win)
975 switch(win->input_request_type) {
976 case INPUT_REQUEST_NONE:
977 break; /* All is well */
978 case INPUT_REQUEST_CHARACTER:
979 case INPUT_REQUEST_CHARACTER_UNICODE:
980 glk_cancel_char_event(win);
981 WARNING("Cancelling pending char event");
983 case INPUT_REQUEST_LINE:
984 case INPUT_REQUEST_LINE_UNICODE:
985 glk_cancel_line_event(win, NULL);
986 WARNING("Cancelling pending line event");
989 WARNING("Could not cancel pending input request: unknown input request");
994 * glk_set_echo_line_event:
995 * @win: The window in which to change the echoing behavior.
996 * @val: Zero to turn off echoing, nonzero for normal echoing.
998 * Normally, after line input is completed or cancelled in a buffer window, the
999 * library ensures that the complete input line (or its latest state, after
1000 * cancelling) is displayed at the end of the buffer, followed by a newline.
1001 * This call allows you to suppress this behavior. If the @val argument is zero,
1002 * all <emphasis>subsequent</emphasis> line input requests in the given window
1003 * will leave the buffer unchanged after the input is completed or cancelled;
1004 * the player's input will not be printed. If @val is nonzero, subsequent input
1005 * requests will have the normal printing behavior.
1008 * Note that this feature is unrelated to the window's echo stream.
1011 * If you turn off line input echoing, you can reproduce the standard input
1012 * behavior by following each line input event (or line input cancellation) by
1013 * printing the input line, in the Input style, followed by a newline in the
1016 * The glk_set_echo_line_event() does not affect a pending line input request.
1017 * It also has no effect in non-buffer windows.
1019 * In a grid window, the game can overwrite the input area at will, so there
1020 * is no need for this distinction.
1023 * Not all libraries support this feature. You can test for it with
1024 * %gestalt_LineInputEcho.
1027 glk_set_echo_line_event(winid_t win, glui32 val)
1029 VALID_WINDOW(win, return);
1031 if(win->type != wintype_TextBuffer)
1032 return; /* Quietly do nothing */
1034 win->echo_line_input = val? TRUE : FALSE;
1037 /* Internal function to convert from a Glk keycode to a GDK keyval. */
1039 keycode_to_gdk_keyval(glui32 keycode)
1051 case keycode_Return:
1053 case keycode_Delete:
1055 case keycode_Escape:
1059 case keycode_PageUp:
1061 case keycode_PageDown:
1062 return GDK_Page_Down;
1085 case keycode_Func10:
1087 case keycode_Func11:
1089 case keycode_Func12:
1092 return GDK_BackSpace;
1094 unsigned keyval = gdk_unicode_to_keyval(keycode);
1095 if(keyval < 0x01000000) /* magic number meaning illegal unicode point */
1100 /* Internal function to decide whether @keycode is a valid line terminator. */
1102 is_valid_line_terminator(glui32 keycode)
1105 case keycode_Escape:
1115 case keycode_Func10:
1116 case keycode_Func11:
1117 case keycode_Func12:
1124 * glk_set_terminators_line_event:
1125 * @win: The window for which to set the line input terminator keys.
1126 * @keycodes: An array of <code>keycode_</code> constants, of length @count.
1127 * @count: The array length of @keycodes.
1129 * It is possible to request that other keystrokes complete line input as well.
1130 * (This allows a game to intercept function keys or other special keys during
1131 * line input.) To do this, call glk_set_terminators_line_event(), and pass an
1132 * array of @count keycodes. These must all be special keycodes (see <link
1133 * linkend="chimara-Character-Input">Character Input</link>). Do not include
1134 * regular printable characters in the array, nor %keycode_Return (which
1135 * represents the default <keycap>enter</keycap> key and will always be
1136 * recognized). To return to the default behavior, pass a %NULL or empty array.
1138 * The glk_set_terminators_line_event() affects <emphasis>subsequent</emphasis>
1139 * line input requests in the given window. It does not affect a pending line
1143 * This distinction makes life easier for interpreters that set up UI
1144 * callbacks only at the start of input.
1147 * A library may not support this feature; if it does, it may not support all
1148 * special keys as terminators. (Some keystrokes are reserved for OS or
1149 * interpreter control.) You can test for this with %gestalt_LineTerminators and
1150 * %gestalt_LineTerminatorKey.
1153 glk_set_terminators_line_event(winid_t win, glui32 *keycodes, glui32 count)
1155 VALID_WINDOW(win, return);
1157 g_slist_free(win->extra_line_terminators);
1158 win->extra_line_terminators = NULL;
1160 if(keycodes == NULL || count == 0)
1164 for(i = 0; i < count; i++)
1166 unsigned key = keycode_to_gdk_keyval(keycodes[i]);
1167 if(is_valid_line_terminator(keycodes[i]))
1168 win->extra_line_terminators = g_slist_prepend(win->extra_line_terminators, GUINT_TO_POINTER(key));
1170 WARNING_S("Ignoring invalid line terminator", gdk_keyval_name(key));