]> git.jsancho.org Git - gacela.git/blob - src/gacela.c
3c13231027dd926e92130b35b3532f47d4608253
[gacela.git] / src / gacela.c
1 /* Gacela, a GNU Guile extension for fast games development
2    Copyright (C) 2009 by Javier Sancho Fernandez <jsf at jsancho dot org>
3
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.
8
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.
13
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/>.
16 */
17
18 #include <stdio.h>
19 #include <string.h>
20 #include <libguile.h>
21 #include <libgen.h>
22 #include <readline/readline.h>
23 #include <readline/history.h>
24 #include <signal.h>
25 #include <sys/socket.h>
26 #include <netinet/in.h>
27 #include <netdb.h>
28
29 #include "gacela_SDL.h"
30 #include "gacela_GL.h"
31 #include "gacela_FTGL.h"
32
33 // Generic variables
34 int ctrl_c = 0;
35
36 static int
37 find_matching_paren (int k)
38 {
39   register int i;
40   register char c = 0;
41   int end_parens_found = 0;
42
43   // Choose the corresponding opening bracket
44   if (k == ')') c = '(';
45   else if (k == ']') c = '[';
46   else if (k == '}') c = '{';
47
48   for (i = rl_point-2; i >= 0; i--)
49     {
50       // Is the current character part of a character literal?
51       if (i - 2 >= 0
52           && rl_line_buffer[i - 1] == '\\'
53           && rl_line_buffer[i - 2] == '#')
54         ;
55       else if (rl_line_buffer[i] == k)
56         end_parens_found++;
57       else if (rl_line_buffer[i] == '"')
58         {
59           // Skip over a string literal
60           for (i--; i >= 0; i--)
61             if (rl_line_buffer[i] == '"'
62                 && ! (i - 1 >= 0
63                       && rl_line_buffer[i - 1] == '\\'))
64               break;
65         }
66       else if (rl_line_buffer[i] == c)
67         {
68           if (end_parens_found==0) return i;
69           else --end_parens_found;
70         }
71     }
72   return -1;
73 }
74
75 static int
76 match_paren (int x, int k)
77 {
78   int tmp;
79   int fno;
80   SELECT_TYPE readset;
81   struct timeval timeout;
82
83   rl_insert (x, k);
84
85   // Did we just insert a quoted paren?  If so, then don't bounce
86   if (rl_point - 1 >= 1
87       && rl_line_buffer[rl_point - 2] == '\\')
88     return 0;
89
90   tmp = 500000;
91   timeout.tv_sec = tmp / 1000000;
92   timeout.tv_usec = tmp % 1000000;
93   FD_ZERO (&readset);
94   fno = fileno (rl_instream);
95   FD_SET (fno, &readset);
96
97   if (rl_point > 1)
98     {
99       tmp = rl_point;
100       rl_point = find_matching_paren (k);
101       if (rl_point > -1)
102         {
103           rl_redisplay ();
104           scm_std_select (fno + 1, &readset, NULL, NULL, &timeout);
105         }
106       rl_point = tmp;
107     }
108   return 0;
109 }
110
111 void
112 ctrl_c_handler (int signum)
113 {
114   printf ("ERROR: User interrupt\nABORT: (signal)\n");
115   ctrl_c = 1;
116 }
117      
118 static void
119 init_gacela_client ()
120 {
121   struct sigaction new_action;
122
123   // init bouncing parens
124   rl_bind_key (')', match_paren);
125   rl_bind_key (']', match_paren);
126   rl_bind_key ('}', match_paren);
127
128   // SIGINT
129   new_action.sa_handler = ctrl_c_handler;
130   sigemptyset (&new_action.sa_mask);
131   new_action.sa_flags = 0;
132
133   sigaction (SIGINT, &new_action, NULL);
134 }
135
136 int
137 opened_parens (char *line, int k)
138 {
139   int i;
140   int opened = 0;
141   char c = 0;
142
143   // Choose the corresponding opening bracket
144   if (k == ')') c = '(';
145   else if (k == ']') c = '[';
146   else if (k == '}') c = '{';
147
148   for (i = 0; i < strlen (line); i++) {
149     // Is the current character part of a character literal?
150     if (i + 2 >= strlen (line)
151         && line[i] == '#'
152         && line[i + 1] == '\\')
153       i = i + 2;
154     else if (line[i] == '"') {
155       // Skip over a string literal
156       for (i++; i < strlen (line); i++)
157         if (line[i] == '"'
158             && line[i - 1] != '\\')
159               break;
160     }
161     else if (line[i] == c)
162       opened++;
163     else if (line[i] == k)
164       opened--;
165   }
166
167   return opened;
168 }
169
170 void
171 gacela_client (SCM rec_channel, SCM send_channel)
172 {
173   int n;
174   SCM buffer;
175   char *line = NULL, *line_for_sending = NULL;
176   char *history_path;
177   int opened = 0;
178
179   // Command line
180   asprintf (&history_path, "%s/.gacela_history", getenv("HOME"));
181
182   init_gacela_client ();
183   read_history (history_path);
184
185   while (1) {
186     if (opened > 0)
187       line = readline ("... ");
188     else
189       line = readline ("gacela> ");
190
191     if (!line) break;
192
193     opened += opened_parens (line, ')');
194     ctrl_c = 0;
195
196     if (line && *line)
197       {
198         add_history (line);
199         if (line_for_sending == NULL) {
200           line_for_sending = strdup (line);
201         }
202         else {
203           line_for_sending = realloc (line_for_sending, strlen (line_for_sending) + strlen (line) + 2);
204           line_for_sending = strcat (line_for_sending, " ");
205           line_for_sending = strcat (line_for_sending, line);
206         }
207
208         if (opened <= 0) {
209           scm_write (scm_from_locale_string (line_for_sending), send_channel);
210           scm_force_output (send_channel);
211           free (line_for_sending);
212           line_for_sending = NULL;
213
214           while (scm_char_ready_p (rec_channel) == SCM_BOOL_F) {
215             if (ctrl_c) break;
216             sleep (0.5);
217           }
218           if (ctrl_c)
219             ctrl_c = 0;
220           else {
221             buffer = scm_read (rec_channel);
222             if (strlen (scm_to_locale_string (buffer)) > 0)
223               printf ("%s\n", scm_to_locale_string (buffer));
224           }
225         }
226       }
227     free (line);
228   }
229
230   write_history (history_path);
231   free (history_path);
232 }
233
234 static void*
235 init_scheme (void *data, int argc, char **argv)
236 {
237   // Guile configuration
238   scm_c_eval_string ("(set-repl-prompt! \"gacela> \")");
239   scm_c_eval_string ("(use-modules (ice-9 readline))");
240   scm_c_eval_string ("(activate-readline)");
241   scm_c_eval_string ("(use-modules (ice-9 optargs))");
242   scm_c_eval_string ("(use-modules (ice-9 receive))");
243
244   // Bindings for C functions and structs
245   SDL_register_functions (NULL);
246   GL_register_functions (NULL);
247   FTGL_register_functions (NULL);
248
249   return NULL;
250 }
251
252 void
253 load_scheme_files (char *path)
254 {
255   char load_path[strlen (path) + 1024];
256
257   sprintf (load_path, "(set! %%load-path (cons \"%s\" %%load-path))", path);
258   scm_c_eval_string (load_path);
259   scm_primitive_load_path (scm_from_locale_string ("gacela_loader.scm"));
260 }
261
262 void
263 init_gacela (char *path)
264 {
265   scm_with_guile (&init_scheme, NULL);
266   load_scheme_files (path);
267   scm_c_eval_string ("(init-video-mode)");
268 }
269
270 void
271 start_server (int port)
272 {
273   char *start_server;
274
275   asprintf (&start_server, "(start-server #:port %d)", port);
276   scm_c_eval_string (start_server);
277 }
278
279 void
280 start_local_server (SCM pipes)
281 {
282   char start_server[100];
283
284   scm_c_define ("pipes", pipes);
285   scm_c_eval_string ("(start-server #:pipes pipes)");
286 }
287
288 void
289 start_remote_client (char *hostname, int port)
290 {
291   SCM client_socket;
292   char *connect_to_server;
293
294   asprintf (&connect_to_server, "(let ((s (socket PF_INET SOCK_STREAM 0))) (connect s AF_INET (car (hostent:addr-list (gethost \"%s\"))) %d) s)", hostname, port);
295   client_socket = scm_c_eval_string (connect_to_server);
296   gacela_client (client_socket, client_socket);
297 }
298
299 int
300 main (int argc, char *argv[])
301 {
302   char *arg;
303   int mode = 0;   // dev: 1, server: 2, client: 3
304   char *host;
305   int port = 0;
306   int i;
307   SCM fd1, fd2;
308   int pid;
309
310   // Checking arguments
311   for (i = 1; i < argc; i++) {
312     if (strcmp (argv[i], "--dev") == 0)
313       mode = 1;
314     else if (strncmp (argv[i], "--server", 8) == 0) {
315       mode = 2;
316       arg = strtok (argv[i], "=");
317       arg = strtok (NULL, "=");
318       if (arg != NULL)
319         port = atoi (arg);
320     }
321     else if (strncmp (argv[i], "--client", 8) == 0) {
322       mode = 3;
323       arg = strtok (argv[i], "=");
324       arg = strtok (NULL, "=");
325       if (arg != NULL) {
326         host = strtok (arg, ":");
327         arg = strtok (NULL, ":");
328         if (arg != NULL)
329           port = atoi (arg);
330       }
331     }
332   }
333
334   scm_init_guile ();
335
336   if (mode == 1) {
337     fd1 = scm_pipe ();
338     fd2 = scm_pipe ();
339     pid = fork ();
340
341     if (pid == 0) {
342       scm_close (SCM_CAR (fd1));
343       scm_close (SCM_CDR (fd2));
344       init_gacela (dirname (argv[0]));
345       start_local_server (scm_cons (SCM_CAR (fd2), SCM_CDR (fd1)));
346     }
347     else {
348       scm_close (SCM_CDR (fd1));
349       scm_close (SCM_CAR (fd2));
350       gacela_client (SCM_CAR (fd1), SCM_CDR (fd2));
351       kill (pid, SIGKILL);
352     }
353   }
354   else if (mode == 2 && port != 0) {
355     init_gacela (dirname (argv[0]));
356     start_server (port);
357   }
358   else if (mode == 3 && port != 0)
359     start_remote_client (host, port);
360   else {
361     init_gacela (dirname (argv[0]));
362     scm_shell (argc, argv);
363     SDL_Quit ();
364   }
365 }