aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-03-04* More work on MiniRegionModule module.Adam Frisby1-0/+1
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW1-5/+22
There are two region modules in there LLStandaloneLoginModule (for standalone mode) and LLProxyLoginModule (for grid mode which just handles incoming expect_user and logoff_user messages from the remote login server) Changed OpenSim.Framework.Communications.Tests.LoginServiceTests to use the LLStandaloneLoginService (from the LLStandaloneLoginModule) rather than LocalLoginService. Really these login tests should most likely be somewhere else as they are testing specific implementations of login services. Commented out the old LocalLoginService as its no longer used, but want to check there are no problems before it gets deleted.
2009-03-02After another heroic and bloody battle, OpenSim Dino Expedition 1, killed ↵MW1-18/+0
off OsSetParcelMediaTime, which was only ever added for testing. And all the logic code of it has been commented out for a long time.
2009-03-02As part of a dinosaur hunting expedition, IScenePresenceBody.cs was ↵MW1-37/+0
terminated. The expedition leader, MW, believes it never lead a meaningful life, and is sure it hasn't contributed anything in the last 500,000 years (or 2 years).
2009-02-26* Update ScenePresenceTests to reflect current REST communication workflow.Sean Dague1-11/+27
* Fixed an issue with AssetCache where it would break unit tests randomly. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-02-26Add check in SceneManager to stop opensim.exe crashing if no regions/scenes ↵MW1-1/+8
were loaded.
2009-02-25* minor: Remove most mono compiler warningsJustin Clarke Casey1-2/+2
2009-02-25* Experimental softening of SOG waiting for update on link - changing from ↵lbsa711-3/+3
abort to forced update.
2009-02-25* Refactored SOP.FolderID weirdness by removing calls to empty setter. YEs, ↵lbsa711-1/+3
I do realize the setter has to be there for legacy reasons, but since the calls will never acually DO anyhting, I'm removing them. * So, SOP.FolderID is actually a cruft field that should be removed.
2009-02-25A few updates necessary for load balancer.Mike Mazur3-9/+18
- handle GetUser request for nonexistent user gracefully - include throttle levels in ClientInfo - code to save/restore throttles in client stack - only update/send updates to active clients - make animation classes serializable
2009-02-24Close-to-final tweaking with appearance. This time sending *everything*. ↵diva2-36/+29
Addresses mantis #3223.
2009-02-23From: Christopher Yeoh <yeohc@au1.ibm.com>Sean Dague1-0/+1
This patch fixes a bug where if a script in a child prim has taken control of an avatar when they sit, although permission for camera control is revoked when they stand, free camera control is not restored. Currently it is only restored if the script is in the root prim (though its not clear to me where this happens!).
2009-02-23Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames1-2/+2
2009-02-23* Commenting out threaded Scene update for the moment.Adam Frisby1-2/+3
* It works, but makes certain building tasks slow to update.
2009-02-23* Fix for recent thread patch - IsAlive apparently is not as reliable as ↵Adam Frisby1-1/+2
ThreadState.
2009-02-23* Performance Changes:Adam Frisby2-3/+17
* Moves Entity Updates into a seperate thread, allowing for OpenSim to utilize a computers CPU more effectively in return for potentially greater user and prim capacity. * Removes an expensive Sqrt call performed during Update on each object. This should lower CPU requirements for high-prim regions with physics enabled. * MXP Changes: Centers the region around 0,0 for primitives instead of 128,128. Prim display should now look more correct for MXP viewers.
2009-02-23Prevent avatar from walking along z-axisMike Mazur1-1/+19
Thanks mirceakitsune for a patch that prevents the avatar from trying to walk along the Z-axis in mouselook mode (or left-click the avatar and walk) while looking up or down. Fixes Mantis #946.
2009-02-23A little bit more tweaking with appearance. Now passing both the wearables ↵diva2-66/+75
and the textures referred to in the Texture faces of AvatarAppearance. The textures are still not being acted upon on the other side, but they will. Note: will make avies coming from older sims casper or grey. Upgrade! Related to mantis #3204.
2009-02-22Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke19-89/+100
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
2009-02-22* Fixes an assumption whereby Scene assumes that each client is capable of ↵Adam Frisby1-0/+8
producing a circuit. This affects non-Linden derived viewers who do not utilize circuits.
2009-02-22Addresses some issues with appearance after TPs. Appearance.Owner was not ↵diva2-5/+9
being set, and that's what's being used in SendAppearanceToOtherAgent. Mantis #3204.
2009-02-20* Renamed and encapsulated m_sceneGraph as SceneGraph for ccclbsa712-4/+13
2009-02-20* Consistently lock part.TaskInventory as pointed out in ↵Justin Clarke Casey3-17/+30
http://opensimulator.org/mantis/view.php?id=3159 * Not locking causes enumeration exceptions as described in this matis * part.TaskInventory needs to be locked for every access as it's a dictionary * Extra locking will hopefully not cause any major issues - in places where the enumeration of the dictionary performs other lock or long running operations, the dictionary is cloned instead
2009-02-20THE BIG ANTI-REMOTING SCHLEP -- StartRemoting is no more. Sims in older ↵diva2-44/+0
versions will have a hard time communicating with sims on this release and later, especially if they haven't transitioned to RESTComms at all. There's still some cleanup to do on assorted data structures, but the main functional change here is that sims no longer listen on remoting ports.
2009-02-20Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames2-507/+506
2009-02-20This moves the 2 friends-related interregion messages out of OGS1 and into ↵diva1-10/+0
the FriendsModule. No functional changes. Those messages were sent over XMLRPC, and that's how it continues to be for now. Just moving this couple of interregion messages out of OGS1, in preparation for the big shlep ahead.
2009-02-19* refactor: Rename new class AssetGatherer to UuidGatherer to reflect what ↵Justin Clarke Casey1-4/+4
it actually does
2009-02-19Thank you, Snowdrop, for a patch that makes the callback ID parameterMelanie Thielker2-7/+8
usable. Applied with formatting changes, please don't introduce K&R style indentations into OpenSim Fixes Mantis #3190
2009-02-19Fix region crossing for unscripted prims, avoid costly SEHMelanie Thielker1-1/+3
2009-02-18Make in-code provisions for the tests. Tests would fail because the Melanie Thielker1-1/+14
required file system objects are not present in the test harness. This makes the main code ignore the failure, therefore the test succeeds. Not elegant and maybe a unit test guru has a better way. Marked as a TODO
2009-02-18Fix the windows sharing violations on script crossingsMelanie Thielker1-13/+46
2009-02-18Stops animations on Teleports, to conform with what the viewer does.diva3-0/+11
2009-02-18* Change AssetGatherer method access so that only methods which are worth ↵Justin Clarke Casey1-86/+96
calling from the outside are public
2009-02-18Fixes height on Basic Physics in local teleports. Plus some small refactoring.diva2-2/+18
2009-02-18* minor: comment out a few more [de]serialization sog timing messagesJustin Clarke Casey1-3/+3
2009-02-18* Move asset gathering code from oar module to OpenSim.Region.Framework ↵Justin Clarke Casey1-0/+259
since this is useful in a variety of situations * Comment out one oar test since I think somehow the two save tests are causing the occasional test failures
2009-02-18Adds support for preserving animations on region crossings and TPs. diva5-18/+589
Known issue: after TP, the self client doesn't see the animations going, but others can see them. So there's a bug there (TPs only, crossings seem to be all fine). Untested: did not test animation overriders; only tested playing animations from the viewer.
2009-02-17Makes SP.CopyFrom a bit more robust with respect to sims in older versions ↵diva1-6/+4
which still don't have the new appearance management code.
2009-02-17Fix a typo. i + i is not 2 times meMelanie Thielker1-1/+1
2009-02-17Re-fixing the fix :/Melanie Thielker1-1/+1
2009-02-17One-liner to fix an omissionMelanie Thielker1-0/+1
2009-02-17Re-add the objectID field to the anim pack, that was deemed unneccessaryMelanie Thielker3-22/+35
and dropped nonths ago, because it is required to get smooth region crossings with AO running. Without it, in some corner cases, anims will continue to run in an unstoppable state.
2009-02-17Small change on dealing with ODE physics, so that this warning doesn't ↵diva1-1/+1
happen: "[PHYSICS]: trying to change capsule size, but the following ODE data is missing - Shell Body Amotor". That warning occurred in MakeRoot, because of the call to SetSize, immediately after making the avie physical.
2009-02-17- remove the Metadata property from AssetBase and return all previousMike Mazur3-45/+45
properties as before - prefix private variables with m_ in AssetBase.cs - related to Mantis #3122, as mentioned in https://lists.berlios.de/pipermail/opensim-dev/2009-February/005088.html - all services will likely need to be upgraded after this commit
2009-02-17Major change to how appearance is managed, including changes in login and ↵diva2-28/+87
user service/server. Appearance is now sent by the user service/server along with all other loginparams. Regions don't query the user service for appearance anymore. The appearance is passed along from region to region as the avie moves around. And, as before, it's stored back with the user service as the client changes the avie's appearance. Child agents have default appearances that are set to the actual appearance when the avie moves to that region. (as before, child agents are invisible and non-physical).
2009-02-16* refactor: remove AssetCache field hanging off SceneJustin Clarke Casey9-30/+24
* This is always available at Scene.CommsManager.AssetCache
2009-02-15More guards around SetHeight.diva1-2/+3
2009-02-15Fix exception when standing up.idb1-1/+1
Fixes Mantis #3170
2009-02-15Guarding the new call to SetHeight in MakeRoot, so that ODE doesn't complain ↵diva1-1/+1
when it's 0.
2009-02-15Moving SendInitialData sort of back to where it was before, so that it ↵diva1-4/+5
doesn't interfere with the unit tests.