aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-09-20Don't fail to create an IRC nick if nick randomization is disabled in the ↵Justin Clark-Casey (justincc)1-3/+3
IRC module. Patch from http://opensimulator.org/mantis/view.php?id=6293 Thanks Starflower.
2012-09-17Moving ScriptModuleComms into the CoreModules tree.Mic Bowman1-367/+0
2012-09-17Implementing ability to register script constants and invocations on a ↵SignpostMarv1-0/+31
region module automatically
2012-09-17script invocations cannot have void return typeSignpostMarv1-9/+9
2012-09-14Support multi-region OAR filesOren Hurvitz1-1/+1
Merged ArchiveWriteRequestPreparation.cs and ArchiveWriteRequestExecution.cs. This simplifies the code, and it's faster to write each scene to the archive as it's found rather than all at once at the end.
2012-09-11Allow an incoming identifier to be specified for a JsonStore.Mic Bowman2-8/+8
2012-09-08refactoring to allow Scene.GetLandData to accept Vector3 as an argument. ↵SignpostMarv2-2/+2
Note that the prior work on LSL_Vector implicit operators means one does not need to explicitly cast a LSL_Vector to Vector3
2012-08-31Type.Type is RuntimeTypeSignpostMarv1-1/+1
2012-08-31formattingSignpostMarv1-5/+5
2012-08-31adding support for static method script invocationsSignpostMarv1-0/+15
2012-08-31moving assignment to new line to make next commit easier to read in diffsSignpostMarv1-1/+2
2012-08-31using specific type instead of varSignpostMarv1-1/+1
2012-08-31formattingSignpostMarv1-1/+1
2012-08-31formattingSignpostMarv1-2/+1
2012-08-31adding support for finding static methodsSignpostMarv1-3/+9
2012-08-31assign binding flags to variableSignpostMarv1-1/+3
2012-08-31no need to assign result to GetMethodInfoFromTypeSignpostMarv1-3/+1
2012-08-31changing to use Type argument instead of objectSignpostMarv1-3/+3
2012-08-31moving code that will be common into private static methodSignpostMarv1-1/+8
2012-08-20Add --force flag to "kick user" console command to allow bypassing of recent ↵Justin Clark-Casey (justincc)2-0/+10
race condition checks. This is to allow a second attempt to remove an avatar even if "show connections" shows them as already inactive (i.e. close has already been attempted once). You should only attempt --force if a normal kick fails. This is partly for diagnostics as we have seen some connections occasionally remain on lbsa plaza even if they are registered as inactive. This is not a permanent solution and may not work anyway - the ultimate solution is to stop this problem from happening in the first place.
2012-08-15Let the temp attachment module add a command to allow attaching without ↵Melanie1-3/+38
permissions and add support for this (incomplete!) to LSL
2012-08-14Prevent race conditions when one thread removes an NPC SP before another ↵Justin Clark-Casey (justincc)1-34/+30
thread has retreived it after checking whether the NPC exists.
2012-08-14Perform ownership transfer and permission propagation as well as neededMelanie1-0/+28
updates on the new temp attachment.
2012-08-14Move inititalization to RegionLoaded to avoid a module loading order issueMelanie1-8/+8
2012-08-14Implement the temp attachments. UNTESTEDMelanie1-0/+44
2012-08-14Add the skeleton for the temp attachments moduleMelanie1-0/+82
2012-08-03Save membership fee to the database when a group is created.Kevin Cozens1-25/+25
2012-07-31Adds support to ScriptModuleComms for region modules to exportMic Bowman1-0/+33
constants to the script engine.
2012-07-25Move Watchdog and MemoryWatchdog classes into OpenSim.Framework.Monitoring ↵Justin Clark-Casey (justincc)3-0/+3
with other monitoring code from OpenSim.Framework
2012-07-25Rename OpenSim.Framework.Statistics to OpenSim.Framework.Monitoring.Justin Clark-Casey (justincc)4-4/+4
This better reflects the long-term purpose of that project and matches Monitoring modules.
2012-07-25Make SceneManager.OnRegionsReadyStatusChange event available.Justin Clark-Casey (justincc)1-1/+1
This is fired when all regions are ready or when at least one region becomes not ready. Recently added EventManager.OnRegionReady becomes OnRegionReadyStatusChange to match OnLoginsEnabledStatusChange
2012-07-24Rename "image queues clear" console command to "clear image queues"Justin Clark-Casey (justincc)1-12/+6
There is less justification for this word arrangement (verb after noun) now that command help is categorized. Also removes "image queues show" in favour of existing alias "show image queues".
2012-07-24Add information about each column to "show queues" region console command help.Justin Clark-Casey (justincc)1-2/+9
2012-07-24Extend region console "show queues" command to show already collected time ↵Justin Clark-Casey (justincc)1-18/+24
since last packeted received by the simulator from a viewer.
2012-07-19minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2-3/+1
2012-07-19Add EventManager.OnRegionLoginsStatusChange fired whenever logins are ↵Justin Clark-Casey (justincc)1-3/+1
enabled or disabled at any point, not just during initial startup. This replaces EventManager.OnLoginsEnabled which only fired when logins were first enabled and was affected by a bug where it would never fire if the region started with logins disabled.
2012-07-18Perform other region ready actions even if simulator is configured to leave ↵Justin Clark-Casey (justincc)1-26/+19
logins disabled on startup.
2012-07-18Fix bug where region ready would be triggered a second time if a script was ↵Justin Clark-Casey (justincc)1-30/+23
rezzed on a previously script-free region. There is no need to listen for OnRezScript in RegionReadyModule since OnEmptyScriptCompileQueue will only fire if scripts were compiled.
2012-07-18Establish EventManager.OnRegionReady event. This will only be triggerred ↵Justin Clark-Casey (justincc)1-0/+2
once when the region is ready. Switch MapImageServiceModule to use this.
2012-07-18Pass entire scene object in OnLoginsEnabled event rather than just the ↵Justin Clark-Casey (justincc)1-8/+16
region name. This saves listeners from having to re-retrieve the scene from their own lists, which won't work anyway if multiple regions with the same name have been allowed
2012-07-18Only listen to LoginsEnabled event in RegionReadyModule if it has been asked ↵Justin Clark-Casey (justincc)1-26/+22
to disable logins until all scripts have been compiled
2012-07-12Remove IClientIPEndpoint client interface for now.Justin Clark-Casey (justincc)1-10/+1
This may well come back in the future when this subinterface is actually used but it currently isn't and I feel the name was poor. Everything uses IClientAPI.RemoveEndPoint which also returned the full endpoint rather than just the ip address.
2012-07-12Remove IClientAPI.GetClientEP() in favour of existing identical ↵Justin Clark-Casey (justincc)2-10/+0
IClientAPI.RemoteEndpoint.
2012-07-11Where possible, use the system Encoding.ASCII and Encoding.UTF8 rather than ↵Justin Clark-Casey (justincc)4-12/+6
constructing fresh copies. The encodings are thread-safe and already used in such a manner in other places. This isn't done where Byte Order Mark output is suppressed, since Encoding.UTF8 is constructed to output the BOM.
2012-07-07minor: rearrange INITIALIZATION COMPLETE log message so that it's clear init ↵Justin Clark-Casey (justincc)1-3/+2
is only complete for a particular region at a time
2012-07-07minor: Get RegionReady module to shout initialization complete status to ↵Justin Clark-Casey (justincc)1-1/+3
draw the eye
2012-07-06Mantis 6077 trim NPC chat on channel zero.Talun1-0/+8
This patch trims leading and trailing spaces from NPC chat and suppresses the sending of empty chat strings on open chat channel 0.
2012-07-06Mantis 6063 osNpcTouch.Talun2-0/+49
Allow NPCS to touch obects.
2012-07-05Add OSSL function osForceAttachToAvatarFromInventory()Justin Clark-Casey (justincc)1-2/+2
This works like osForceAttachToAvatar() but allows an object to be directly specified from the script object's inventory rather than forcing it to be rezzed in the scene first. Still only attaches objects to the owner of the script. This allows one to bypass the complicated co-ordination of first rezzing objects in the scene before attaching them. Threat level high.
2012-06-13Remove long obsolete and unused IClientAPI.KillEndDone()Justin Clark-Casey (justincc)2-9/+0