| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
* chickadee.scm (run-game): Invert all Y coordinates received from SDL.
|
|
|
|
| |
* chickadee/math/matrix.scm (matrix4-translate!): Add rect support.
|
| |
|
|
|
|
|
|
|
|
| |
I found that the 'framebuffer-srgb-capable' setting does not work with
Mesa 17.2.1. Best to just get rid of it.
* chickadee/window.scm (open-window): Remove setting for
'framebuffer-srgb-capable'.
|
|
|
|
|
| |
* chickadee/math/matrix.scm (matrix4-translate!): Add support for
the vec3 type.
|
| |
|
|
|
|
| |
* chickadee/math/quaternion.scm (display-quaternion): New procedure.
|
|
|
|
|
| |
* chickadee/math/quaternion.scm (with-new-quaternion): Build
quaternion manually instead of using make-null-quaternion.
|
|
|
|
|
| |
* chickadee/math/matrix.scm (matrix4-rotate!, matrix4-rotate): New
procedures.
|
|
|
|
|
|
| |
* chickadee/render/font.scm (load-font): Check for .xml and .fnt file
extensions and DTRT.
(parse-fnt, parse-bmfont-sxml): New procedure.
|
| |
|
|
|
|
| |
* chickadee/render/font.scm (load-tile-font): New procedure.
|
|
|
|
|
|
|
| |
* chickadee/render/font.scm (<font-char>) [texture, region]: Remove.
[texture-region]: New field.
(load-font): Use texture regions.
(draw-text): Render using texture regions.
|
| |
|
|
|
|
| |
* chickadee/scripting/agenda.scm (reset-agenda): New procedure.
|
|
|
|
|
| |
* chickadee/render/texture.scm (make-texture-region): Fix broken
texcoord width/height calculation.
|
| |
|
| |
|
|
|
|
|
| |
I have no damn clue why #:select causes this problem, but simply not
using it fixes things!
|
|
|
|
|
| |
* chickadee/path-finding.scm: New file.
* Makefile.am (SOURCES): Add it.
|
|
|
|
|
|
|
|
|
|
| |
* chickadee/render/sprite.scm (%default-texture-region): Rename to...
(%default-texcoords): ...this.
(draw-sprite): Replace #:texture-region arg with #:texcoords. Add
support for texture regions. Update docstring.
(draw-nine-patch): Add support for texture regions.
* chickadee/render/font.scm (draw-text): Change #:texture-region to
#:texcoords in draw-sprite call.
|
|
|
|
|
|
|
| |
* chickadee/render/texture.scm (list->texture-atlas): Create texture
regions. Switch from rects to 4-tuples.
(texture-atlas, texture-atlas-ref): Update docstring.
(split-texture): Create texture regions.
|
|
|
|
|
| |
* chickadee/render/texture.scm (<texture>)[gl-size]: New field.
(null-texture, make-texture): Add gl-size argument.
|
|
|
|
| |
* chickadee/render/texture.scm (<texture-region>): New record type.
|
|
|
|
|
| |
* chickadee/render/sprite.scm (double-sprite-batch-size!): Get
reference to bytevectors before unmapping old buffers.
|
|
|
|
|
|
|
| |
* chickadee/scripting/script.scm (<script>)[children]: New field.
(current-script): New variable.
(cancel-script): Cancel all child scripts, too.
(spawn-script): Register new script as a child of the current script.
|
|
|
|
|
| |
* chickadee/scripting/script.scm (script-running?, script-complete?):
Test for the correct status instead of 'cancelled'.
|
|
|
|
|
|
|
|
|
|
| |
* chickadee/scripting/coroutine.scm: Move to...
* chickadee/scripting/script.scm: ...here, and s/coroutine/script.
* chickadee/scripting/channel.scm (channel-get, channel-put): Update
docstring to say "script" instead of "coroutine".
* chickadee/scripting.scm: s/coroutine/script/
* Makefile.am (SOURCES): Replace coroutine.scm with script.scm.
* doc/api.texi: s/coroutine/script/
|
|
|
|
|
| |
* chickadee/scripting.scm (wait): Rename to...
(sleep): ...this.
|
|
|
|
|
|
|
| |
* chickadee/scripting/coroutine.scm (spawn-coroutine): Save dynamic
state during coroutine execution.
* chickadee/scripting.scm (wait): Schedule continuation in the
coroutine's current agenda.
|
| |
|
| |
|
|
|
|
|
|
|
| |
* chickadee/render/asset.scm: New file.
* chickadee/render/scene.scm: New file.
* data/shaders/pbr/pbr-frag.glsl: New file.
* data/shaders/pbr/pbr-vert.glsl: New file.
|
| |
|
|
|
|
|
| |
* chickadee/render/shader.scm: Export shader-attributes, attribute?,
attribute-name, attribute-location, and attribute-type.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
* chickadee/math.scm (cotan): New procedure.
|
|
|
|
|
| |
* chickadee/math/vector.scm (display-vec2, display-vec3): New
procedures.
|
|
|
|
| |
* chickadee/math/matrix.scm (orthographic-projection): s/transform/matrix/
|
|
|
|
| |
* chickadee/math/matrix.scm (perspective-projection): New procedure.
|
|
|
|
| |
* chickadee/math/matrix.scm (display-matrix4): New procedure.
|
| |
|
| |
|
| |
|
|
|
|
| |
* chickadee/buffer.scm: Add docstrings.
|
|
|
|
|
|
| |
Everything is Scheme here, no need to say so over and over!
* doc/api.texi: Remove "Scheme " from the defvr and deffn commands.
|
|
|
|
|
|
|
|
|
| |
* chickadee/buffer.scm: New file.
* Makefile.am (SOURCES): Add it.
* .dir-locals.el: Add indent rules for with-buffer and
with-current-buffer.
* examples/buffer.scm: New file.
* doc/api.texi (Buffers): Add docs.
|