aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Correct typo in raw default script stop strategyJustin Clark-Casey (justincc)2015-01-271-1/+1
|
* If [XEngine] ScriptStopStrategy is different from a compiled script ↵Justin Clark-Casey (justincc)2015-01-271-28/+26
| | | | | | | | | | strategy, ask user to manually set DeleteScriptsOnStartup = true for at least one simuator session rather than auto-recompiling. This does not work on Windows since the VM retains a handle to the DLL even if class instantiation was unsuccessful. Which causes deletion of the old DLL to fail with access sharing violations. Instead, log a warning in this situation asking the user to manually set DeleteScriptsOnStartup = true for a session (or one could separately delete the DLLs in the relevant bin/scriptengines/<region-uuid> dir For the current session, the script engine will continue using the script compiled stop strategy as before. Relates to http://opensimulator.org/mantis/view.php?id=7278
* If an exception comes out of DoOnRezScript in DoOnRezScriptQueue(), then ↵Justin Clark-Casey (justincc)2015-01-261-6/+17
| | | | only fail a single script rather than halting the exntire script startup process.
* On a multi-region simulator when AppDomain = true, make sure the DLL from ↵Justin Clark-Casey (justincc)2015-01-264-91/+147
| | | | | | the appropriate script engines subdir is loaded rather than always that of the first engine to load the DLL. This resolves a DLL load failure on my Linux box when an attachment script was present on another region before the avatar arrived.
* BulletSim: add parameters and parameter definitions for VHACDRobert Adams2015-01-253-1/+61
| | | | addition coming.
* When deleting an assembly before re-compile, make sure its attributes allow ↵Justin Clark-Casey (justincc)2015-01-231-1/+5
| | | | | | | deletion. This is to see if this helps with the problem in http://opensimulator.org/mantis/view.php?id=7278 where some DLLs are not allowing this. Since OpenSim created the file it should always be allowed to delete it.
* Fix regression where the stored state of every second script in an object ↵Justin Clark-Casey (justincc)2015-01-234-15/+35
| | | | | | | rezzed from inventory (e.g. attachments) was no longer loaded. Likely a regression since f132f642 (2014-08-28) Relates to http://opensimulator.org/mantis/view.php?id=7278
* If the SnedInventoryAync() method receives an exception log this but make ↵Justin Clark-Casey (justincc)2015-01-211-1/+10
| | | | | | sure it does not terminate the process. Relates to http://opensimulator.org/mantis/view.php?id=7421
* Add debug ability to ignore reliably sent packets that are not acknowledged.Justin Clark-Casey (justincc)2015-01-213-20/+129
| | | | | | This is controlled via the console command "debug lludp client set process-unacked-sends true [<avatar-first-name> <avatar-last-name>]" For debug purposes to see if this process for very bad connections is causing general outbound udp processing delays. Relates to http://opensimulator.org/mantis/view.php?id=7393
* minor: Comment out log line for the SimulatorFeatures cap request for now to ↵Justin Clark-Casey (justincc)2015-01-211-1/+1
| | | | reduce log verbiage. Please revert if still required.
* minor: Fix some CR line endings in Scene.Inventory.csJustin Clark-Casey (justincc)2015-01-211-8/+8
|
* If [Permissions] serverside_object_permissions = false or the undocumented ↵Justin Clark-Casey (justincc)2015-01-211-1/+4
| | | | | | | propogate_permissions = false, don't propogate permissions of prim inventory items. This was a regression from 13f31fd (4 Nov 2013) Relates to http://opensimulator.org/mantis/view.php?id=7399
* minor: correct SceneCommunicationService.LogHeader spellingJustin Clark-Casey (justincc)2015-01-201-1/+1
| | | | Relates to http://opensimulator.org/mantis/view.php?id=7337
* minor: In AttachmentsModule.UpdateKnownItem use the existing ↵Justin Clark-Casey (justincc)2015-01-171-3/+2
| | | | IInventoryAccessModule reference that other methods are already using rather than fetching its own copy.
* Make XEngine.SaveAllState() actually do this instead of script maintenanceJustin Clark-Casey (justincc)2015-01-171-8/+8
|
* minor: remove old commented out objectRemoved bool in XEngine.OnRemoveScript()Justin Clark-Casey (justincc)2015-01-161-5/+0
|
* Add clearqueue code adjustment that should have been in previous commit faaf47aJustin Clark-Casey (justincc)2015-01-161-4/+1
|
* Prevent a race condition between the script engine backup thread and script ↵Justin Clark-Casey (justincc)2015-01-163-35/+44
| | | | | | removal by locking on the script's EventQueue and only proceeding if it's flagged as still running. Relates to http://opensimulator.org/mantis/view.php?id=7407
* For scripts in attachments, don't save .state files apart from the initial ↵Justin Clark-Casey (justincc)2015-01-164-8/+195
| | | | | | | | one as these are ignored since .state is saved in the attachment's asset. This eliminates pointless work and exceptions when an appdomain is unloaded whilst an attachment script state is persisted. Adds test for this case. Relates to http://opensimulator.org/mantis/view.php?id=7407
* minor: Suppress the log messages when user profiles data is requested for an ↵Justin Clark-Casey (justincc)2015-01-161-3/+10
| | | | | | | | NPC or an HG user with no set server URI to avoid log spam. Messages concerning failure to contact a given user profiles service are preserved by logging within called code with the agent ID. If the "No Presence - foreign friend" log message is important then please revert. Relates to http://opensimulator.org/mantis/view.php?id=7414
* Fix a recent regression with HG asset posting to other grids where the ↵Justin Clark-Casey (justincc)2015-01-151-0/+1
| | | | | | assets were no longer being posted. Addresses regression from 08606ae (Thu Jan 8 2015)
* Stop simulators attempting to contact registered but offline regions ↵Justin Clark-Casey (justincc)2015-01-142-15/+49
| | | | | | | | (RegionFlags.Persistent but not RegioNFlags.RegionOnline) on startup and when an avatar completes a teleport. This eliminates spurious network calls and failure reporting. This is done by adding RegionFlags to the GridRegion returned data in a backward compatible way as an alternative to multiple IGridService.GetRegionFlags() calls Using a simulator or a grid service older than this commit will just see previous behaviour.
* And finally renamed the classes themselves.Diva Canto2015-01-131-2/+2
|
* Fix bug where gathering the clientstack..OutgoingPacketsQueuedCount stat ↵Justin Clark-Casey (justincc)2015-01-131-2/+6
| | | | | | would fail with a casting exception for scenes with NPCs Present since 51eb8fa (Oct 2 2014)
* Make the performance controlling job processing threads introduced in ↵Justin Clark-Casey (justincc)2015-01-128-985/+121
| | | | conference code use a generic JobEngine class rather than 4 slightly different copy/pasted versions.
* SimulatorFeatures: the viewer also takes GridName in OpenSim extras. Added ↵Diva Canto2015-01-101-1/+4
| | | | that (plus GridURL, in case viewers want to use it too) to the GridService that gives out that info to simulators.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2015-01-099-713/+119
|\
| * minor: Add event name to existing debug output when a script event fails ↵Justin Clark-Casey (justincc)2015-01-081-1/+2
| | | | | | | | with an exception. To aid debugging.
| * When inspecting a script or notecard, also try to look up any assets ↵Justin Clark-Casey (justincc)2015-01-082-5/+11
| | | | | | | | | | | | | | embedded therein. This is primarily to fix an issue where inventory items for NPC attachments would not be saved in archives as the assets referenced in the appearance notecard were not checked in this manner. Relates to http://opensimulator.org/mantis/view.php?id=7376
| * Make the IteratingUuidGatherer the only UuidGatherer.Justin Clark-Casey (justincc)2015-01-088-713/+112
| | | | | | | | | | This UUID gatherer provides a superset of the previous gatherer's functionality as it also allows the caller to control gathering iterations for load purposes.
* | Added GetDisplayNames capability. For now, we don't actually use display ↵Diva Canto2015-01-096-97/+149
|/ | | | names, and this cap returns the regular name. But this moves the server side into the newer, preferred, protocol used by the viewer for fetching the names of agents in the scene given their UUIDs. (the old protocol is via UDP). This works fine in my limited tests, but could use further testing by others.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2015-01-073-12/+28
|\
| * BulletSim: fix line ending problems.Robert Adams2015-01-071-1/+1
| |
| * BulletSim: make computation of hole cut in hull tester explicitRobert Adams2015-01-071-1/+1
| | | | | | | | math showing the odd PrimitiveBaseShape value rather than a constant.
| * BulletSim: tweek step parameters and logic to make walking up stepsRobert Adams2015-01-072-12/+28
| | | | | | | | | | | | | | closer to SL. This change should address small floor edges acting like walls, approaching a step at any angle (other than walking backwards) will allow walking up, and reducing the avatar pop-up when going up stairs.
* | Added a different/better way of specifying data services in DataSnapshot -- ↵Diva Canto2015-01-071-1/+28
|/ | | | using DATA_SRV_ keys, one per service. This allows 3rd party modules to add data services automatically.
* BulletSim: comment out the reference to BSShapeHull in BulletSim testsRobert Adams2015-01-041-2/+2
| | | | | which seems to cause the tests to fail when compiled on the OpenSim build system. It compiles and runs everywhere else. More research is needed.
* BulletSim: correct some of the debugging input and output of PrimitiveBaseShape.Robert Adams2015-01-042-4/+8
| | | | Whoever defined that structure was really into esoteric coding.
* Remove the extra key expansion added in commit ↵Diva Canto2015-01-031-2/+0
| | | | a88bc50a168ae729307740fa84540e9571258b13. It's not needed.
* BulletSim: remove compile reference error trying to figure out why mono ↵Robert Adams2014-12-311-2/+2
| | | | compiling doesn't like it
* BulletSim: add the beginnings of hull creation unit testing.Robert Adams2014-12-315-12/+394
| | | | | | Change how physics engine is created in unit tests to resolve a lib reference problem. Add ShapeInfoInfo class to collect info about the created physical shape for debugging and unit test testing.
* BulletSim: Add axis locking enabled through the ExtendedPhysics module.Robert Adams2014-12-315-97/+474
| | | | | Allows locking of prim/linkset relative moving in each of the linear and angular axis. Limits on movement or rotation can be set.
* Fixed declaration switcharoo on the region combiner dll.Diva Canto2014-12-312-2/+1
|
* Capitalization fail.Diva Canto2014-12-301-1/+1
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2014-12-306-37/+149
|\
| * Merge branch 'mb-throttle-test'Mic Bowman2014-12-306-37/+149
| |\ | | | | | | | | | Merge in the new throttle code.
| | * Comment out the debugging statements added in the last commit. KeepingMic Bowman2014-12-302-13/+13
| | | | | | | | | | | | | | | | | | | | | them in the code for later use rather than just reverting them. Fixed the throttle tests for the new algorithm used when packets are marked as expired.
| | * Turn on logging of old acks, this is for debugging only, stats version ↵Mic Bowman2014-12-301-1/+12
| | | | | | | | | | | | coming later
| | * Another technique inspired by some of the newer flow control algorithms... ↵Mic Bowman2014-12-301-11/+17
| | | | | | | | | | | | | | | | | | | | | | | | rather than drop exponentially to 0 (and then adjust up for the minimum flow), drop on the delta between current rate and the minimum rate. This should smooth the fallback to minimum.
| | * Fix the throttle tests. Remove the hardcoded constant multipliers andMic Bowman2014-12-301-9/+11
| | | | | | | | | | | | compute the expected values without depending on the token bucket code.