X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=gacela.lisp;h=6a93356b0da12ecd5c331a0eb4267b9e126ba39e;hb=e3b5db38d5d5bf4e77e21e594223e89f534fa336;hp=45df43c9891388c4eb2a905a7474066d03c49eeb;hpb=870f146b156daf8910c0ee549df1bc47d509169e;p=gacela.git diff --git a/gacela.lisp b/gacela.lisp index 45df43c..6a93356 100644 --- a/gacela.lisp +++ b/gacela.lisp @@ -81,14 +81,6 @@ (glHint GL_PERSPECTIVE_CORRECTION_HINT GL_NICEST) t) -(defmacro progn-textures (&body code) - `(let (values) - (init-video-mode) - (glEnable GL_TEXTURE_2D) - (setq values (multiple-value-list (progn ,@code))) - (glDisable GL_TEXTURE_2D) - (apply #'values values))) - (defun init-lighting () (init-video-mode) (glEnable GL_LIGHTING)) @@ -156,60 +148,88 @@ ;;; Resources Manager -(defstruct resource plist free-function time) +(defstruct resource plist constructor destructor time) (defun make-resource-texture (&key filename min-filter mag-filter) `(:type texture :filename ,filename :min-filter ,min-filter :mag-filter ,mag-filter)) -(defun make-resource-font (&key filename size encoding) - `(:type font :filename ,filename :size ,size :enconding ,encoding)) +(defun make-resource-font (&key filename encoding) + `(:type font :filename ,filename :enconding ,encoding)) + +(defmacro get-rtime (key) + `(resource-time (gethash ,key resources-table))) + +(defmacro get-rplist (key) + `(resource-plist (gethash ,key resources-table))) + +(defmacro get-rconstructor (key) + `(resource-constructor (gethash ,key resources-table))) + +(defmacro get-rdestructor (key) + `(resource-destructor (gethash ,key resources-table))) + +(let ((resources-table (make-hash-table :test 'equal)) + (expiration-time 50000)) -(let ((resources-table (make-hash-table :test 'equal))) + (defun set-expiration-time (new-time) + (setq expiration-time new-time)) - (defun set-resource (key plist free-function &key static) + (defun set-resource (key plist constructor destructor &key static) + (expire-resources) (setf (gethash key resources-table) (make-resource :plist plist - :free-function free-function - :time (if static -1 (SDL_GetTicks))))) + :constructor constructor + :destructor destructor + :time (if static t (SDL_GetTicks))))) (defun get-resource (key) - (let ((resource (gethash key resources-table))) - (cond ((null resource) nil) - (t (cond ((/= (resource-time resource) -1) - (setf (resource-time resource) (SDL_GetTicks)) - (setf (gethash key resources-table) resource))) - (resource-plist resource))))) + (cond ((null (gethash key resources-table)) nil) + (t (let ((time (get-rtime key))) + (cond ((null time) (funcall (get-rconstructor key))) + ((numberp time) (setf (get-rtime key) (SDL_GetTicks)))) + (get-rplist key))))) + + (defun free-resource (key) + (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) (funcall (resource-free-function res) (resource-address res))) - resources-table) - (clrhash resources-table))) + (maphash (lambda (key res) (free-resource key)) resources-table))) -;;; Connection with the GUI -(let (socket) - (defun connect-to-gui () - (setq socket (si::socket 1984 :host "localhost"))) +;;; Gacela Server for development mode +(let (socket clients) + (defun start-server (port) + (when (null socket) (setq socket (si::socket port :server #'eval-from-clients)))) - (defun eval-from-gui () - (cond ((and socket (listen socket)) (eval (read socket)))))) + (defun check-server-connections () + (when (and socket (si::listen socket)) (push (si:accept socket) clients))) + (defun eval-from-clients () + (dolist (cli clients) + (when (si::listen cli) + (let ((sto *standard-output*)) + (setq *standard-output* cli) + (setq *break-enable* nil) + (eval (read cli)) + (setq *break-enable* t) + (setq *standard-output* sto))))) + + (defun stop-server () + (when socket + (dolist (cli clients) (si::close cli)) + (si::close socket) + (setq socket nil clients 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))) @@ -228,23 +248,30 @@ (init-video-mode) (SDL_WM_SetCaption ,title "") (init-frame-time) + (check-server-connections) + (eval-from-clients) + (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) + (check-server-connections) + (eval-from-clients) + (refresh-running-mobs) (process-events) (setq running nil)))) (defun quit-game () -; (free-all-resources) + (free-all-resources) ; (quit-audio) -; (quit-ttf) (quit-video-mode) -; (quit-all-procs) + (quit-all-mobs) ; (clear-events) ; (quit-events) (quit-sdl))