Scripting About
From OpenSimulator
(New page: == How to use scripts in OpenSim == Have a look at the [http://wiki.secondlife.com/wiki/LSL_Portal LSL wiki] to learn LSL.<br /> The current procedure to get a script working in OpenSim i...) |
|||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
An important ingredience in Second Life is scripting. It is the engine that drives it all.<br /> | An important ingredience in Second Life is scripting. It is the engine that drives it all.<br /> | ||
In SL [http://wiki.secondlife.com/wiki/LSL_Portal LSL (Linden Scripting Language)] is the language you have to use. This language has its limitations, and is executed very slowly. But nevertheless it works and it gets the job done.<br /> | In SL [http://wiki.secondlife.com/wiki/LSL_Portal LSL (Linden Scripting Language)] is the language you have to use. This language has its limitations, and is executed very slowly. But nevertheless it works and it gets the job done.<br /> | ||
Line 21: | Line 5: | ||
<br /> | <br /> | ||
OpenSim supports LSL and C# scripts. But with limitations:<br /> | OpenSim supports LSL and C# scripts. But with limitations:<br /> | ||
− | * Not all commands and events has been implemented. See [[ | + | * Not all commands and events has been implemented. See [[LlFunction_implementation_status]] for details on what commands work and not. |
* Scripts that are running can not cross regions. | * Scripts that are running can not cross regions. | ||
* You can not use loops inside your scripts. Actually you can use loops, but it will block other scripts from executing. | * You can not use loops inside your scripts. Actually you can use loops, but it will block other scripts from executing. | ||
<br /> | <br /> | ||
− | The OpenSim script engine compiles the LSL code down to .Net code that is JIT'ed to CPU native | + | The OpenSim script engine compiles the LSL code down to .Net code that is JIT'ed to CPU native gode. In effect this means that a LSL script in OpenSim performing pure mathematical functions will have speed close to a C++ program. Of course normally you don't do much math, but still speed should be ok.<br /> |
<br /> | <br /> | ||
− | + | The ScriptEngine is being developed by many developers. If you want to contribute, have a look at the [[OpenSim.Region.ScriptEngine]] page.<br /> | |
− | + | ||
− | The ScriptEngine is being developed by | + | |
− | + | ||
A blog with development status can be found at [http://teddmaa.blogspot.com/ http://teddmaa.blogspot.com/].<br /> | A blog with development status can be found at [http://teddmaa.blogspot.com/ http://teddmaa.blogspot.com/].<br /> |
Revision as of 09:29, 29 August 2007
An important ingredience in Second Life is scripting. It is the engine that drives it all.
In SL LSL (Linden Scripting Language) is the language you have to use. This language has its limitations, and is executed very slowly. But nevertheless it works and it gets the job done.
Linden Labs are planning to move LSL scripting over to C# on Mono some time in the future. This has been in the works since 2005 at least. There are many difficult technical challenges related to this.
OpenSim supports LSL and C# scripts. But with limitations:
- Not all commands and events has been implemented. See LlFunction_implementation_status for details on what commands work and not.
- Scripts that are running can not cross regions.
- You can not use loops inside your scripts. Actually you can use loops, but it will block other scripts from executing.
The OpenSim script engine compiles the LSL code down to .Net code that is JIT'ed to CPU native gode. In effect this means that a LSL script in OpenSim performing pure mathematical functions will have speed close to a C++ program. Of course normally you don't do much math, but still speed should be ok.
The ScriptEngine is being developed by many developers. If you want to contribute, have a look at the OpenSim.Region.ScriptEngine page.
A blog with development status can be found at http://teddmaa.blogspot.com/.