Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use new signal API for window module. | David Thompson | 2014-02-17 | 1 | -19/+21 |
| | | | | | | | * 2d/window.scm: (<window>): Don't export. (window-width, window-height, window-position, window-projection): Use new signal API. (open-window): Set 'window-position'. | ||||
* | Add window-projection signal. | David Thompson | 2014-02-15 | 1 | -0/+8 |
| | | | | * 2d/window.scm (window-projection): New variable. | ||||
* | Add window-close-hook. | David Thompson | 2014-01-26 | 1 | -1/+9 |
| | | | | * 2d/window.scm: New hook. | ||||
* | Move OpenGL viewport settings to game module. | David Thompson | 2014-01-26 | 1 | -7/+2 |
| | | | | | | * 2d/window.scm (open-window): Remove viewport config. * 2d/game.scm (draw): Add viewport config. | ||||
* | Move SDL event handling to a separate module. | David Thompson | 2014-01-26 | 1 | -1/+1 |
| | | | | | | | | | | | | * 2d/event.scm: New module. * 2d/game.scm: Remove event handling code. * 2d/keyboard.scm: Import (2d event) instead of (2d game). * 2d/mouse.scm: Import (2d event) instead of (2d game). * 2d/window.scm: Import (2d event) instead of (2d game). | ||||
* | Add window-resize-hook. | David Thompson | 2014-01-26 | 1 | -1/+6 |
| | | | | * 2d/window.scm (window-resize-hook): New hook. | ||||
* | Initialize audio in audio module instead of window module. | David Thompson | 2014-01-22 | 1 | -2/+0 |
| | | | | | | | * 2d/window.scm (open-window, close-window): Remove open/close audio calls. * 2d/audio.scm: Open audio when module is imported. | ||||
* | Update window module to use new signals API. | David Thompson | 2013-12-15 | 1 | -4/+7 |
| | | | | | * 2d/window.scm (window-width, window-height): New signals. (window-position): Define in terms of signal-map. | ||||
* | Make init a non-keyword argument in make-signal procedure. | David Thompson | 2013-12-12 | 1 | -1/+1 |
| | | | | | | | * 2d/signals.scm (make-signal): Change parameter list. * 2d/mouse.scm (mouse-position): Remove #:init keyword. * 2d/time.scm (time-interval, time-delay): Remove #:init keyword. * 2d/window.scm (window-size): Remove #:init keyword. | ||||
* | Open window when (2d window) is imported. | David Thompson | 2013-12-03 | 1 | -0/+7 |
| | | | | * 2d/window.scm: Open window on import. | ||||
* | Move event handlers and signals into their own modules. | David Thompson | 2013-12-01 | 1 | -0/+12 |
| | | | | | | | | | | | * 2d/game.scm (register-event-handler): New procedure. (mouse-*, key-*, window-*): Remove signals. * 2d/window.scm (window-size): New signal. * 2d/mouse.scm: New module. * 2d/keyboard.scm: New module. | ||||
* | Use dynamic-wind in with-window form. | David Thompson | 2013-12-01 | 1 | -4/+4 |
| | | | | * 2d/window.scm (with-window): Use dynamic-wind. | ||||
* | Add with-window form. | David Thompson | 2013-11-30 | 1 | -10/+36 |
| | | | | | | | | | * 2d/window.scm (<window>): New record type. (open-window): Use window object. (close-window): Change docstring. * 2d/game.scm (<game>, make-game): Remove window properties. (run-game): Remove window logic. | ||||
* | Clean up docstrings for window module. | David Thompson | 2013-09-15 | 1 | -4/+3 |
| | |||||
* | Open SDL audio when window is opened. | David Thompson | 2013-09-11 | 1 | -0/+3 |
| | |||||
* | Change window module API. | David Thompson | 2013-09-06 | 1 | -19/+10 |
| | | | | | Users will no longer have to interface directly with this module. They will simply specify window parameters when creating game objects. | ||||
* | Make the origin the top-left corner of the window again. | David Thompson | 2013-08-26 | 1 | -1/+1 |
| | |||||
* | Change origin to bottom-left corner of window. | David Thompson | 2013-08-17 | 1 | -1/+1 |
| | |||||
* | Init SDL when window module is loaded instead of needing an explicit init call. | David Thompson | 2013-08-15 | 1 | -8/+4 |
| | |||||
* | Add optional resizable paramter to open-window. | David Thompson | 2013-07-21 | 1 | -16/+18 |
| | |||||
* | Update to guile-sdl 0.5.0 API. | David Thompson | 2013-07-21 | 1 | -2/+2 |
| | |||||
* | Add window-title and set-window-title! procedures. | David Thompson | 2013-07-17 | 1 | -1/+11 |
| | |||||
* | Move initialization to it's own procedure. | David Thompson | 2013-07-17 | 1 | -6/+12 |
| | |||||
* | Enable unicode characters in SDL. | David Thompson | 2013-06-25 | 1 | -1/+3 |
| | |||||
* | Add close-window procedure. | David Thompson | 2013-06-16 | 1 | -1/+7 |
| | |||||
* | Add window module. | David Thompson | 2013-06-16 | 1 | -0/+46 |