Freeciv-3.2
Loading...
Searching...
No Matches
luaconsole.c
Go to the documentation of this file.
1/*****************************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12*****************************************************************************/
13
14#ifdef HAVE_CONFIG_H
15#include <fc_config.h>
16#endif
17
18#include <gdk/gdkkeysyms.h>
19
20/* utility */
21#include "fcintl.h"
22#include "log.h"
23#include "shared.h"
24
25/* common */
26#include "featured_text.h"
27#include "game.h"
28
29/* client */
30#include "options.h"
31
32/* client/gui-gtk-4.0 */
33#include "chatline.h"
34#include "gui_main.h"
35#include "gui_stuff.h"
36
37/* client/luascript */
38#include "script_client.h"
39
40#include "luaconsole.h"
41
45
46#define MAX_LUACONSOLE_HISTORY 20
47
48struct luaconsole_data {
49 struct gui_dialog *shell;
53
54 struct genlist *history_list;
55 int history_pos;
56};
57
59
60
61static struct luaconsole_data *luaconsole_dialog_get(void);
62static void luaconsole_dialog_create(struct luaconsole_data *pdialog);
63static void luaconsole_dialog_refresh(struct luaconsole_data *pdialog);
64static void luaconsole_dialog_destroy(struct luaconsole_data *pdialog);
65
67 gpointer data);
69
70static void luaconsole_input_return(GtkEntry *w, gpointer data);
72
74 int response, gpointer data);
75static void luaconsole_load_file_popup(void);
77 gpointer data);
78
79/*************************************************************************/
83{
85
86 /* Create a container for the dialog. */
87 luaconsole = fc_calloc(1, sizeof(*luaconsole));
90
93
95}
96
97/*************************************************************************/
101{
102 if (luaconsole != NULL) {
105 }
106
109
111 }
112}
113
114/*************************************************************************/
118{
119 return luaconsole;
120}
121
122/*************************************************************************/
126{
127 struct luaconsole_data *pdialog = luaconsole_dialog_get();
128
129 fc_assert_ret(pdialog);
130 if (pdialog->shell == NULL) {
132 }
133
134 gui_dialog_present(pdialog->shell);
135 if (raise) {
136 gui_dialog_raise(pdialog->shell);
137 }
138}
139
140/*************************************************************************/
144{
145 struct luaconsole_data *pdialog = luaconsole_dialog_get();
146
147 fc_assert_ret(pdialog);
148 if (pdialog->shell == NULL) {
150 }
151}
152
153/*************************************************************************/
157{
158 struct luaconsole_data *pdialog = luaconsole_dialog_get();
159
160 fc_assert_ret_val(pdialog, FALSE);
161
162 return (NULL != pdialog->shell);
163}
164
165/*************************************************************************/
169{
170 struct luaconsole_data *pdialog = luaconsole_dialog_get();
171
172 fc_assert_ret(pdialog);
173
174 if (NULL != pdialog->shell) {
176 }
177}
178
179/*************************************************************************/
182static void luaconsole_dialog_create(struct luaconsole_data *pdialog)
183{
184 GtkWidget *entry, *vgrid, *sw, *text, *notebook;
185 int grid_row = 0;
186
187 fc_assert_ret(NULL != pdialog);
188
190 notebook = right_notebook;
191 } else {
192 notebook = bottom_notebook;
193 }
194
195 gui_dialog_new(&pdialog->shell, GTK_NOTEBOOK(notebook), pdialog, TRUE);
196 gui_dialog_set_title(pdialog->shell, _("Client Lua Console"));
197
202
207 gtk_grid_attach(GTK_GRID(vgrid), sw, 0, grid_row++, 1, 1);
208
215 g_signal_connect(text, "resize",
217
219 gtk_widget_realize(text);
221
222 pdialog->message_area = GTK_TEXT_VIEW(text);
224 &pdialog->message_area);
225
226 /* The lua console input line. */
234 NULL);
235 g_signal_connect(entry, "key_press_event",
237 pdialog->entry = entry;
239 &pdialog->entry);
240
241 /* Load lua script command button. */
242 gui_dialog_add_button(pdialog->shell, "window-close", _("_Close"),
244
245 gui_dialog_add_button(pdialog->shell, "document-open",
246 _("Load Lua Script"), LUACONSOLE_RES_OPEN);
249
251 gui_dialog_show_all(pdialog->shell);
252}
253
254/*************************************************************************/
258{
259 const char *theinput;
260 struct luaconsole_data *pdialog = luaconsole_dialog_get();
261 GtkEntryBuffer *buffer;
262
263 fc_assert_ret(pdialog);
264 fc_assert_ret(pdialog->history_list);
265
266 buffer = gtk_entry_get_buffer(w);
268
269 if (*theinput) {
272
274 void *history_data;
275
276 history_data = genlist_get(pdialog->history_list, -1);
279 }
280
282 pdialog->history_pos = -1;
283 }
284
285 gtk_entry_buffer_set_text(buffer, "", -1);
286}
287
288/*************************************************************************/
292 int response, gpointer data)
293{
294 switch (response) {
296 break;
297 default:
299 return;
300 }
301
302 switch (response) {
305 break;
306 }
307}
308
309/*************************************************************************/
313{
315
316 /* Create the selector */
319 _("_Cancel"), GTK_RESPONSE_CANCEL,
320 _("_Open"), GTK_RESPONSE_OK,
321 NULL);
323
324 g_signal_connect(filesel, "response",
326
327 /* Display that dialog */
329}
330
331/*************************************************************************/
335 gpointer data)
336{
337 if (response == GTK_RESPONSE_OK) {
339
340 if (file != NULL) {
341 gchar *filename = g_file_get_parse_name(file);
342
343 if (NULL != filename) {
344 luaconsole_printf(ftc_luaconsole_input, "(file)> %s", filename);
345 script_client_do_file(filename);
346 g_free(filename);
347 }
348
349 g_object_unref(file);
350 }
351 }
352
354}
355
356/*************************************************************************/
360{
361 struct luaconsole_data *pdialog = luaconsole_dialog_get();
364
365 fc_assert_ret_val(pdialog, FALSE);
367
369 switch (keyval) {
370 case GDK_KEY_Up:
371 if (pdialog->history_pos < genlist_size(pdialog->history_list) - 1) {
373 ++pdialog->history_pos), -1);
375 }
376 return TRUE;
377
378 case GDK_KEY_Down:
379 if (pdialog->history_pos >= 0) {
380 pdialog->history_pos--;
381 }
382
383 if (pdialog->history_pos >= 0) {
385 pdialog->history_pos), -1);
386 } else {
387 gtk_entry_buffer_set_text(buffer, "", -1);
388 }
390 return TRUE;
391
392 default:
393 break;
394 }
395
396 return FALSE;
397}
398
399/*************************************************************************/
405 gpointer data)
406{
407 static int old_width = 0, old_height = 0;
408
409 if (width != old_width
410 || height != old_height) {
414 }
415}
416
417/*************************************************************************/
424{
425 struct luaconsole_data *pdialog = luaconsole_dialog_get();
426
427 fc_assert_ret(pdialog);
428
429 if (pdialog->shell) {
430 GtkTextIter end;
431
432 fc_assert_ret(NULL != pdialog->message_buffer);
433 fc_assert_ret(NULL != pdialog->message_area);
434
437 &end, 0.0, TRUE, 1.0, 0.0);
438 }
439}
440
441/*************************************************************************/
444static void luaconsole_dialog_refresh(struct luaconsole_data *pdialog)
445{
446 fc_assert_ret(NULL != pdialog);
447}
448
449/*************************************************************************/
452static void luaconsole_dialog_destroy(struct luaconsole_data *pdialog)
453{
454 fc_assert_ret(NULL != pdialog);
455
456 if (pdialog->shell) {
457 gui_dialog_destroy(pdialog->shell);
458 fc_assert(NULL == pdialog->shell);
459 }
460 fc_assert(NULL == pdialog->message_area);
461 fc_assert(NULL == pdialog->entry);
462}
463
464/*************************************************************************/
struct canvas int int struct sprite int int int int height
Definition canvas_g.h:44
struct canvas int int struct sprite int int int width
Definition canvas_g.h:44
char * incite_cost
Definition comments.c:75
#define _(String)
Definition fcintl.h:67
const struct ft_color ftc_luaconsole_input
#define text_tag_list_iterate_end
#define text_tag_list_iterate(tags, ptag)
int ft_offset_t
bool genlist_remove(struct genlist *pgenlist, const void *punlink)
Definition genlist.c:329
struct genlist * genlist_new(void)
Definition genlist.c:31
void * genlist_get(const struct genlist *pgenlist, int idx)
Definition genlist.c:224
void genlist_prepend(struct genlist *pgenlist, void *data)
Definition genlist.c:526
void genlist_destroy(struct genlist *pgenlist)
Definition genlist.c:57
int genlist_size(const struct genlist *pgenlist)
Definition genlist.c:192
void set_message_buffer_view_link_handlers(GtkWidget *view)
Definition chatline.c:744
void scroll_if_necessary(GtkTextView *textview, GtkTextMark *scroll_target)
Definition chatline.c:557
void apply_text_tag(const struct text_tag *ptag, GtkTextBuffer *buf, ft_offset_t text_start_offset, const char *text)
Definition chatline.c:755
GtkWidget * bottom_notebook
Definition gui_main.c:129
GtkWidget * toplevel
Definition gui_main.c:125
GtkWidget * right_notebook
Definition gui_main.c:129
#define GUI_GTK_OPTION(optname)
Definition gui_main.h:25
void gui_dialog_destroy(struct gui_dialog *dlg)
Definition gui_stuff.c:954
void gui_dialog_present(struct gui_dialog *dlg)
Definition gui_stuff.c:835
void gui_dialog_raise(struct gui_dialog *dlg)
Definition gui_stuff.c:865
void gui_dialog_new(struct gui_dialog **pdlg, GtkNotebook *notebook, gpointer user_data, bool check_top)
Definition gui_stuff.c:517
void gui_dialog_response_set_callback(struct gui_dialog *dlg, GUI_DIALOG_RESPONSE_FUN fun)
Definition gui_stuff.c:988
void gui_dialog_show_all(struct gui_dialog *dlg)
Definition gui_stuff.c:795
void gui_dialog_set_title(struct gui_dialog *dlg, const char *title)
Definition gui_stuff.c:935
GtkWidget * gui_dialog_add_button(struct gui_dialog *dlg, const char *icon_name, const char *text, int response)
Definition gui_stuff.c:706
void setup_dialog(GtkWidget *shell, GtkWidget *parent)
Definition gui_stuff.c:287
#define MAX_LUACONSOLE_HISTORY
Definition luaconsole.c:46
void luaconsole_dialog_popdown(void)
Definition luaconsole.c:144
static struct luaconsole_data * luaconsole_dialog_get(void)
Definition luaconsole.c:118
static void luaconsole_dialog_scroll_to_bottom(void)
Definition luaconsole.c:414
void luaconsole_dialog_init(void)
Definition luaconsole.c:83
bool luaconsole_dialog_is_open(void)
Definition luaconsole.c:157
static void luaconsole_load_file_callback(GtkWidget *widget, gint response, gpointer data)
Definition luaconsole.c:333
static void luaconsole_dialog_create(struct luaconsole_data *pdialog)
Definition luaconsole.c:183
static void luaconsole_response_callback(struct gui_dialog *pgui_dialog, int response, gpointer data)
Definition luaconsole.c:289
static struct luaconsole_data * luaconsole
Definition luaconsole.c:58
static void luaconsole_dialog_refresh(struct luaconsole_data *pdialog)
Definition luaconsole.c:435
luaconsole_res
Definition luaconsole.c:42
@ LUACONSOLE_RES_OPEN
Definition luaconsole.c:43
static void luaconsole_dialog_destroy(struct luaconsole_data *pdialog)
Definition luaconsole.c:443
static void luaconsole_input_return(GtkEntry *w, gpointer data)
Definition luaconsole.c:257
void real_luaconsole_append(const char *astring, const struct text_tag_list *tags)
Definition luaconsole.c:459
static void luaconsole_load_file_popup(void)
Definition luaconsole.c:310
void real_luaconsole_dialog_update(void)
Definition luaconsole.c:169
void luaconsole_dialog_popup(bool raise)
Definition luaconsole.c:126
static gboolean luaconsole_input_handler(GtkWidget *w, GdkEventKey *ev)
Definition luaconsole.c:353
void luaconsole_dialog_done(void)
Definition luaconsole.c:101
void gui_dialog_add_content_widget(struct gui_dialog *dlg, GtkWidget *wdg)
Definition gui_stuff.c:1104
void widget_destroyed(GtkWidget *wdg, void *data)
Definition gui_stuff.c:1154
static void luaconsole_dialog_area_resize(GtkWidget *widget, int width, int height, gpointer data)
Definition luaconsole.c:404
#define fc_assert_ret(condition)
Definition log.h:191
#define fc_assert(condition)
Definition log.h:176
#define fc_assert_ret_val(condition, val)
Definition log.h:194
void luaconsole_welcome_message(void)
void luaconsole_printf(const struct ft_color color, const char *format,...)
#define fc_calloc(n, esz)
Definition mem.h:38
#define fc_strdup(str)
Definition mem.h:43
@ GUI_GTK_MSGCHAT_SPLIT
Definition options.h:67
bool script_client_do_file(const char *filename)
bool script_client_do_string(const char *str)
struct gui_dialog * shell
Definition luaconsole.c:49
struct genlist * history_list
Definition luaconsole.c:54
GtkWidget * entry
Definition luaconsole.c:52
GtkTextView * message_area
Definition luaconsole.c:51
GtkTextBuffer * message_buffer
Definition luaconsole.c:50
struct tm * fc_localtime(const time_t *timep, struct tm *result)
Definition support.c:1315
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47