aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/RegionReadyModule/RegionReadyModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
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.onefang1-17/+21
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-5/+14
2012-11-13All optional modules' directives moved out of addin.xmlDiva Canto1-0/+2
2012-09-30Revert "Added request.Proxy=null everywhere, as discussed in ↵Diva Canto1-1/+0
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 Canto1-0/+1
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-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-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-19minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-2/+0
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-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-03-22RegionReady loggingBlueWall1-10/+5
Some maintenance to clean up logging messages
2012-02-16Remove some debugging output form the loggerBlueWall1-2/+4
2012-01-18RegionReady:BlueWall1-1/+5
Back out some of the oar monitoring for the time being. Need to find a better way to get feedback. Will re-visit this soon.
2012-01-14protect the region ready alerts for loading oarfiles if no post URI is setMic Bowman1-2/+5
2012-01-13Update RegionReadyModuleBlueWall1-6/+51
Fix triggering of alerts when rezzing first script to an empty region, add login disable when loading oars.
2011-10-20Get OdeScene to use passed in time step rather than hard-coded 0.089Justin Clark-Casey (justincc)1-1/+1
However, I still don't recommend changing MinFrameTime from 0.089, high values do not work well and lower values don't seem to make much difference
2011-08-15Add "shutdown" message to RegionReadyBlueWall1-0/+5
Add "shutdown" message when removing region. From a patch submitted by Michelle Argus. Thanks Michelle
2011-06-24RegionReady Module:BlueWall1-0/+2
Add notification to neighbors when logins are enabled.
2011-05-28Adding an event to signal that logins are enabledBlueWall1-11/+76
Added an event to signal the eabling of logins and added an alert to send to a configured service.
2011-05-28Add option to disable loginsBlueWall1-1/+24
This just covers script loading for now. More to come.
2010-09-06Make console backup command do a forced backup rather than non-forcedJustin Clark-Casey (justincc)1-1/+1
Remove no-arg backup method for simplicity as it only make sense to call non-forced backup internally
2010-05-30Fix a nullref in EventManager caused by RegionReady not setting the sceneMelanie Thielker1-0/+1
2010-01-29Revert "Updates all IRegionModules to the new style region modules."Melanie1-3/+3
This reverts commit ec3c31e61e5e540f822891110df9bc978655bbaf.
2010-01-23Updates all IRegionModules to the new style region modules.Revolution1-3/+3
Signed-off-by: Melanie <melanie@t-data.com>
2009-11-26minor: reduce region ready logging verbosityJustin Clark-Casey (justincc)1-5/+4
2009-09-01cleanup.dr scofield (aka dirk husemann)1-1/+0
2009-08-31cleaning up RegionReadyModule:dr scofield (aka dirk husemann)1-24/+44
- wrong namespace - converted to "new" region module
2009-08-07This is the second part of the 'not crash on regionsize changes'. This ↵Teravus Ovares (Dan Olivares)1-1/+1
lets you configure region sizes to be smaller without crashing the region. I remind you that regions are still square, must be a multiple of 4, and the Linden client doesn't like anything other then 256. If you set it bigger or smaller, the terrain doesn't load in the client, the map has issues, and god forbid you connect it to a grid that expects 256m regions.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-04-15* Make it possible to add a request id to load and save oar requestsJustin Clarke Casey1-5/+5
* This allows specific requests to be identified.
2009-03-12From: Christopher Yeoh <yeohc@au1.ibm.com>Dr Scofield1-3/+7
Patch to RegionReady which adds a field which adds to the message whether the region is ready due to a server startup or due to an oar file loading.
2009-02-16cosmetic: adding region name to logging statementDr Scofield1-3/+3
2009-02-13Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames1-1/+1
warnings. Fix some m_log declarations.
2009-02-11From: Christopher Yeoh <yeohc@au1.ibm.com>Dr Scofield1-0/+146
This changeset add the RegionReady module code. The module sends a message on a configurable channel when an oar file has finished loading or if the script engine has emptied its queue for the first time (eg server startup). Config is something like this: [RegionReady] enabled = true channel_notify = -800 The module also knows if there was an error with startup.