aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-10-29shuffling code around so that the interface for ISoundModule.SendSound() ↵SignpostMarv1-1/+1
specifies a UUID rather than a string
2012-10-29moving SendSound from SceneObjectPart to ISoundModuleSignpostMarv1-2/+5
2012-10-29Fix memory leak where removing an NPC did not remove its circuits.Justin Clark-Casey (justincc)1-0/+11
This was because we were removing by circuitcode where NPCs have no code. Now removing by agent ID instead. This commit also fixes the "show circuits" console command to work properly where the circuit has no associated IP address.
2012-10-25Fix script error messages not showing up in viewer 3 and associated viewers.Justin Clark-Casey (justincc)3-7/+11
Viewer 3 will discard such a message if the chat message owner does not match the avatar. We were filling the ownerID with the primID, so this never matched, hence viewer 3 did not see any script error messages. This commit fills the ownerID in with the prim ownerID so the script owner will receive script error messages. This does not affect viewer 1 and associated viewers which continue to process script errors as normal.
2012-10-24Get "save oar" and "save iar" to tell you in a more friendly manner if the ↵Justin Clark-Casey (justincc)1-0/+3
filename to save already exists, rather than exception throwing. Also changes ConsoleUtil.CheckFileExists to CheckFileDoesNotExist() since this is more meaningful in the context, even though it does result in double negatives.
2012-10-20Relocate temporary debug message for sending group IMs to online members ↵Justin Clark-Casey (justincc)1-4/+12
only so that we can add ms it takes to send. This is chiefly to assess how long it may still take to send messages to such filtered groups.
2012-10-20Add experimental [Groups] MessageOnlineUsersOnly option for Flotsam XmlRpc ↵Justin Clark-Casey (justincc)1-7/+69
groups. This retrieves and caches information from the PresenceService to only send messages to online users. This is reported to much improve performance for large groups where most users are offline. Cache is 20 seconds to balance requests against users not receiving messages until cache updates. This is an alternative to an approach where login/logout notification is sent directly from simulator to groups service. However, I'm not convinced that this PresenceService approach is actually better. Needs more thought.
2012-10-20Fix build break from commit e469879Justin Clark-Casey (justincc)1-1/+1
2012-10-19Add "debug groups verbose <true|false>" region console commandJustin Clark-Casey (justincc)1-0/+29
This allows one to turn on super-verbose groups debug logging on and off whilst the region is in operation.
2012-10-19minor: Increase attachment name field from 36 to 50 chars in "attachments ↵Justin Clark-Casey (justincc)1-1/+1
show" report
2012-10-06On receiving TaskInventoryAccepted with a destination folder in the binary ↵Justin Clark-Casey (justincc)1-1/+1
bucket slot for RLV, notify the viewer about inventory folder updates. The viewer would not see the folder move without this, either on accept or decline. This commit also updates the TaskInventoryOffered message to better conform with the data LL uses Changes are, agentID is prim owner rather than prim id, agent name is now simply object name rather than name with owner detail, message is just folder name in single quotes, message is not timestamped. However, folder is not renamed "still #RLV/~<name>". Long term solution is probably not to do these operations server-side. Notes will be added to http://opensimulator.org/mantis/view.php?id=6311
2012-09-30Revert "Added request.Proxy=null everywhere, as discussed in ↵Diva Canto5-5/+1
http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow." But the patch is here, in case anyone wants to try it. This reverts commit 531edd51d82ecd6a842a2611c99e9919634491ef.
2012-09-30Added request.Proxy=null everywhere, as discussed in ↵Diva Canto5-1/+5
http://stackoverflow.com/questions/2519655/httpwebrequest-is-extremely-slow. Thanks R.Gunther (rigun@rigutech.nl) https://lists.berlios.de/pipermail/opensim-users/2012-September/010986.html
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.