aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-07-29Implement "scene debug set root-upd-per" for dropping 1 in N root agent ↵Justin Clark-Casey (justincc)3-7/+41
updates except to originator For experimental purposes. Also corrects a previous bug where each terse update sent was counted rather than each set of terse updates to agents.
2014-07-29Add debug mechanism for only sending 1 in N AgentUpdate packets to child agents.Justin Clark-Casey (justincc)3-1/+30
Allows experiments in manually reducing updates under heavy load. Activated by "debug scene set client-upd-per" console command. In a simple test, can send as few as every 4th update before observed movement starts becoming disturbingly rubber-banded.
2014-07-29Add "debug scene set appear-refresh true|false" to control whether periodic ↵Justin Clark-Casey (justincc)1-0/+12
appearance refresh is active. Corresponds to ResendAppearnceUpdates setting in [Appearance] in OpenSim.ini This was originally implemented to alleviate cloud appearance problems but could be too expensive with large numbers of avatars.
2014-07-29Make it possible to change avatar position update, rotation and velocity ↵Justin Clark-Casey (justincc)3-29/+79
tolerances on the fly. This is done via "debug scene set client-pos-upd, client-rot-upd, client-vel-upd". For testing purposes.
2014-07-29Allow the "debug scene set physics false|true" command to work when ↵Justin Clark-Casey (justincc)6-29/+66
bulletsim physics is running in a separate thread. This will also allow the "disable physics" setting in the region debug viewer dialog to work in this circumstance.
2014-07-29minor: make "debug scene set" usage command accurate again from last commit ↵Justin Clark-Casey (justincc)1-2/+1
f6f7585
2014-07-29Add a "debug scene set child-repri <double>" command that allows child ↵Justin Clark-Casey (justincc)3-19/+37
reprioritization distance to be changed on the fly. This governs when child agent position changes are sent to neighbouring regions. Corresponding config parameter is ChildReprioritizationDistance in [InterestManagement] in OpenSim.ini For test purposes.
2014-07-26BulletSim: rearrange code for sensing whether shapes have beenRobert Adams3-60/+60
constructed. Add routine to check for failed and use that method rather than checking individual state.
2014-07-25Revert "Write UDP statistics to the log, not just the console (e.g., "show ↵Justin Clark-Casey (justincc)1-37/+32
queues")" Fixes http://opensimulator.org/mantis/view.php?id=7280 It can't be done this way because the stats data needs to show up on the console at all log levels, not just debug. But this means setting it to log at fatal, which is not appropriate for this stuff in the log. I understand the desire but this has to be done some other way, perhaps by (yet another) config parameter. Also, this was already being done with the ClientStatsReport but that also should be done in another way, I think. This reverts commit 5d534127663899cd5592c865b1d00855fce25854.
2014-07-22Fix recent regression in 3c6becd5 where login or hg login to variable sized ↵Justin Clark-Casey (justincc)2-16/+12
regions failed with outdated simulator message. I forgot that a null 'their version' would not be passed over the wire and ends up as an empty string instead (like older simulators). So instead pass through the correct simulator protcol version instead (SIMULATOR/0.3) when querying from login or hg login. Also removes a debug console write for agent limit accidentally left in for the same commit. Relates to mantis 7276
2014-07-21On login and first HG entrance to a foreign grid, perform query access ↵Justin Clark-Casey (justincc)2-11/+16
checks before proceeding.
2014-07-21Fixed: after a Hypergrid teleport, attachments often either disappear, or ↵Oren Hurvitz1-10/+13
appear both on the avatar AND as in-world objects. Another manifestation of this bug is that after a Hypergrid teleport, when you click on one of the avatar's attachments the object doesn't show its name. This means that the viewer knows the attachment is there, but the simulator does not. The problem was caused by treating Hypergrid teleports as if they're Logins (because the teleport flag ViaLogin is enabled). This may fix: http://opensimulator.org/mantis/view.php?id=7238 This may fix: http://opensimulator.org/mantis/view.php?id=7220
2014-07-21Fixed avatar hovering above the ground. The avatar physics capsule was too tall.Oren Hurvitz1-2/+4
This is related to http://opensimulator.org/mantis/view.php?id=7067 . But that bug complains about BulletSim, and this fix is for ODE.
2014-07-21Allow reading the BulletSim detail log while the sim is runningOren Hurvitz1-2/+2
2014-07-21XBakes: store the assets only in the sim's local assets cache; not in the ↵Oren Hurvitz2-90/+39
main assets server. Also, some cleanup.
2014-07-21Fixed problems if an avatar tries to cross regions when the previous cross ↵Oren Hurvitz2-136/+134
hasn't completed yet This caused the client to stop responding, and even the simulators to have problems. The solution is to disallow crossing before the previous cross has completed.
2014-07-21Added locking in AccessModule to prevent possible errors when shutting down ↵Oren Hurvitz1-3/+7
a simulator that has >1 region
2014-07-21Eliminated common but un-useful log messagesOren Hurvitz2-3/+7
2014-07-21Minor: changed "existant" to "existent"Oren Hurvitz2-3/+3
2014-07-21In "show throttles", show the maximum drip rate. This shows whether a client ↵Oren Hurvitz3-14/+19
is being throttled due to past poor performance.
2014-07-21Write UDP statistics to the log, not just the console (e.g., "show queues")Oren Hurvitz1-32/+37
2014-07-21Added "debug packet --all" option, which changes the packet logging level ↵Oren Hurvitz1-8/+26
for both current and future clients The existing "--default" option only changes the logging level for future clients.
2014-07-21Fixed the logic that decides if a packet was queued (it was reversed)Oren Hurvitz1-5/+6
2014-07-21Eliminated some warningsOren Hurvitz2-2/+1
2014-07-21Close streams immediately when we finish using themOren Hurvitz12-147/+143
2014-07-20Set "[Terrain]SendTerrainUpdatesByViewDistance=true" by default.Robert Adams1-1/+1
This, by default, enables terrain patches being sent to each avatar from the avatar away (rather than the old outside-in pattern), only sending terrain patches within the avatars view distance (making view loading quicker), and sending multiple terrain patches per protocol packet (making terrain loading and editing quicker).
2014-07-18BulletSim: Modify first and default vehicle vertical attractor to be feature ↵Vegaslon1-0/+14
complete with use of the Limit Roll Only Flag. Signed-off-by: Robert Adams <misterblue@misterblue.com>
2014-07-18minor: Add meters unit to water height console displayJustin Clark-Casey (justincc)1-1/+1
2014-07-18Add "show region" command which will show parameters for current region.Justin Clark-Casey (justincc)1-1/+73
This shows static data (e.g. region agent limit) whereas "show scene" shows live data (sim fps, current prims, etc.)
2014-07-18In grid mode, add SuppressConsoleCommands flag to [GridService] so that we ↵Justin Clark-Casey (justincc)1-4/+3
can stop misleading grid service only console commands from registering. We need to do this because the simulator initializes and internal copy of the GridService in grid mode for internal purposes
2014-07-18refactor: slightly adjust some code in ODECharacter.Move() to eliminate a ↵Justin Clark-Casey (justincc)1-18/+19
condition check without changing the logic
2014-07-18With ODE physics, fix an issue where the avatar couldn't jump and then move ↵Justin Clark-Casey (justincc)1-18/+5
forward when moving south or west. Addresses http://opensimulator.org/mantis/view.php?id=5003 Thanks to UbitUmarov for this fix.
2014-07-17BulletSim: rearrange code to prevent using null pointers when aRobert Adams1-11/+10
child mesh is not available when building a linkset.
2014-07-17fix all instances of "non-existant" to "non-existent" (spelling mistakes) ↵Michael Cerquoni4-6/+6
thanks Ai Austin for pointing this out.
2014-07-16Change default script stop method to co-op instead of abort.Justin Clark-Casey (justincc)1-1/+5
co-op should be more stable as it doesn't abort threads, which can trigger virtual machine instability This change will be invisible to users as script DLLs are recompiled automatically where necessary, though the change won't take affect until the next simulator restart. This change has no effect on existing script state. If you want to continue using abort, set ScriptStopStrategy = abort in the [XEngine] section of OpenSim.ini
2014-07-14Use thread-safe version of .NET Random as the SDK class is not thread-safe.Justin Clark-Casey (justincc)1-4/+2
As per http://msdn.microsoft.com/en-us/library/system.random%28v=vs.100%29.aspx, the .NET Random class is not thread-safe. If called by multiple threads at once, methods may return 0. Except for llRand(), other OpenSimulator code did not lock before calling a shared Random instance. This commit adds a ThreadSafeRandom class that extends Random but does internal locking so that it is thread-safe. This change is invisible to existing callers and the explicit locking in the llFrand() implementation is now redundant.
2014-07-14Call RemoveScriptInstance when removing from inventoryDev Random1-2/+2
2014-07-11minor: Move debug xengine script console command to Debug help section where ↵Justin Clark-Casey (justincc)1-1/+1
other debug commands live.
2014-07-11minor: further cleanup of old vb and yield prolog script engine references ↵Justin Clark-Casey (justincc)3-20/+2
that were removed some time ago
2014-07-11If [XEngine] ScriptStopStrategy is changed between abort and co-op, for the ↵Justin Clark-Casey (justincc)6-67/+111
existing session use the previous strategy for that script rather than not starting the script at all. We have to do this since we can't unload existing DLLs if they're all in the same AppDomain. But we can still update the underlying DLL which will be used in the next simulator session.
2014-07-10refactor: use existing Compiler.CreateScriptsDirectory() (renamed to ↵Justin Clark-Casey (justincc)1-26/+4
CheckOrCreateScriptsDirectory()) when checking that scripts directory exists on compile. Code was identical apart from error logging, but if there are failures creating these directories then you'll be seeing lots of errors anyway, and these will be more informative
2014-07-09Fix bug in "show modules" comamnd that was showing shared modules as ↵Justin Clark-Casey (justincc)1-1/+1
non-shared and non-shared as shared
2014-07-04Small change to my previous commit: not so aggressive on the trigger, please.Diva Canto1-2/+0
2014-07-05Show region size column in simulator version of "show regions" console commandJustin Clark-Casey (justincc)1-2/+8
2014-07-04Instrument the UDP path of creating assets so that it triggers an asset post ↵Diva Canto2-5/+11
for users with different asset servers
2014-07-04minor: put standard 'category' in brackets at front of log messages from ↵Justin Clark-Casey (justincc)1-2/+8
previous commit 3d70db4a
2014-07-04When uploading mesh objects with textures also create inventory items for ↵Latif Khalifa1-0/+63
uploaded textures. This implements: http://opensimulator.org/mantis/view.php?id=7250
2014-07-04Include option to remove auto backup files older than given number of days. ↵AliciaRaven2-2/+52
New property created to specify how many days to keep files for. Off by default, also made sure only oar files will be removed.
2014-07-04Still log (but this time with warning rather than an exception) if we ↵Justin Clark-Casey (justincc)1-2/+8
regenerate a new child caps seed for a region where we already have one. I think it's still useful to know this to show up any errors early, but it's reasonable to still carry on rather than throw an exception. Follow on from Diva's commit 9643792
2014-07-04On logout, delay the removal of AgentCircuitData until the very end, because ↵Diva Canto1-5/+3
that data structure contains important information about the agent that may be needed by modules.