aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/ScenePresence.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-06-26Update svn properties. Minor formatting cleanup.Jeff Ames1-2/+1
2008-06-16* Allow archiver to save and load objects within other objects to arbitrary ↵Justin Clarke Casey1-1/+1
levels * This currently has various bugs which are more to do with the way its been hacked together than the feature itself (e.g. on save-oar, ghost prims will appear of the saved contained items). These will be found and eliminated in subsequent patches. * Not yet ready for use
2008-06-13Update svn properties, clean up formatting, refactor out duplicate ↵Jeff Ames1-16/+9
hard-coded port numbers.
2008-06-12* Split the World Map code into a module.Teravus Ovares1-1/+1
* Implemented a hack so regions beyond the 10,000m range will show the map without having to click on the map before they'll start to show. The hack shows regions around the one you're in, but it won't show the one you're in.. you still need to click on the map to get that (not sure why yet). Additionally, the map still only shows pictures for regions that are hosted on the same instance (no change).
2008-06-11* Fix the string substitutions in the last commitJustin Clarke Casey1-1/+1
2008-06-11* From inspecting OSGrid WP logs, it appears one particular client is ↵Justin Clarke Casey1-3/+14
failing because they are giving an illegal initial position to ScenePresence.MakeRootAgent() * If we detected an illegal position (x, y outside region bounds or z < 0), then print out the illegal position and substitute an emergency <128, 128, 128> instead
2008-06-06* How tall are you? Certainly not 127 meters!Teravus Ovares1-2/+9
2008-06-06* true and not true or - not true and not true and.Teravus Ovares1-1/+1
2008-06-06* This limits avatar to the heightfield height if they teleport or cross a ↵Teravus Ovares1-1/+6
border to a position below it. After teleporting, you can go under the terrain if you like as usual.
2008-06-06* This wraps the autopilot request to the client's sit response. An ↵Teravus Ovares1-24/+120
interesting, but successful way to do it. * This also takes care of a few error situations that were previously never seen.
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares1-0/+1
* User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
2008-05-30* Fixed a dangling event hook that I added.Teravus Ovares1-0/+37
* Added a Non-finite avatar position reset. This will either handle the <0,0,0> avatar gracefully, or send the avatar to 127,127,127 if that also doesn't work. ( I've only been able to reproduce this error once on my development workstation )
2008-05-29* Ruling out another potential cause of zombie-ismTeravus Ovares1-0/+2
2008-05-29* Added a child agent check to the ChildAgentData Update to make sure that ↵Teravus Ovares1-1/+5
you're a child agent before applying the changes from the grid comms. Doing this to rule it out as a source of a few bugs such as the Zombie bug and the Express Train to 0,0,0 bug.
2008-05-28Formatting cleanup.Jeff Ames1-2/+2
2008-05-28Thank you kindly, Melanie for a patch that adds a two-stageCharles Krinke1-1/+7
check. It seems there may be a race. For me, this patch, just as it is here, fixes it.
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames1-4/+1
2008-05-25Thank you very much, Melanie for a patch that:Charles Krinke1-0/+6
If the m_controllingClient member if a ScenePresence is null, that would cause a CTB. This patch fixes it.
2008-05-24* an attempt to resolve the teleport + attachment = crashTeravus Ovares1-4/+19
2008-05-23IRCBridgeModule (and ChatModule before the refactoring) didn't succeed in Dr Scofield1-0/+2
finding out which region a new avatar was logging in to; the same problem occurred when the client/avatar logged out. the reason was mani-fold: - Scene.AddNewClient(...) would call SubscribeToClientEvents(client) which would subscribe to all client events and then call TriggerOnNewClient(...) BEFORE the ScenePresence object had even been created and added. i've moved the TriggerOnNewClient() call to the end of Scene.AddNewClient() - Scene.AddNewClient(...) is called with child == true; a later call to ScenePresence.MakeRootAgent() will turn child to false. When OnNewClient is triggered, child is still true, causing IRCBridgeModule's FindClientRegion to ignore the ScenePresence of the new avatar. i've changed IRCBridgeModule to still use OnNewClient and also OnLogout and OnConnectionClosed but only to signal that the avatar has logged on (logged off respectively). to track whether an avatar has actually entered a region i've added EventManager.OnMakeRootAgent (complementing OnMakeChildAgent). also, i've cleaned up the internal IRCModule code a bit. currently it still uses IClientAPI.SendChatMessage() which replicates the code in ChatModule, that needs to be changed to use TriggerOnChatFromWorld().
2008-05-23*Refactor of the LandManagementModule that allows OpenSim to run without itmingchen1-9/+1
2008-05-22don't trust appearance assetid, instead do an inventorySean Dague1-5/+5
lookup any time we get it from the server. This should preventent unwearable appearance.
2008-05-21Clean out some crufty in AvatarFactoryModule Sean Dague1-13/+10
Fix RequestUpdateInventoryItem so that asset changes generate a new asset, which is needed for editing appearance to do the right thing. Persistant appearance seems to work after this, except you need to rebake textures some times.
2008-05-21this removes use of the mapper for wearables, and I can confirm thingsSean Dague1-2/+1
get saved to the database. There are still issues on wearing things after a cleared cache that I'm looking at now.
2008-05-20Add copyright notices.Jeff Ames1-1/+1
Fix spelling typo (Thanks ChrisDown for pointing this out)
2008-05-19fix crash in standalone mode for initial appearance setupSean Dague1-3/+3
2008-05-19Attempt to fix incorrect animations when using ODE (bugs #1320 / #1321)Jeff Ames1-9/+16
2008-05-19Rework some of the animation logic in an attempt to resolve #1318Jeff Ames1-38/+25
2008-05-18Formatting cleanup, minor refactoring. Fixed some comparisons of value ↵Jeff Ames1-2/+2
types and null.
2008-05-17while this doesn't fix the initial no pants issue in grid (which still ↵Sean Dague1-6/+16
baffles me) it does make setting appearance in grid stick.
2008-05-17Formatting cleanup.Jeff Ames1-3/+3
2008-05-16minor change to justin's previous fix that should stillSean Dague1-3/+4
prevent his crashes
2008-05-16* Removing unnecessary LLUUID.Zero check from AssetCacheJustin Clarke Casey1-1/+6
* This revision also includes a very temporary fix for the fact that NREs are received because of a missing avatar apperance in grid mode
2008-05-16Minor cleanup.Jeff Ames1-1/+1
2008-05-16Formatting cleanup.Jeff Ames1-92/+92
2008-05-16appearance now survives logout. Tommorrow will involve movingSean Dague1-1/+2
the MSSQL and MYSQL mappers back in under datastores and looking at doing gid bits for this
2008-05-15testing avatar appearance as a user serviceSean Dague1-0/+7
2008-05-15minor refactor of some properties for readabilitySean Dague1-9/+9
2008-05-15refactoring to move AvatarAppearance into Framework andSean Dague1-8/+16
move the appearance sending bits to ScenePresence
2008-05-14* Comitting 0001271: [PATCH] Refactor permissions to fully allow stacking ↵Teravus Ovares1-7/+1
permissions modules. From Melanie. Thanks Melanie!
2008-05-14* Applying patch from Melanie to expose godlevel to modules.Adam Frisby1-0/+5
2008-05-14* Applying patches from Melanie to cover permissions module. Thanks!Adam Frisby1-0/+6
2008-05-14Formatting cleanup.Jeff Ames1-1/+1
2008-05-14* Refactored OutPacket out of ScenePresence Teravus Ovares1-24/+7
* Down to 65 warnings.
2008-05-13* Implemented ChildAgentDataUpdate throttle multiplier based on an ↵Teravus Ovares1-1/+18
inaccurate count of neighbors. * The neighbor count is always lower then the actual number of neighbors unless your region was up the longest. * The region you're in is un-affected by this, though, you'll get less packet loss, maybe not get logged off immediately when you log in, and possibly see more prim if your internet connection is semi-unreliable.
2008-05-12Move animation handling from ScenePresence into its own class.Jeff Ames1-152/+49
2008-05-12Thanks Melanie for a patch to stop sending unnecessary animation updates ↵Jeff Ames1-1/+3
(bug #1239).
2008-05-12Refactoring animation handling in ScenePresence.Jeff Ames1-143/+101
2008-05-12Formatting cleanup.Jeff Ames1-17/+17
2008-05-110001199: [PATCH] Add support for default animations Teravus Ovares1-0/+57
From Melanie... Thanks Melanie! .