diff options
author | David Walter Seikel | 2016-02-19 15:28:37 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-02-19 15:28:37 +1000 |
commit | f7a7dfb934a2637795e69079066a5e8c0e9a7d4c (patch) | |
tree | 17abf40418558d06ed4b07e8a10a7a3e65db79b2 /TODO | |
parent | Streaming source code idea. (diff) | |
download | SledjHamr-f7a7dfb934a2637795e69079066a5e8c0e9a7d4c.zip SledjHamr-f7a7dfb934a2637795e69079066a5e8c0e9a7d4c.tar.gz SledjHamr-f7a7dfb934a2637795e69079066a5e8c0e9a7d4c.tar.bz2 SledjHamr-f7a7dfb934a2637795e69079066a5e8c0e9a7d4c.tar.xz |
Run the docs through a spell checker.
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -32,7 +32,7 @@ Runnr.c | |||
32 | Starts or resumes the script running. If there's a message, push it as an argument. | 32 | Starts or resumes the script running. If there's a message, push it as an argument. |
33 | Expects the script to eventually call Runnr.receive(). | 33 | Expects the script to eventually call Runnr.receive(). |
34 | Runnr.receive() | 34 | Runnr.receive() |
35 | Does a Lua yeild, which will return once there is a message for this script. | 35 | Does a Lua yield, which will return once there is a message for this script. |
36 | Runnr.send() | 36 | Runnr.send() |
37 | Either send2script(SID, message), or send2server(message) | 37 | Either send2script(SID, message), or send2server(message) |
38 | 38 | ||
@@ -201,7 +201,7 @@ More generic event system? | |||
201 | 201 | ||
202 | There are other events flying around. | 202 | There are other events flying around. |
203 | BASIC event Just send it to LuaSL, it loops through all scripts, sending the event to them all if they have an event function in their current state. | 203 | BASIC event Just send it to LuaSL, it loops through all scripts, sending the event to them all if they have an event function in their current state. |
204 | REGISTER event Script has to register for these events with love. Can have filter. love loops through all regisitered "scripts", applies filters, sends events. | 204 | REGISTER event Script has to register for these events with love. Can have filter. love loops through all registered "scripts", applies filters, sends events. |
205 | REQUEST event Script has to request an event from love. Can have a filter. Love sends event straight back to the script. Once. | 205 | REQUEST event Script has to request an event from love. Can have a filter. Love sends event straight back to the script. Once. |
206 | This covers the "wait for return value" case as well. events.return()? | 206 | This covers the "wait for return value" case as well. events.return()? |
207 | touch_start goes from extantz to LuaSL, via love. Most of the rest go from love to LuaSL I think. state_entry, state_exit are internal to LuaSL, timer should be. | 207 | touch_start goes from extantz to LuaSL, via love. Most of the rest go from love to LuaSL I think. state_entry, state_exit are internal to LuaSL, timer should be. |
@@ -217,7 +217,7 @@ More generic event system? | |||
217 | Sensor and no_sensor might be common, but you request those, your silly fault, they have filters though. | 217 | Sensor and no_sensor might be common, but you request those, your silly fault, they have filters though. |
218 | llSensor(string name, string id, integer type, float range, float arc) | 218 | llSensor(string name, string id, integer type, float range, float arc) |
219 | llSensorRepeat(string name, string id, integer type, float range, float arc, float rate) | 219 | llSensorRepeat(string name, string id, integer type, float range, float arc, float rate) |
220 | Event types can have filters? Events can be types? In otherwords, generic filter system, attach say filters to say type events, etc. | 220 | Event types can have filters? Events can be types? In other words, generic filter system, attach say filters to say type events, etc. |
221 | Figure this all out as we go along. | 221 | Figure this all out as we go along. |
222 | 222 | ||
223 | parseStream() / send2() both - | 223 | parseStream() / send2() both - |
@@ -530,7 +530,7 @@ I can use the llDialog() or purkle widgets, especially when you can rip | |||
530 | them out of the main window to be their own windows. | 530 | them out of the main window to be their own windows. |
531 | 531 | ||
532 | Once the files widget morphs into a proper inventory widget, I can use | 532 | Once the files widget morphs into a proper inventory widget, I can use |
533 | it in meta-impy for inventory AND an asyncronous file requestor. | 533 | it in meta-impy for inventory AND an asynchronous file requester. |
534 | 534 | ||
535 | Finally (I think) I could rip the meta-impy graphics pipeline a new one. | 535 | Finally (I think) I could rip the meta-impy graphics pipeline a new one. |
536 | 536 | ||