aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-09-09Various logging fix ups.onefang1-2/+3
Mostly removing console spam. Swap a bunch of info / debug logs. Better archiver console spam. Have some "avatar has left" mesasge hit the INFO console. Tweak the login logging a bit, especially for impersonations. Default to INFO on the console and DEBUG in the log files. More time stamp resolution. Better sim startup console notification. Attempt to render "[LLUDPSERVER]: Malformed data, cannot parse" into something human readable as an aid to diagnosis. Beats hand translating the big block of hex codes it was spewing. Better sim startup finished messages. Inform neighbours we are up before the finished messages. Always send the "[RegionReady]: INITIALIZATION COMPLETE FOR" message.
2020-09-09Remove useless executable bit that Windows adds.onefang2-0/+0
2020-09-08Better ROBUST and sim startup console notification.onefang1-2/+6
2019-10-22remove some more useless NULL argumentsUbitUmarov2-3/+3
2019-08-20Massive console refactor. Greatly simplify interface.Melanie2-3/+3
2019-08-04Don't inform neighbours that we are up twice.onefang1-3/+4
2019-05-19Better sim startup console notification.onefang1-2/+6
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang19-284/+295
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
2016-11-07Remove silly rezzing distance limits. They just make scripters work around ↵David Walter Seikel1-2/+0
them.
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel9-179/+2013
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).