aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/ScenePresence.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-11-08* Fixed occasional character drift caused by sim not sending the avatar's ↵Teravus Ovares1-0/+2
final resting velocity. * Added Smooth moving prim * Added event to PhysicsActor RequestPhysicsterseUpdate to allow physics plugins to be able to schedule a terse update.
2007-11-07move Sun into a Region Module, pass 1. Currently this works fine withSean Dague1-1/+2
a fixed 30 minute day and the sun going East -> West again. It gets rid of super noon as well. It's a bit debug heavy right now, which I'll clean up tomorrow. I also plan to make time progression configurable in OpenSim.ini, but that will be tomorrow.
2007-11-05* Substituted som 'GenericCall' with Action<>lbsa711-20/+24
* OnRequestWearables does no longer accept 'Client' as param, since it's always on the current client * Fixed SendOwnWearables to always operate on self, as that's what it does
2007-11-05Started to cleanup/close down childagent connections when a user teleports. ↵MW1-3/+13
As the client will not close old childagent connections without being told explicitly to do so by each region the connection is to. Currently only implemented in standalone mode. ( the TellRegionToCloseChildConnection( ) in OGS1GridServices.cs needs implementing for grid mode, and the inter region .net remoting added for the new messages). hopefully fixed the echo bug in chatmodule.
2007-11-05* UpdateWearable should SendOurAppearancelbsa711-0/+2
* Ignored some bins
2007-11-03tiny commit to prepare for the first proper part of Scene.cs refactoring. MW1-17/+13
2007-11-01* Diuerse beavtificatemslbsa711-12/+16
2007-10-31fixed bug with user not getting land properties on loginJeff Ames1-0/+2
2007-10-31some small changesMW1-6/+7
2007-10-31made illogical bitwise operations logicalJeff Ames1-1/+1
2007-10-31Thank you Teravus, very much, for a 'jump', 'crouch' and 'inertia' patch for ↵Charles Krinke1-4/+35
all three physics plugins.
2007-10-30Step one on the long march towards grid based inventory. Introduction of an ↵Tleiades Hax1-1/+1
InevntoryServer
2007-10-30temporary fix for sitting collisions in ODEJeff Ames1-9/+58
2007-10-30* Optimized usingslbsa711-42/+41
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-2/+1
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-29* Removed AssetNotFound as it crashes clientlbsa711-37/+43
* Fixed introduced bugs in ScenePresence
2007-10-29* ModuleLoader: Privatized some too-public fieldslbsa711-41/+41
* Scene: Changed name from MakeAvatarPhysical to MakeRootAgent and added ForEachClient * SceneManager: Added ForEachScene * Worked some on appearances.
2007-10-28Added preliminary support for sitting on primsJeff Ames1-16/+77
2007-10-26* Added prototypical AvatarFactory module interface to load avatar parameterslbsa711-43/+32
* Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
2007-10-22* Removed plenty more untagged console messages. Everything now has shiny ↵Adam Frisby1-1/+0
groups. :)
2007-10-18Possible fix for: Remoting exceptions with adjacent non-running sims.Tleiades Hax1-1/+1
Bugs 449, 454, 408, 244, 197 implemented InformClientOfNeighbours as an asynchroneous process, handling timeouts without blocking the main thread. Improved logging of errors, removed catch all in try catch
2007-10-11Some changes to the sending of updates of SceneObjects to clients, that I ↵MW1-35/+70
did a few weeks ago but never committed (and never completely finished what I had planned).
2007-09-29Hollow prims (box only), thanks Gerard! Enjoydan miller1-1/+1
2007-09-27this should fix 443 and compile!dan miller1-1/+1
2007-09-27this should fix mantis #443dan miller1-3/+6
2007-09-27Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa711-3/+3
Tleiades patch 444 and 445.
2007-09-27* Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa711-3/+3
* updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
2007-09-24* Long days journey towards nightlbsa711-4/+5
2007-09-24* Hotfix for 'properties all the way into the sunset' bug; it just doesn't ↵lbsa711-10/+10
make sense, but maybe we need to handle agentUpdates form children too. * Ignored some bins
2007-09-24* the worlds most insignificant commitlbsa711-0/+1
2007-09-24* Console output killed the cat. s/cat/sim/lbsa711-2/+2
2007-09-24* Encapsulated all CommunicationsManager serviceslbsa711-2/+2
2007-09-24long-lost fixes to physics -- proper physical avatar management on crossings, TPdan miller1-0/+1
2007-09-23* Purged 'Regions' code pending Agent layer grok.lbsa711-11/+1
* Changed so prims aren't loaded until AFTER parcels. * The region startup flow is still an ungodly rats nest.
2007-09-21* Slowly but surely working my way towards Regionality...lbsa711-36/+25
2007-09-21* Yeah, I placed Close() in the wrong file. So sue me.lbsa711-0/+5
2007-09-21* Continued work on Region layerlbsa711-2/+2
* Added Close() to ScenePresence to remove and destroy PhysicsActor
2007-09-21* Removed unused LandRenegerated flaglbsa711-7/+0
2007-09-21* First example of moving stuff to a Region layerlbsa711-22/+12
* Also, changed RegionPresence to 'RegionSubscription' - let's just see where we land with this...
2007-09-21* Continuing refactoring of presencelbsa711-53/+63
* Deleted stub ScenePresence.Body.cs * Added stub Region classes The idea is to, at first, have every ScenePresence have one RegionPresence, moving code over to it until we can detach the two classes and not have a ScenePresence for every RegionPresence.
2007-09-21physics-related fixes; should stabilize border crossingsdan miller1-1/+16
2007-09-21* Removed Unused 'Entity' superclasslbsa711-1/+71
2007-09-20* even more renaming and refactoring; the cleaning woman is on call.lbsa711-50/+51
2007-09-20* Some more presence refactoringlbsa711-2/+2
2007-09-20Rev 1971 : The Lbsa71 vintage commitlbsa711-35/+34
* Refactored to prepare for some serious restructuring
2007-09-19* Added AddToPhysicalScene and RemoveFromPhysicalScene and added to ↵lbsa711-8/+27
MakeAvatar and MakeChildAgent respectively * Removed unused m_child from ClientView
2007-09-19* Modernized ScriptManager to new interface-based module calls.lbsa711-196/+197
* 'remove redundant this qualifier' ftw
2007-09-11Get rid of extra green men in minimap on region crossings (they were Dalien Talbot1-2/+3
child agents, not delirium tremens - thanks MW!); Get green men when connecting; Update the green men in the region you leave.
2007-09-10mass update of urls in source code to new websiteSean Dague1-1/+1
2007-09-09added avatar updates for physics movement -- fixes gravity & avatar ↵dan miller1-3/+15
collision (ODE)