aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove the old remoting-type interregion code for prim/script crossingMelanie2009-11-262-171/+0
|
* Remove GetAssemblyName and friends from the SE interface. It's now handledMelanie2009-11-264-125/+5
| | | | internally
* minor: add doc to a few parcel methodsJustin Clark-Casey (justincc)2009-11-251-5/+20
|
* * Reverting last commit.. because it just made it worse.Teravus Ovares (Dan Olivares)2009-11-252-9/+0
|
* * Attempt number 1 to stop the repeating crouch animation that sometimes ↵Teravus Ovares (Dan Olivares)2009-11-252-0/+9
| | | | | | | happens. * This tries to address it by correcting one potential bug where it never resets the falltimer. * This tries to address it by telling Physics that we're not flying this step.. instead of waiting until the next step when the next agent update comes along.
* pass all command parameters to load/save oar, not just the filenameJustin Clark-Casey (justincc)2009-11-242-7/+10
| | | | unfortunately, these commands cannot yet be properly relocated to the region modules due to deficiencies in the region module infrastructure
* Formatting cleanup.Jeff Ames2009-11-233-18/+18
|
* * This doesn't fix mantis 3522, but it should mitigate it.Teravus Ovares (Dan Olivares)2009-11-221-0/+43
| | | | * If the start position is outside of the region on the X and Y, put the user in the center of the region and then damp the Z position at 720 if necessary. If the start position is not outside of the region on the X or Y, then don't check the Z.
* * The client prevents the avatar from landing if the avatar is going above ↵Teravus Ovares (Dan Olivares)2009-11-221-5/+10
| | | | | | an unknown certain speed, so, add a speed check on the server. * This addresses the 'hump the prim' animation playing while you're moving forward full speed and pressing page down over a prim to land.
* * This fixes landing on Prim and removes the hack from yesterday. Landing ↵Teravus Ovares (Dan Olivares)2009-11-211-2/+2
| | | | on prim should work fine again.
* * Hack to get avatar to land on prim. This is a big nasty hack that tricks ↵Teravus Ovares (Dan Olivares)2009-11-211-0/+2
| | | | the client into thinking you're landing on the terrain. There are some visual artifacts when you land. It's only temporary until we figure out how this broke.
* * Fixes the second of two terse update issues. Physical objects should react ↵Teravus Ovares (Dan Olivares)2009-11-211-0/+1
| | | | normally again.
* * Fixes one of two terse update issues. There's still one left, but this ↵Teravus Ovares (Dan Olivares)2009-11-211-0/+3
| | | | one fixes the situation where the object on the server is moving but no updates are being sent.
* Fix http://opensimulator.org/mantis/view.php?id=3874 - parenthesis in for ↵Justin Clark-Casey (justincc)2009-11-201-1/+1
| | | | | | | | | | statements cause script compile failures This fixes a problem in OpenSim where statements of the form for ((i = 0); (i < 10); (++i)) { ... } do not compile even though they are valid lsl.
* minor: tweak log message to say which region is being enabled for loginsJustin Clark-Casey (justincc)2009-11-181-5/+6
|
* refactor: Eliminate redundant CreateSceneViewer call on ScenePresence ↵Justin Clark-Casey (justincc)2009-11-171-4/+1
| | | | constructors since this is also done on other called constructors
* Add scene animator set up to apparantly uncalled no-arg ScenePresence ↵Justin Clark-Casey (justincc)2009-11-171-1/+2
| | | | constructor
* refactor: move AvatarAnimations, BinBVHAnimationJustin Clark-Casey (justincc)2009-11-174-61/+62
|
* refactor: move AnimationSetJustin Clark-Casey (justincc)2009-11-171-1/+1
|
* refactor: move most animation methods from ScenePresence into a new ↵Justin Clark-Casey (justincc)2009-11-175-392/+481
| | | | ScenePresenceAnimator class
* minor: very minor formatting changeJustin Clark-Casey (justincc)2009-11-161-2/+0
|
* Make GroupRootUpdate be a terse update. This method is not used by opensim ↵Diva Canto2009-11-141-2/+2
| | | | (it should), but it's used by external modules.
* undo previous changesdahlia2009-11-134-16/+12
| | | | | add a GetGroupByPrim() method to Scene.cs delete a redundant method
* expose SceneGraph.GetGroupByPrim(UUID)dahlia2009-11-131-1/+1
|
* refactor: extract another test asset helper methodJustin Clark-Casey (justincc)2009-11-121-4/+3
|
* Rename test services to mock services, since this is a more accurate descriptionJustin Clark-Casey (justincc)2009-11-121-1/+1
| | | | remove duplicate mock inventory service
* Stop iar save failing on corrupt assetsJustin Clark-Casey (justincc)2009-11-122-5/+30
| | | | Not ideal since one will still have to watch out for big 'corrupt asset' messages in the log, but better than an outright fail
* minor: refactor common setup in uuid gatherer testJustin Clark-Casey (justincc)2009-11-121-3/+10
|
* minor: remove mono compiler warningJustin Clark-Casey (justincc)2009-11-121-0/+1
|
* Add basic new uuid gatherer tests to check behaviour when the gather seed is ↵Justin Clark-Casey (justincc)2009-11-111-0/+58
| | | | a missing asset
* * Thanks to a little help from jhurliman, jradford, diva, mono's brajkovic, ↵Teravus Ovares (Dan Olivares)2009-11-111-2/+12
| | | | miguel, and the fabulous bug reports by our community members.. The workaround fix for the "ERROR:metadata.c:3211:mono_metadata_token_from_dor: code should not be reached" bug in the RegionCombinerModule.
* Add IScriptModuleComms interface and region module to handle dispatch ofMelanie2009-11-101-0/+44
| | | | | | | | script messages to region modules and sending back replies. Hook IScriptModuleComms.OnScriptCommand to see commands and use DispatchReply to reply to the script. It is recommended to pass the "id" parameter from the event as the "k" parameter of the reply. The script will receive the reply as a link message from link -1.
* * Removing the redundant SendPrimitiveTerseData.State field, it duplicates ↵John Hurliman2009-11-091-3/+1
| | | | | | AttachPoint * LLClientView.CreateImprovedTerseBlock() now uses AttachPoint and does the proper high-low swap (this should fix disappearing attachment pieces)
* Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2009-11-095-10/+104
|\
| * Patch from Snoopy2. Fixes Mantis #4342Melanie2009-11-081-0/+1
| | | | | | | | | | | | fixes problems when group owned land was abandoned by the land owner or reclaimed by the estate manager or by god. Beside that this new patch makes it possible, that users can buy land directly for a group, if the buyer has the required permissions.
| * Changing the AssetBase constructors to avoid initializing assets with an ↵John Hurliman2009-11-053-10/+3
| | | | | | | | unknown asset type, and log an error if it ever does happen
| * Applying #4332, optional packet statistics loggingJohn Hurliman2009-11-051-0/+100
| |
* | * for iars, allow item names/folders including "/" to be escaped using "\/"Justin Clark-Casey (justincc)2009-11-091-1/+0
|/ | | | | * also, "\" has to be escaped as "\\" * add item name unit test for escaped characters
* Change the permissions module to use the friend list cache already in theMelanie2009-11-051-0/+2
| | | | | friends module instead of requesting the entire friends list over the network each time a prim is touched.
* Initialize SceneObjectPart.RotationOffset to Quaternion.IdentityJohn Hurliman2009-11-041-1/+1
|
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJohn Hurliman2009-11-045-15/+21
|\
| * minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2009-11-043-13/+13
| |
| * Backport the fixes to WebFetchInventoryDescendents to the UDPMelanie2009-11-042-2/+8
| | | | | | | | | | | | | | InventoryDescendents packet. Testing has shown that UDP inventory now works flawlessly and, unlike CAPS inventory, doesn't download the entire agent inventory on start. Neither does it incessantly re-request folder NULL_KEY. Therefore, I have disabled CAPS inventory.
* | Removing EntityBase.RotationJohn Hurliman2009-11-043-15/+15
|/
* Another race condition fix in SceneObjectGroupJohn Hurliman2009-11-021-7/+11
|
* Fixing race conditions in the SceneObjectPart propertiesJohn Hurliman2009-11-021-56/+53
|
* Removing duplicate SceneObjectPart.RotationalVelocity propertyJohn Hurliman2009-11-022-14/+8
|
* * Implemented some tweaks to monitoring module.Adam Frisby2009-11-021-0/+3
| | | | | * Output is prettier & more useful. * Added 'Alerts' to allow rules to be constructed using Monitors to detect for events such as deadlocks. This will be translated to SNMP Traps when I get SNMP implemented.
* * Implements new 'Monitoring' system for reporting performance.Adam Frisby2009-11-011-8/+51
| | | | | | * Mostly the same set as the StatsMonitor used for Viewer notification, but exposes some new frametimes - including EventMS, PhysicsUpdateMS, LandUpdateMS; new memory monitoring - both GC.TotalMemory and Process.PrivateWorkingMemory64; also exposes ThreadCount (using System.Diagnostics.Process) * Type 'monitor report' on the console to see output. * SNMP Implementation forthcoming.
* * Fix for a potential race condition in ScenePresence.AbsolutePositionJohn Hurliman2009-10-302-40/+42
| | | | | | | * Unified the way region handles are stored and used in ScenePresence * Fixed camera position for child agents * CheckForSignificantMovement now checks avatar and camera position (both are important for scene prioritization) * Removing debug code from the previous commit