sfxr.lua/README.md

40 lines
844 B
Markdown
Raw Normal View History

2014-04-11 18:16:20 +00:00
sfxr.lua
========
2014-04-11 17:31:10 +00:00
2014-05-24 13:32:13 +00:00
A port of the sfxr sound effect synthesizer to pure Lua, designed to be used
together with the *awesome* Löve game framework.
2014-04-11 18:16:20 +00:00
Example usage
-------------
These examples should play a randomly generated sound.
With [Löve](http://love2d.org) 0.9.x:
2014-04-11 18:16:20 +00:00
```lua
local sfxr = require("sfxr")
function love.load()
2014-05-07 14:58:37 +00:00
local sound = sfxr.newSound()
2014-04-11 18:16:20 +00:00
sound:randomize()
2014-08-04 15:11:24 +00:00
sound:play()
2014-04-11 18:16:20 +00:00
end
```
2014-05-25 21:26:49 +00:00
With [lao](https://github.com/TheLinx/lao):
2014-04-11 18:16:20 +00:00
```lua
require("ao")
local sfxr = require("sfxr")
local driverId = ao.defaultDriverId()
local device = ao.openLive(driverId, {bits = 16, rate = 44100, channels = 1})
2014-05-07 14:58:37 +00:00
local sound = sfxr.newSound()
2014-04-11 18:16:20 +00:00
sound:randomize()
local buffer = sound:generateString()
device:play(buffer, #buffer)
```
2014-06-02 16:52:18 +00:00
**More documentation is available at the [Project Wiki](https://github.com/nucular/sfxrlua/wiki)**