aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scripting/IScriptHost.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-10-15Object update prioritization by Jim Greensky of Intel Labs, part one. This ↵John Hurliman1-2/+2
implements a simple distance prioritizer based on initial agent positions. Re-prioritizing and more advanced priority algorithms will follow soon
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-1/+1
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-6/+5
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-05-01* Rolled back a few changes.Adam Frisby1-1/+1
2008-05-01* Spring cleaning on Region.Environment. Adam Frisby1-1/+1
* Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-03-08Thank you kindly, Ldviopeng for:Charles Krinke1-3/+5
Patch to implement the following LSL / OS functions llParcelPrimCount(60%) osSetParcelMediaURL
2008-02-20Minor cleanup.Jeff Ames1-1/+1
2007-10-30* Optimized usingslbsa711-1/+1
* Shortened type references * Removed redundant 'this' qualifier
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa711-1/+29
2007-10-05getting all our line endings consistant againSean Dague1-3/+3
2007-09-19* Modernized ScriptManager to new interface-based module calls.lbsa711-11/+9
* 'remove redundant this qualifier' ftw
2007-09-17fixing me some line endingsSean Dague1-20/+20
2007-09-11Applied ldvoipeng's patch [#360], sorry for it taking so long to apply it. ↵MW1-0/+4
If in future anyone's patch hasn't been applied within a few days, please can someone kick one of the developers with svn access.
2007-08-27Stopped EntityBase from implementing IScriptHost, as don't think it should, ↵MW1-0/+1
multiple objects are based on entitybase and they all don't want the baggage from IScriptHost. SceneObjectPart already implements it anyway. Added llGetOwner function, and tested the ll functions that I added in last commit.
2007-08-27Another small tweak to image sending.MW1-1/+1
Implemented a few ll Functions, llSetObjectName llGetObjectName, llLoadURL (all currently untested).
2007-08-16* Now sending manager, host and root host to Script in constructor.lbsa711-0/+1
* Changed how Script accesses World * Implemented llSay, llWhisper and llShout * Added SetText() to IScriptHost, implemented llText * Minor renamings to conform with code conventions
2007-08-16* Introduced IScriptHost as an interface to fetching object data from scripts.lbsa711-0/+14
* This meant introducing AbsolutePosition on all objects (since SimChat wants that)