| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
| |
* 2d/font.scm (render-text): Bail when surface is #f.
(make-label): Don't make vertices when there is no texture.
(draw-label): Don't draw when there is no texture.
|
|
|
|
| |
* 2d/color.scm: Import (2d color).
|
|
|
|
|
|
|
| |
* 2d/color.scm (color*, color+, color-, color-inverse): New procedures.
(use-color): Delete it.
(make-color): Clamp channels to the range [0, 1].
(rgba, rgb): Use low-level color constructor.
|
|
|
|
| |
* INSTALL.org (SDL): Add 'sdl-ttf' to emerge snippet.
|
| |
|
|
|
|
|
|
| |
Thanks to Arne Babenhauserheide <bab@draketo.de>
* INSTALL.org: New instructions.
|
|
|
|
| |
* 2d/audio.scm (enable-audio): New procedure.
|
|
|
|
|
|
|
| |
* 2d/signal.scm (define-signal): Correctly handle when previous variable
holds a non-signal value and coerce non-signal values into signals.
(make-signal-maybe): New procedure.
(splice-signals!): Assume that inputs are always valid signals.
|
|
|
|
|
| |
* 2d/vector2.scm (vector2-translate): Delete it.
(vector2-scale): Delete it.
|
|
|
|
|
|
|
| |
* 2d/font.scm (font-shader): Set to #f initially.
(enable-fonts): New procedure.
* examples/font.scm: Enable fonts.
|
|
|
|
|
|
|
| |
* 2d/sprite.scm (sprite-shader): Set to #f initially.
(enable-sprites): New procedure.
* 2d/common.scm: Enable sprites.
|
|
|
|
|
|
| |
* 2d/window.scm (open-window): Remove default argument.
* examples/common.scm: Open a window.
|
| |
|
|
|
|
|
|
| |
* 2d/repl.scm (start-2d-repl): New procedure.
* examples/common.scm: Start the REPL server.
* sandbox: Start the REPL server.
|
| |
|
|
|
|
|
| |
* README.org: Remove FTGL from dependencies list.
* INSTALL.org: Remove FTGL installation instructions.
|
|
|
|
|
| |
* README.org: Talk about FRP, remove sprite batch section for now, and
adjust some language.
|
|
|
|
| |
* 2d/coroutine.scm: Update license header.
|
|
|
|
| |
* sandbox: New file.
|
|
|
|
|
| |
* 2d/agenda.scm: Add GPLv3 header.
* 2d/repl.scm: Add GPLv3 header.
|
| |
|
|
|
|
|
| |
* 2d/mvars.scm: Delete it.
* Makefile.am (SOURCES): Remove '2d/mvars.scm'.
|
|
|
|
| |
* Makefile.am (SOURCES): Add '2d/event.scm'.
|
|
|
|
| |
* examples/font.scm: Remove GC counter.
|
|
|
|
|
|
|
|
|
| |
* 2d/repl.scm: New file.
* 2d/repl/repl.scm: Delete it.
* 2d/repl/server.scm: Delete it.
* Makfile.am (REPL_SOURCES): Delete it.
(SOURCES): Add '2d/repl.scm'.
* examples/common.scm: Use cooperative REPL module.
|
|
|
|
|
| |
* 2d/signal.scm (signal-do): Delete it.
(signal-tap): New procedure.
|
|
|
|
| |
Makefile.am (SOURCES): Remove '2d/time.scm'.
|
|
|
|
| |
* TODO.org: Check item.
|
|
|
|
|
|
|
|
| |
* examples/Makefile.am (examples_DATA): Remove 'shader.scm'.
(shaderdir, shader_DATA): Remove.
* examples/shader.scm: Delete file.
* examples/shaders/fragment-shader.glsl: Delete file.
* examples/shaders/vertex-shader.glsl: Delete file.
|
|
|
|
| |
* examples/common.scm: Import (2d signal).
|
|
|
|
|
| |
* examples/common.scm: Change format for displaying FPS in console.
* examples/font.scm: Use new signal API generating labels.
|
|
|
|
|
| |
* 2d/fps.scm (fps): Convert to signal.
(accumulate-fps!): Set fps signal.
|
|
|
|
|
| |
* 2d/keyboard.scm (key-last-down, key-last-up, key-arrows, key-wasd):
Use new signal API.
|
|
|
|
|
| |
* 2d/mouse.scm (mouse-x, mouse-y, mouse-position, mouse-last-down)
(mouse-last-up, mouse-down?): Use new signal API.
|
|
|
|
|
|
|
| |
* 2d/window.scm: (<window>): Don't export.
(window-width, window-height, window-position, window-projection): Use
new signal API.
(open-window): Set 'window-position'.
|
|
|
|
|
|
| |
* 2d/font.scm: Import (2d signal).
* 2d/game.scm: Import (2d signal).
* 2d/sprite.scm: Import (2d signal).
|
|
|
|
|
| |
* 2d/signal.scm (%signal?): New procedure.
(signal?): Redefined to be 'signal-box?'.
|
|
|
|
| |
* Makefile.am (SOURCES): Change '2d/signals.scm' to '2d/signal.scm'.
|
|
|
|
| |
* 2d/signal.scm (hook->signal): New procedure.
|
|
|
|
|
|
|
| |
* 2d/signal.scm (make-boxed-signal, %signal-ref, %signal-set!): Don't
export.
(signal-sample, signal-delay, signal-throttle): New procedures.
* 2d/time.scm: Delete file.
|
|
|
|
| |
* 2d/signal.scm (signal-propagate!): Dereference the correct signal.
|
|
|
|
|
| |
* 2d/signal (<signal>): Add inputs field.
(%make-signal): Add inputs parameter.
|
|
|
|
|
|
|
|
| |
Signals are now boxed so that their contents can be overwritten at the
REPL and the signal graph will magically be updated.
* 2d/signal.scm: New module.
* 2d/signals.scm: Delete old module.
|
|
|
|
| |
* 2d/helpers.scm (define-guardian): Don't use 'after-gc-hook'.
|
|
|
|
| |
This reverts commit 38f9696fed2b55e6f5484433298b7c34141da243.
|
|
|
|
|
|
| |
* 2d/agenda.scm (<agenda>): Add mutex field.
(make-agenda): Initialize with recursive mutex.
(tick-agenda!, clear-agenda!, schedule): Protect using 'with-mutex'.
|
|
|
|
| |
* Makefile.am (WRAPPER_SOURCES): Remove '2d/wrappers/ftgl.scm'.
|
|
|
|
| |
* examples/Makefile.am (fontdir, font_DATA): Delete them.
|
|
|
|
| |
* TODO.org: Check off items for 0.2 release.
|
|
|
|
| |
* examples/tilemap.scm: Remove references to sprite batches.
|