]> git.jsancho.org Git - gacela.git/blobdiff - src/gacela.c
(no commit message)
[gacela.git] / src / gacela.c
index e1e05aa2a66d7d9acf5633dc476d7a5d46852de5..66bd40a6229b32fddbd9771a611bb916d7e5cafc 100644 (file)
 
 #include <libguile.h>
 #include <libgen.h>
+#include <readline/readline.h>
+#include <readline/history.h>
 #include "gacela_SDL.h"
 #include "gacela_GL.h"
 #include "gacela_FTGL.h"
 
-static void*
-register_functions (void* data)
+
+static int
+find_matching_paren (int k)
 {
-  SDL_register_functions (NULL);
-  GL_register_functions (NULL);
-  FTGL_register_functions (NULL);
-  return NULL;
+  register int i;
+  register char c = 0;
+  int end_parens_found = 0;
+
+  /* Choose the corresponding opening bracket.  */
+  if (k == ')') c = '(';
+  else if (k == ']') c = '[';
+  else if (k == '}') c = '{';
+
+  for (i = rl_point-2; i >= 0; i--)
+    {
+      /* Is the current character part of a character literal?  */
+      if (i - 2 >= 0
+         && rl_line_buffer[i - 1] == '\\'
+         && rl_line_buffer[i - 2] == '#')
+       ;
+      else if (rl_line_buffer[i] == k)
+       end_parens_found++;
+      else if (rl_line_buffer[i] == '"')
+       {
+         /* Skip over a string literal.  */
+         for (i--; i >= 0; i--)
+           if (rl_line_buffer[i] == '"'
+               && ! (i - 1 >= 0
+                     && rl_line_buffer[i - 1] == '\\'))
+             break;
+       }
+      else if (rl_line_buffer[i] == c)
+       {
+         if (end_parens_found==0) return i;
+         else --end_parens_found;
+       }
+    }
+  return -1;
 }
 
-void
-load_scheme_file (char *path, char *filename)
+static int
+match_paren (int x, int k)
 {
-  char fn[strlen (path) + 1024];
+  int tmp;
+  int fno;
+  SELECT_TYPE readset;
+  struct timeval timeout;
+
+  rl_insert (x, k);
 
-  strcpy (fn, path);
-  strcat (fn, "/");
-  strcat (fn, filename);
+  /* Did we just insert a quoted paren?  If so, then don't bounce.  */
+  if (rl_point - 1 >= 1
+      && rl_line_buffer[rl_point - 2] == '\\')
+    return 0;
 
-  scm_c_primitive_load (fn);
+  tmp = 500000;
+  timeout.tv_sec = tmp / 1000000;
+  timeout.tv_usec = tmp % 1000000;
+  FD_ZERO (&readset);
+  fno = fileno (rl_instream);
+  FD_SET (fno, &readset);
+
+  if (rl_point > 1)
+    {
+      tmp = rl_point;
+      rl_point = find_matching_paren (k);
+      if (rl_point > -1)
+        {
+          rl_redisplay ();
+          scm_std_select (fno + 1, &readset, NULL, NULL, &timeout);
+        }
+      rl_point = tmp;
+    }
+  return 0;
+}
+
+static void
+init_gacela_client ()
+{
+  /* init bouncing parens */
+  rl_bind_key (')', match_paren);
+  rl_bind_key (']', match_paren);
+  rl_bind_key ('}', match_paren);
+
+  /* SIGINT */
+  scm_c_eval_string ("(sigaction SIGINT (lambda (sig) (format #t \"ERROR: User interrupt~%ABORT: (signal)~%\")))");
 }
 
 void
-load_scheme_files (char *path)
+gacela_client (void)
 {
-  load_scheme_file (path, "gacela.scm");
-  load_scheme_file (path, "gacela_ttf.scm");
+  char *line;
+
+  init_gacela_client ();
+
+  while (1) {
+    line = readline ("gacela>");
+    printf ("%s\n", line);
+    if (line && *line)
+      add_history (line);
+    if (strcmp(line, "fuera") == 0)
+      break;
+    free (line);
+  }
 }
 
-int
-main (int argc, char *argv[])
+static void*
+init_gacela (void *data, int argc, char **argv)
 {
-  scm_with_guile (&register_functions, NULL);
-  scm_init_guile ();
+  // Guile configuration
   scm_c_eval_string ("(set-repl-prompt! \"gacela>\")");
   scm_c_eval_string ("(use-modules (ice-9 readline))");
   scm_c_eval_string ("(activate-readline)");
   scm_c_eval_string ("(use-modules (ice-9 optargs))");
+  scm_c_eval_string ("(use-modules (ice-9 receive))");
+  scm_c_eval_string ("(read-enable 'case-insensitive)");
+
+  // Bindings for C functions and structs
+  SDL_register_functions (NULL);
+  GL_register_functions (NULL);
+  FTGL_register_functions (NULL);
+
+  return NULL;
+}
+
+void
+load_scheme_files (char *path)
+{
+  char load_path[strlen (path) + 1024];
+
+  sprintf (load_path, "(set! %%load-path (cons \"%s\" %%load-path))", path);
+  scm_c_eval_string (load_path);
+  scm_primitive_load_path (scm_from_locale_string ("gacela_loader.scm"));
+}
+
+int
+main (int argc, char *argv[])
+{
+  /*
+  scm_with_guile (&init_gacela, NULL);
   load_scheme_files (dirname (argv[0]));
   scm_shell (argc, argv);
+  */
+  scm_init_guile ();
+  gacela_client ();
 }