1 /* Gacela, a GNU Guile extension for fast games development
2 Copyright (C) 2009 by Javier Sancho Fernandez <jsf at jsancho dot org>
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include <readline/readline.h>
23 #include <readline/history.h>
25 #include <sys/socket.h>
26 #include <netinet/in.h>
29 #include "gacela_SDL.h"
30 #include "gacela_GL.h"
31 #include "gacela_FTGL.h"
37 find_matching_paren (int k)
41 int end_parens_found = 0;
43 // Choose the corresponding opening bracket
44 if (k == ')') c = '(';
45 else if (k == ']') c = '[';
46 else if (k == '}') c = '{';
48 for (i = rl_point-2; i >= 0; i--)
50 // Is the current character part of a character literal?
52 && rl_line_buffer[i - 1] == '\\'
53 && rl_line_buffer[i - 2] == '#')
55 else if (rl_line_buffer[i] == k)
57 else if (rl_line_buffer[i] == '"')
59 // Skip over a string literal
60 for (i--; i >= 0; i--)
61 if (rl_line_buffer[i] == '"'
63 && rl_line_buffer[i - 1] == '\\'))
66 else if (rl_line_buffer[i] == c)
68 if (end_parens_found==0) return i;
69 else --end_parens_found;
76 match_paren (int x, int k)
81 struct timeval timeout;
85 // Did we just insert a quoted paren? If so, then don't bounce
87 && rl_line_buffer[rl_point - 2] == '\\')
91 timeout.tv_sec = tmp / 1000000;
92 timeout.tv_usec = tmp % 1000000;
94 fno = fileno (rl_instream);
95 FD_SET (fno, &readset);
100 rl_point = find_matching_paren (k);
104 scm_std_select (fno + 1, &readset, NULL, NULL, &timeout);
112 ctrl_c_handler (int signum)
114 printf ("ERROR: User interrupt\nABORT: (signal)\n");
119 init_gacela_client ()
121 struct sigaction new_action;
123 // init bouncing parens
124 rl_bind_key (')', match_paren);
125 rl_bind_key (']', match_paren);
126 rl_bind_key ('}', match_paren);
129 new_action.sa_handler = ctrl_c_handler;
130 sigemptyset (&new_action.sa_mask);
131 new_action.sa_flags = 0;
133 sigaction (SIGINT, &new_action, NULL);
137 gacela_client (SCM rec_channel, SCM send_channel)
145 asprintf (&history_path, "%s/.gacela_history", getenv("HOME"));
147 init_gacela_client ();
148 read_history (history_path);
151 line = readline ("gacela> ");
157 scm_write (scm_from_locale_string ("("), send_channel);
158 scm_write (scm_from_locale_string (line), send_channel);
159 scm_write (scm_from_locale_string (")"), send_channel);
161 while (scm_char_ready_p (rec_channel) == SCM_BOOL_F) {
168 buffer = scm_read_line (rec_channel);
169 printf ("%s\n", scm_to_locale_string (buffer));
175 write_history (history_path);
180 init_gacela (void *data, int argc, char **argv)
182 // Guile configuration
183 scm_c_eval_string ("(set-repl-prompt! \"gacela>\")");
184 scm_c_eval_string ("(use-modules (ice-9 readline))");
185 scm_c_eval_string ("(activate-readline)");
186 scm_c_eval_string ("(use-modules (ice-9 optargs))");
187 scm_c_eval_string ("(use-modules (ice-9 receive))");
189 // Bindings for C functions and structs
190 SDL_register_functions (NULL);
191 GL_register_functions (NULL);
192 FTGL_register_functions (NULL);
198 load_scheme_files (char *path)
200 char load_path[strlen (path) + 1024];
202 sprintf (load_path, "(set! %%load-path (cons \"%s\" %%load-path))", path);
203 scm_c_eval_string (load_path);
204 scm_primitive_load_path (scm_from_locale_string ("gacela_loader.scm"));
208 start_single (char *working_path)
210 char *argv = "guile";
212 scm_with_guile (&init_gacela, NULL);
213 load_scheme_files (working_path);
214 scm_shell (1, &argv);
218 start_server (char *working_path, int port)
220 char start_server[100];
222 scm_with_guile (&init_gacela, NULL);
223 load_scheme_files (working_path);
224 sprintf (start_server, "(start-server %d)", port);
225 scm_c_eval_string (start_server);
229 start_local_server (char *working_path, SCM pipes)
231 char start_server[100];
233 scm_with_guile (&init_gacela, NULL);
234 load_scheme_files (working_path);
235 scm_c_define ("pipes", pipes);
236 scm_c_eval_string ("(start-server pipes)");
240 start_remote_client (char *hostname, int port)
243 struct hostent *server;
244 struct sockaddr_in serv_addr;
246 // Connect to the server
247 sockfd = socket (AF_INET, SOCK_STREAM, 0);
248 server = gethostbyname (hostname);
249 bzero ((char *) &serv_addr, sizeof (serv_addr));
250 serv_addr.sin_family = AF_INET;
251 bcopy ((char *)server->h_addr, (char *)&serv_addr.sin_addr.s_addr, server->h_length);
252 serv_addr.sin_port = htons (port);
253 if (connect (sockfd, (struct sockaddr *) &serv_addr, sizeof (serv_addr)) == -1) {
254 printf ("%s [%d.%d.%d.%d] %d: Connection refused\n", hostname, server->h_addr[0], server->h_addr[1], server->h_addr[2], server->h_addr[3], port);
257 gacela_client (sockfd, sockfd);
263 main (int argc, char *argv[])
266 int mode = 0; // shell: 1, server: 2, client: 3
273 char *string = "prueba\n";
277 // Checking arguments
278 for (i = 1; i < argc; i++) {
279 if (strcmp (argv[i], "--shell-mode") == 0)
281 else if (strncmp (argv[i], "--server", 8) == 0) {
283 arg = strtok (argv[i], "=");
284 arg = strtok (NULL, "=");
288 else if (strncmp (argv[i], "--client", 8) == 0) {
290 arg = strtok (argv[i], "=");
291 arg = strtok (NULL, "=");
293 host = strtok (arg, ":");
294 arg = strtok (NULL, ":");
304 start_single (dirname (argv[0]));
305 else if (mode == 2 && port != 0)
306 start_server (dirname (argv[0]), port);
307 else if (mode == 3 && port != 0)
308 //start_remote_client (host, port);
316 start_local_server (dirname (argv[0]), pipes);
318 gacela_client (SCM_CAR (pipes), SCM_CDR (pipes));
322 scm_write (scm_from_locale_string ("prueba"), SCM_CDR (pipes));
326 while (scm_char_ready_p (SCM_CAR (pipes)) == SCM_BOOL_F) {
331 buffer = scm_read_line (SCM_CAR (pipes));
332 printf ("%s\n", scm_to_locale_string (buffer));
339 stream = fdopen (p[0], "w");
340 fprintf (stream, "prueba\n");
348 stream = fdopen (p[1], "r");
349 while ((c = fgetc (stream)) != EOF)