aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-01-31remove MRM module (minimodule). Its outdated and we have no maintainers. ↵UbitUmarov45-4573/+0
Thanks to all that worked on it. You should either use scripts or a full region module. Or revert this commit and update its code ;)
2019-01-21remove terraindata abstraction layer, since we only have heightmap typeUbitUmarov2-6/+6
2018-09-29 add a few more gc collect in some spotsUbitUmarov1-0/+3
2018-04-10 sound radius is a prim prop only set by llSetSoundRadius, fix it in case ↵UbitUmarov2-3/+3
viewers do fix its use (ignored for now)
2017-05-04 do the same in the cases we are just moving parts around and not changing ↵UbitUmarov1-1/+1
their caches (ie their taskInventory)
2017-01-17add more calls to effective permissions aggregation, some paths may still be ↵UbitUmarov1-1/+1
missing on objects changes, but remove the aggregation on check paths, so all can be tested.
2017-01-05Massive tab and trailing space cleanupMelanie Thielker18-278/+278
2016-12-29reinforce gc.collect on region load to also do pending finalizersUbitUmarov1-0/+4
2016-12-04remove SOG.FromPartID from main code and flag it obsoleteUbitUmarov1-1/+1
2015-09-04Deleted OpenSim.Framework.Communications. Moved its two remaining files to ↵Diva Canto1-1/+0
OpenSim.Framework.
2015-09-02seems to compile ( tests comented out)UbitUmarov1-2/+4
2015-09-01Moved ExtendedPhysics from OptionalModules to Bullet project, because it's ↵Diva Canto1-623/+0
very much an optional Bullet feature. This way, Bullet doesn't need to depend on the OptionalModules dll. No changes in configs or behavior.
2015-08-30More namespace and dll name changes. Still no functional changes.Diva Canto2-2/+2
2015-08-30Renamed the namespaces tooDiva Canto2-2/+2
2015-07-31Eliminated several warningsOren Hurvitz1-0/+2
2015-03-29varregion: any conversions of use of Constants.RegionSize converted intoRobert Adams1-1/+4
Util.cs routines to convert region coords to and from world coords or handles.
2015-03-25Comment spammy XMLRPC router message - we don't need to know every time aMelanie Thielker1-1/+1
script does something that wil fail anyway.
2015-03-03corrected script notecard parser. It now handles notecards with inventory as ↵ft@noemail1-1/+5
well. Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
2014-12-31BulletSim: Add axis locking enabled through the ExtendedPhysics module.Robert Adams1-28/+70
Allows locking of prim/linkset relative moving in each of the linear and angular axis. Limits on movement or rotation can be set.
2014-11-25Label all threadpool calls being made in core OpenSimulator. This is to add ↵Justin Clark-Casey (justincc)1-7/+14
problem diagnosis. "show threadpool calls" now also returns named (labelled), anonymous (unlabelled) and total call stats.
2014-11-25refactor: consistently put all test classes in the OpenSim.Tests.Common ↵Justin Clark-Casey (justincc)1-1/+0
package rather than some in OpenSim.Tests.Common.Mock the separate mock package was not useful and was just another using line to always add
2014-07-17fix all instances of "non-existant" to "non-existent" (spelling mistakes) ↵Michael Cerquoni1-3/+3
thanks Ai Austin for pointing this out.
2014-05-27Make RegionReady login disabled during initialization message a console ↵Justin Clark-Casey (justincc)1-2/+4
messages instead of a warning message. Same justification as earlier commit 996a6c2. These are not warnings but should still be visible to the user at any log level.
2014-04-23Eliminated many warningsOren Hurvitz2-4/+2
2014-02-09Add JsonRezAtRoot script function. Operation is very similar toMic Bowman1-0/+111
llRezAtRoot except that the start parameter is a Json string that will be unpacked into a json store identified by the objects uuid. This makes a much more expressive (and simpler) way of passing initial parameters to a rezzed object.
2014-01-31Make sure Web streams are disposed after useOren Hurvitz1-1/+1
2014-01-20Clean up orphaned json stores. This can happen when an object isMic Bowman3-3/+274
removed, when a script is removed, or when a script is reset. Also added a stats command to track the number of json stores used by a region. Will probably add some more commands later.
2013-12-14After previous discussion, put eye-catcher 'SCRIPT READY' messages to ↵Justin Clark-Casey (justincc)1-3/+5
console rather than log as warning The problem with logging at warn is that these aren't actually warnings, and so are false positives to scripts that monitor for problems. Ideally, log4net would have a separate "status" logging level, but currently we will compromise by putting them to console, as they are user-oriented
2013-11-27Change the log level for the LOGIN DISABLED and LOGIN ENABLED messages isMic Bowman1-2/+4
the RegionReady module to be warn so that the message will show up in the log for simulators running in a more production mode (knowing when logins are functional is useful).
2013-11-08varregion: elimination of Constants.RegionSize from all over OpenSimulator.Robert Adams1-1/+4
Routines in Util to compute region world coordinates from region coordinates as well as the conversion to and from region handles. These routines have replaced a lot of math scattered throughout the simulator. Should be no functional changes.
2013-09-11BulletSim: add LSL function and plumbing for setting a springRobert Adams1-1/+3
equilibrium point in the physics engine constraint.
2013-09-11BulletSim: add extended physics LSL constants for axis specification.Robert Adams1-2/+14
Add specific error warnings for mis-matched parameter types in extended physics functions.
2013-09-11BulletSim: ability to specify groups of axis to modify in constraint ↵Robert Adams1-1/+11
parameters that control multiple axis. Add useLinearReferenceFrameA constraint parameter.
2013-09-11BulletSim: add axis parameter for specifying enable, damping, and stiffness ↵Robert Adams1-4/+6
for spring constraints. Renumber parameter ops since I can as no one is using them yet.
2013-09-11BulletSim: implementation of setting spring specific physical parameters. ↵Robert Adams1-1/+5
Add setting of linkset type to physChangeLinkParams. Lots of detail logging for setting of linkset constraint parameters.
2013-09-11BulletSim: pass both root and child BSPhysObjects to Extension function. ↵Robert Adams1-13/+17
Update routines to use the new parameters list from above change.
2013-09-11BulletSim: Extension parameters passed through the classes made to pass just ↵Robert Adams1-5/+18
and array of objects rather than a mixture of parameters and array. Makes understanding and parsing what is being passed much easier.
2013-09-11BulletSim: add extended physics function physGetLinkType(linkNum). Add ↵Robert Adams1-0/+19
implementation of physChangeLinkParams() in BSLinksetConstraint.
2013-09-11BulletSim: change ExtendedPhysics constants to 'const' so they can be used ↵Robert Adams1-28/+28
as case variables in switch statements.
2013-09-11BulletSim: add physChangeLinkParams to set individual parameters on link ↵Robert Adams1-94/+171
constraints. Not fully functional. Remove double definition of ExtendedPhysics parameters by having BulletSim reference the optional module (addition to prebuild.xml and usings).
2013-09-11BulletSim: add physChangeLinkSpring to change linkset link to be a spring ↵Robert Adams1-3/+70
constraint. Add implementation to create spring constraint. Send up property updates for linkset children at the end of flexible linkset links. The simulator probably doesn't do the right thing yet.
2013-09-11BulletSim: initial implementation of physChangeLinkFixed that resets a ↵Robert Adams1-1/+81
linkset's link back to a fixed, non-moving connection.
2013-09-11BulletSim: fixes for change linkset implementation of physical linksets.Robert Adams1-1/+28
2013-08-02BulletSim: add implementation of 'physSetLinksetType' and 'physGetLinksetType'Robert Adams1-5/+60
and processing routines in BulletSim. Add linkset rebuild/conversion routine in BSLinkset.
2013-07-30BulletSim: test method for debugging of extended physics script operations.Robert Adams1-8/+46
2013-03-26Phase 1 of implementing a transfer permission. Overwrite libOMV's PermissionMaskMelanie1-1/+2
with our own and add export permissions as well as a new definition for "All" as meaning "all conventional permissions" rather than "all possible permissions"
2013-03-24Phase 1 of implementing a transfer permission. Overwrite libOMV's PermissionMaskMelanie1-1/+2
with our own and add export permissions as well as a new definition for "All" as meaning "all conventional permissions" rather than "all possible permissions"
2013-03-05Per discussions with justincc... split the JsonStore typeMic Bowman4-34/+130
functions into one for node type and one for value type. Define and export constants for both nodes and values.
2013-02-19Fix the JsonStore path set problem justincc found earlier today andMic Bowman3-95/+3
remove the deprecated TestPath functions.
2013-02-19Convert JsonTestPath() use in json regression tests to JsonGetPathType() insteadJustin Clark-Casey (justincc)1-10/+10