]> git.jsancho.org Git - gacela.git/blobdiff - gacela.lisp
(no commit message)
[gacela.git] / gacela.lisp
index 5f52cb045cabdc692124eb42e8ee085a051ad0ad..d5d28525a2f56718f986c9704f302937858eee39 100644 (file)
@@ -15,7 +15,7 @@
 ;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
-(in-package :gacela)
+(in-package :gacela :nicknames '(gg))
 
 ;;; Default values for Gacela
 (defvar *width-screen* 640)
 (defmacro get-rdestructor (key)
   `(resource-destructor (gethash ,key resources-table)))
 
-(let ((resources-table (make-hash-table :test 'equal)))
+(let ((resources-table (make-hash-table :test 'equal))
+      (expiration-time 50000))
+
+  (defun set-expiration-time (new-time)
+    (setq expiration-time new-time))
 
   (defun set-resource (key plist constructor destructor &key static)
+    (expire-resources)
     (setf (gethash key resources-table)
          (make-resource :plist plist
                         :constructor constructor
     (funcall (get-rdestructor key))
     (setf (get-rtime key) nil))
 
+  (defun expire-resource (key &optional (now (SDL_GetTicks)))
+    (let ((time (get-rtime key)))
+      (cond ((and (numberp time) (> (- now time) expiration-time)) (free-resource key)))))
+
+  (defun expire-resources ()
+    (maphash (lambda (key res) (expire-resource key)) resources-table))
+
   (defun free-all-resources ()
     (maphash (lambda (key res) (free-resource key)) resources-table)))
 
 
-;;; Connection with the GUI
+;;; Connection with Gacela Skin
 (let (socket)
-  (defun connect-to-gui ()
-    (setq socket (si::socket 1984 :host "localhost")))
+  (defun start-skin-client (port)
+    (when (null socket) (setq socket (si::socket port :host "localhost"))))
 
-  (defun eval-from-gui ()
-    (cond ((and socket (listen socket)) (eval (read socket))))))
+  (defun eval-from-skin ()
+    (when (si::listen socket)
+      (secure-block socket (eval (read socket)))))
 
+  (defun stop-skin-client ()
+    (when socket
+      (si::close socket)
+      (setq socket nil))))
 
-;;; GaCeLa Functions
-(let (commands)
-  (defun prog-command (command)
-    (setq commands (cons command commands)))
-
-  (defun run-commands ()
-    (cond (commands
-          (let (running)
-            (setq running commands)
-            (setq commands nil)
-            (labels ((run-com (comlst)
-                              (cond (comlst (run-com (cdr comlst))
-                                            (eval (read-from-string (concatenate 'string "(progn " (car comlst) ")")))))))
-                    (run-com running)))))))
 
+;;; GaCeLa Functions
 (let (time (time-per-frame (/ 1000.0 *frames-per-second*)))
   (defun set-frames-per-second (fps)
     (setq time-per-frame (/ 1000.0 fps)))
     (let ((frame-time (- (SDL_GetTicks) time)))
       (cond ((< frame-time time-per-frame)
             (SDL_Delay (- time-per-frame frame-time)))))))
-      
+
 
 (defmacro run-game (title &body code)
-  `(progn
+  `(let ((game-function (lambda () ,@code)))
      (init-video-mode)
      (SDL_WM_SetCaption ,title "")
-     (init-frame-time)
-     (process-events)
-     (do () ((quit?))
-        (glClear (+ GL_COLOR_BUFFER_BIT GL_DEPTH_BUFFER_BIT))
-        (glLoadIdentity)
-        ,@code
-        (SDL_GL_SwapBuffers)
-        (delay-frame)
-        (init-frame-time)
-        (process-events)
-        (setq running nil))))
+     (set-game-code game-function)
+     (cond ((not (game-running?))
+           (init-frame-time)
+           (process-events)
+           (game-loop)))))
+
+(let (running game-code)
+  (defun game-loop ()
+    (setq running t)
+    (do () ((quit?))
+       (glClear (+ GL_COLOR_BUFFER_BIT GL_DEPTH_BUFFER_BIT))
+       (glLoadIdentity)
+       (when (functionp game-code) (funcall game-code))
+       (SDL_GL_SwapBuffers)
+       (delay-frame)
+       (init-frame-time)
+       (eval-from-skin)
+       (process-events))
+    (setq running nil))
+
+  (defun game-running? ()
+    running)
+
+  (defun set-game-code (game-function)
+    (setq game-code game-function)))
 
 (defun quit-game ()
   (free-all-resources)
 ;  (quit-audio)
   (quit-video-mode)
-;  (quit-all-procs)
+  (quit-all-mobs)
 ;  (clear-events)
 ;  (quit-events)
   (quit-sdl))