gacela_client (void)
{
char *line;
+ char *history_path;
+
+ asprintf (&history_path, "%s/.gacela_history", getenv("HOME"));
init_gacela_client ();
- read_history (".gacela_history");
+ read_history (history_path);
while (1) {
line = readline ("gacela> ");
free (line);
}
- write_history (".gacela_history");
+ write_history (history_path);
+ free (history_path);
}
static void*
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)");
+ // scm_c_eval_string ("(read-enable 'case-insensitive)");
// Bindings for C functions and structs
SDL_register_functions (NULL);
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 ();
+ if (fork () == 0) {
+ scm_with_guile (&init_gacela, NULL);
+ load_scheme_files (dirname (argv[0]));
+ //scm_shell (argc, argv);
+ scm_c_eval_string ("(start-server 1234)");
+ scm_c_eval_string ("(run-game)");
+ }
+ else {
+ scm_init_guile ();
+ gacela_client ();
+ }
}
--- /dev/null
+;;; Gacela, a GNU Guile extension for fast games development
+;;; Copyright (C) 2009 by Javier Sancho Fernandez <jsf at jsancho dot org>
+;;;
+;;; This program is free software: you can redistribute it and/or modify
+;;; it under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation, either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; This program is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+(define start-server #f)
+
+(let ((server-socket #f) (clients '()))
+ (set! start-server
+ (lambda (port)
+ (set! server-socket (socket PF_INET SOCK_STREAM 0))
+ (setsockopt server-socket SOL_SOCKET SO_REUSEADDR 1)
+ (bind server-socket AF_INET INADDR_ANY port)
+ (listen server-socket 5)))
+)