X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=gacela.lisp;h=de3a3f886a848fee75beb12de1266fa5758bb080;hb=cb537bf64e0effe6e8b43cb98e23936d1434a9fb;hp=5f52cb045cabdc692124eb42e8ee085a051ad0ad;hpb=95beeaac7a0e035769abb62ad6ce049e0ea7ef82;p=gacela.git diff --git a/gacela.lisp b/gacela.lisp index 5f52cb0..de3a3f8 100644 --- a/gacela.lisp +++ b/gacela.lisp @@ -168,9 +168,14 @@ (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 @@ -188,6 +193,13 @@ (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))) @@ -234,14 +246,18 @@ (init-video-mode) (SDL_WM_SetCaption ,title "") (init-frame-time) + (refresh-running-mobs) (process-events) (do () ((quit?)) (glClear (+ GL_COLOR_BUFFER_BIT GL_DEPTH_BUFFER_BIT)) + (logic-mobs) + (render-mobs) (glLoadIdentity) ,@code (SDL_GL_SwapBuffers) (delay-frame) (init-frame-time) + (refresh-running-mobs) (process-events) (setq running nil)))) @@ -249,7 +265,7 @@ (free-all-resources) ; (quit-audio) (quit-video-mode) -; (quit-all-procs) + (quit-all-mobs) ; (clear-events) ; (quit-events) (quit-sdl))