summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* game: Accept one camera object as well as a list in start-game-loop.David Thompson2014-09-011-14/+20
| | | | | * sly/game.scm (start-game-loop): Support rendering a single camera object instead of just a list of cameras.
* camera: Add orthographic-camera procedure.David Thompson2014-09-011-0/+20
| | | | * sly/camera (orthographic-camera): New procedure.
* scene: Use dirty checking to improve rendering speed for static nodes.David Thompson2014-08-291-13/+38
| | | | | | | * sly/scene.scm (<scene-node>): Add transform field. (make-scene-node): Initialize transform. (scene-node-dirty?, recompute-transform!): New procedures. (draw-scene-node): Don't generate new transform if node isn't dirty.
* scene: Use quaternions for rotations.David Thompson2014-08-281-2/+3
| | | | | | * sly/scene.scm (make-scene-node): Default rotation to identity-quaternion. (draw-scene-node): Convert quaternion to transformation matrix.
* math: Add square procedure.David Thompson2014-08-281-1/+4
| | | | * sly/math.scm (square): New procedure.
* transition: Add quaternion support.David Thompson2014-08-281-0/+3
| | | | * sly/transition.scm (guess-interpolator): Use slerp for quaternions.
* Add quaternion module.David Thompson2014-08-282-0/+132
| | | | | * Makefile.am (SOURCES): Add 'sly/quaternion.scm'. * sly/quaternion.scm: New file.
* Fixup.David Thompson2014-08-281-1/+1
|
* transition: Rewrite in terms of signal-generator.David Thompson2014-08-281-10/+9
| | | | * sly/transition.scm (transition): Use signal-generator.
* signal: Add signal-timestamp.David Thompson2014-08-271-0/+7
|
* signal: Add signal-negate.David Thompson2014-08-271-0/+6
| | | | * sly/signal.scm (signal-negate): New procedure.
* camera: Use signal-let.David Thompson2014-08-271-5/+4
| | | | * sly/camera.scm (draw-camera): Use signal-let.
* signal: Allow non-signal values to be bound in signal-let.David Thompson2014-08-271-1/+1
| | | | * sly/signal.scm (signal-let): Use signal-ref-maybe instead of signal-ref.
* scene: Use signal-let instead of define/signal-ref.David Thompson2014-08-271-33/+27
| | | | | | | | * sly/scene.scm (scene-node-position, scene-node-scale, scene-node-rotation, scene-node-uniforms, scene-node-children): Do not unbox signal value. (define/signal-ref): Delete it. (update-scene-node, draw-scene-node): Use signal-let.
* sprite: Add docstring for make-sprite.David Thompson2014-08-271-0/+3
| | | | * sly/sprite.scm (make-sprite): Add docstring.
* sprite: Add load-sprite procedure.David Thompson2014-08-271-0/+6
| | | | * sly/sprite.scm (load-sprite): New procedure.
* transform: Use pattern matching in translate and scale procedures.David Thompson2014-08-261-33/+23
| | | | * sly/transform.scm (translate, scale): Use match.
* Rewrite anchor-texture to use pattern matching.David Thompson2014-08-251-22/+24
| | | | * sly/texture.scm (anchor-texture): Use match.
* Add linear texture scaling support.David Thompson2014-08-251-7/+16
| | | | | * sly/texture.scm (bitmap->texture, load-texture): Add min-filter and mag-filter parameters.
* Run draw-hook each time a frame is drawn.David Thompson2014-08-251-0/+1
|
* Update scene graph example.David Thompson2014-08-251-28/+57
| | | | * examples/scene-graph: Update.
* Allow meshes to be scene nodes.David Thompson2014-08-251-28/+25
| | | | | | | * sly/scene.scm (%scene-node-mesh, scene-node-mesh): Delete. (make-scene-node): Remove mesh parameter. (update-scene-node): Skip over mesh nodes. (draw-scene-node): Draw mesh nodes.
* Add make-animated-sprite procedure.David Thompson2014-08-251-3/+26
| | | | * sly/sprite.scm (make-animated-sprite): New procedure.
* Add forever macro.David Thompson2014-08-251-1/+5
| | | | * sly/helpers.scm (forever): New macro.
* Add signal-generator macro.David Thompson2014-08-251-1/+25
| | | | | * sly/signal.scm (yield): New variable. (signal-generator): New macro.
* Update shader files in Makefile.David Thompson2014-08-251-4/+2
| | | | * data/Makefile.am (shaders_DATA): Remove old shaders and add new ones.
* Add scene graph example.David Thompson2014-08-251-0/+128
| | | | * examples/scene-graph.scm: New file.
* Fix texture vertices in cube primitive.David Thompson2014-08-251-32/+32
| | | | * sly/shape.scm (make-cube): Fix texture vertices.
* Export uniform-set!David Thompson2014-08-252-3/+2
| | | | | * sly/mesh.scm (draw-mesh): Use the public uniform-set! * sly/shader.scm: Export uniform-set!
* Use a single default shader for all meshes.David Thompson2014-08-2510-118/+65
| | | | | | | | | | | | | | | | | * data/shaders/default-fragment.glsl: New file. * data/shaders/default-vertex.glsl: New file. * data/shaders/font-fragment.glsl: Delete. * data/shaders/font-vertex.glsl: Delete. * data/shaders/sprite-fragment.glsl: Delete. * data/shaders/sprite-vertex.glsl: Delete. * examples/common.scm: Remove call to enable-sprites. * sly/font.scm (font-shader): Delete. (enable-fonts): Remove shader loading. (make-label): Use default shader. * sly/shape.scm (make-cube): Make texture and shader optional keyword arguments. * sly/sprite.scm (sprite-shader, enable-sprites): Delete. (make-sprite): Make shader an optional keyword argument.
* Add load-default-shader procedure.David Thompson2014-08-251-0/+15
| | | | * sly/shader.scm (load-default-shader): New procedure.
* Support meshes with no texture.David Thompson2014-08-251-5/+9
| | | | * sly/mesh.scm (draw-mesh): Don't bind texture if there isn't one.
* Add shape module.David Thompson2014-08-252-0/+114
| | | | | * Makefile.am (SOURCES): Add it. * sly/shape.scm: New file.
* Delete obsolete primitives module.David Thompson2014-08-251-120/+0
| | | | * sly/primitives.scm: Delete it.
* Convert text label to mesh.David Thompson2014-08-251-58/+27
| | | | | | * sly/font.scm (make-label): Return mesh. (label?, label-font, label-text, label-position, label-color, draw-label): Delete.
* Convert sprite to mesh.David Thompson2014-08-251-142/+23
| | | | * sly/sprite.scm: Rewrite.
* Add half procedure.David Thompson2014-08-251-1/+5
| | | | * sly/math.scm (half): New procedure.
* Render using scenes and cameras.David Thompson2014-08-251-2/+12
| | | | * sly/game.scm (start-game-loop): Add cameras parameter.
* Add scene module.David Thompson2014-08-252-0/+109
| | | | | * Makefile.am (SOURCES): Add it. * sly/scene.scm: New file.
* Add camera module.David Thompson2014-08-252-0/+100
| | | | | * Makefile.am (SOURCES): Add it. * sly/camera.scm: New file.
* Add mesh module.David Thompson2014-08-252-0/+195
| | | | | * Makefile.am (SOURCES): Add it. * sly/mesh.scm: New file.
* Add look-at procedure.David Thompson2014-08-251-1/+13
| | | | * sly/transform.scm (look-at): New procedure.
* Fix normalize procedure.David Thompson2014-08-251-1/+1
| | | | | * sly/vector.scm (normalize): Preserve dimensionality in the case where magnitude is 0.
* Simplify perspective-projection implementation.David Thompson2014-08-252-20/+10
| | | | | * sly/math.scm (cotan): New procedure. * sly/transform.scm (perspective-projection): Simplify.
* Fix transform* procedure.David Thompson2014-08-251-17/+10
| | | | * sly/transform.scm (transform*): Perform matrix multiplication correctly.
* Add gl-scissor procedure.David Thompson2014-08-251-0/+3
| | | | * sly/wrappres/gl.scm (gl-scissor): New procedure.
* Enable OpenGL scissor test.David Thompson2014-08-251-0/+1
| | | | * sly/window.scm (open-window): Enable GL scissor test.
* Remove unused module import.David Thompson2014-08-251-1/+0
| | | | * sly/helpers.scm: Remove (sly game) import.
* Accept strings instead of symbols for shader uniforms and attributes.David Thompson2014-08-251-4/+2
| | | | | * 2d/shader.scm (uniform-location, attribute-location): Accept a string instead of a symbol.
* Reset video mode when window is resized.David Thompson2014-08-251-3/+5
| | | | * 2d/window.scm: Reset SDL video mode when video-resize is triggered.