]> git.jsancho.org Git - gacela.git/blob - src/gacela.c
(no commit message)
[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 <libguile.h>
19 #include <libgen.h>
20 #include <readline/readline.h>
21 #include <readline/history.h>
22 #include <signal.h>
23 #include "gacela_SDL.h"
24 #include "gacela_GL.h"
25 #include "gacela_FTGL.h"
26
27
28 static int
29 find_matching_paren (int k)
30 {
31   register int i;
32   register char c = 0;
33   int end_parens_found = 0;
34
35   /* Choose the corresponding opening bracket.  */
36   if (k == ')') c = '(';
37   else if (k == ']') c = '[';
38   else if (k == '}') c = '{';
39
40   for (i = rl_point-2; i >= 0; i--)
41     {
42       /* Is the current character part of a character literal?  */
43       if (i - 2 >= 0
44           && rl_line_buffer[i - 1] == '\\'
45           && rl_line_buffer[i - 2] == '#')
46         ;
47       else if (rl_line_buffer[i] == k)
48         end_parens_found++;
49       else if (rl_line_buffer[i] == '"')
50         {
51           /* Skip over a string literal.  */
52           for (i--; i >= 0; i--)
53             if (rl_line_buffer[i] == '"'
54                 && ! (i - 1 >= 0
55                       && rl_line_buffer[i - 1] == '\\'))
56               break;
57         }
58       else if (rl_line_buffer[i] == c)
59         {
60           if (end_parens_found==0) return i;
61           else --end_parens_found;
62         }
63     }
64   return -1;
65 }
66
67 static int
68 match_paren (int x, int k)
69 {
70   int tmp;
71   int fno;
72   SELECT_TYPE readset;
73   struct timeval timeout;
74
75   rl_insert (x, k);
76
77   /* Did we just insert a quoted paren?  If so, then don't bounce.  */
78   if (rl_point - 1 >= 1
79       && rl_line_buffer[rl_point - 2] == '\\')
80     return 0;
81
82   tmp = 500000;
83   timeout.tv_sec = tmp / 1000000;
84   timeout.tv_usec = tmp % 1000000;
85   FD_ZERO (&readset);
86   fno = fileno (rl_instream);
87   FD_SET (fno, &readset);
88
89   if (rl_point > 1)
90     {
91       tmp = rl_point;
92       rl_point = find_matching_paren (k);
93       if (rl_point > -1)
94         {
95           rl_redisplay ();
96           scm_std_select (fno + 1, &readset, NULL, NULL, &timeout);
97         }
98       rl_point = tmp;
99     }
100   return 0;
101 }
102
103 void
104 ctrl_c_handler (int signum)
105 {
106   printf ("ERROR: User interrupt\nABORT: (signal)\n");
107 }
108      
109 static void
110 init_gacela_client ()
111 {
112   struct sigaction new_action;
113
114   /* init bouncing parens */
115   rl_bind_key (')', match_paren);
116   rl_bind_key (']', match_paren);
117   rl_bind_key ('}', match_paren);
118
119   /* SIGINT */
120   new_action.sa_handler = ctrl_c_handler;
121   sigemptyset (&new_action.sa_mask);
122   new_action.sa_flags = 0;
123
124   sigaction (SIGINT, &new_action, NULL);
125 }
126
127 void
128 gacela_client (void)
129 {
130   char *line;
131   char *history_path;
132
133   asprintf (&history_path, "%s/.gacela_history", getenv("HOME"));
134
135   init_gacela_client ();
136   read_history (history_path);
137
138   while (1) {
139     line = readline ("gacela> ");
140     if (!line) break;
141     if (line && *line)
142       {
143         printf ("%s\n", line);
144         add_history (line);
145       }
146     free (line);
147   }
148
149   write_history (history_path);
150   free (history_path);
151 }
152
153 static void*
154 init_gacela (void *data, int argc, char **argv)
155 {
156   // Guile configuration
157   scm_c_eval_string ("(set-repl-prompt! \"gacela>\")");
158   scm_c_eval_string ("(use-modules (ice-9 readline))");
159   scm_c_eval_string ("(activate-readline)");
160   scm_c_eval_string ("(use-modules (ice-9 optargs))");
161   scm_c_eval_string ("(use-modules (ice-9 receive))");
162   //  scm_c_eval_string ("(read-enable 'case-insensitive)");
163
164   // Bindings for C functions and structs
165   SDL_register_functions (NULL);
166   GL_register_functions (NULL);
167   FTGL_register_functions (NULL);
168
169   return NULL;
170 }
171
172 void
173 load_scheme_files (char *path)
174 {
175   char load_path[strlen (path) + 1024];
176
177   sprintf (load_path, "(set! %%load-path (cons \"%s\" %%load-path))", path);
178   scm_c_eval_string (load_path);
179   scm_primitive_load_path (scm_from_locale_string ("gacela_loader.scm"));
180 }
181
182 int
183 main (int argc, char *argv[])
184 {
185   if (fork () == 0) {
186     scm_with_guile (&init_gacela, NULL);
187     load_scheme_files (dirname (argv[0]));
188     //scm_shell (argc, argv);
189     scm_c_eval_string ("(start-server 1234)");
190     scm_c_eval_string ("(run-game)");
191   }
192   else {
193     scm_init_guile ();
194     gacela_client ();
195   }
196 }