aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/ScenePresence.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Stop attachments from causing an update to be sent on every frame in whichMelanie Thielker2008-11-101-2/+4
| | | | | | an avatar moves.
* Small bugfix for RemoveNeighbourRegionHomer Horwitz2008-11-081-1/+1
|
* * Correct catch changed on last commit, since I just realized I started ↵Justin Clarke Casey2008-11-071-1/+1
| | | | making it catch a little too much, in principle
* * minor: Remove mono compiler warningJustin Clarke Casey2008-11-071-1/+1
|
* * Fix bug in r7162 where avatars could not moveJustin Clarke Casey2008-11-071-0/+1
| | | | | | | * Was caused by the lack of a local id. Local ids are now given from the same sequence as prims, rather than a separate one * I don't believe this will cause any problems, but please revert to a separate sequence if it does
* * Remove next local id from SceneBaseJustin Clarke Casey2008-11-071-4/+0
| | | | | | * This was only reference by ScenePresence and not used anyway - Scene itself had it's own copy
* * minor: Just some tidy up of log messages, etc.Justin Clarke Casey2008-11-071-13/+5
|
* * Stop requiring local ids in the SOG constructors.Justin Clarke Casey2008-11-071-2/+1
| | | | | | * These are assigned when the object is attached to the scene
* Fixing up some remaining attachment issuesMelanie Thielker2008-11-071-6/+4
|
* Attachments, attachments, and, did I say attachments?Melanie Thielker2008-11-071-35/+64
| | | | | | Too many fixes to list.
* * refactor: Attach a scene object to a scene separately from its constructionJustin Clarke Casey2008-11-061-11/+13
|
* Mantis#2423. Thank you kindly, Godfrey for a patch that:Charles Krinke2008-11-061-2/+2
| | | | | | | | Included patch fixes error: Z and W terms in the quaternion were swapped (ZERO_ROTATION is <0,0,0,1>, it was checking for <0,0,1,0>). There is an issue with older prims: it seems their default sit target was not always set to ZERO_ROTATION;
* Mantis#2514 & 1375. Thank you kindly, Thomas for a patch that:Charles Krinke2008-11-061-1/+1
| | | | | | Improves ScenePresence.cs for attachments when crossing boundaries between regions.
* Disable distance sorting for child agents. It makes no sense there, as theMelanie Thielker2008-11-061-4/+7
| | | | | | base point for the sort is 128,128,128, causing funny visuals
* * Stop sending wearables back to the client on set appearanceJustin Clarke Casey2008-11-041-6/+1
| | | | | | * Now I've had time to analyze this, the Second Life grid doesn't appear to send this to the client (which in principle should know what wearables it has already)
* * minor: appearance related doc and log message tweakingJustin Clarke Casey2008-11-041-5/+11
|
* Added a (xmlIgnored) SitAnimation property to SceneObjectPart. That allows ↵MW2008-11-041-2/+58
| | | | | | | | | the setting of the name of the animation to be used when a avatar sits on that object. At some point in the future this should be persisted. So basically simplifies what a lsl script that detects a avatar sitting on a prim, then stopping the sit animation and playing a custom animation, does. Also added another ScenePresence.HandleAgentRequestSit() method , that accepts the name of the sit animation. So that modules can override the animation used, when they are doing a server controlled sit. Started some work on making the stand pose be played as soon as a user logs into a region. Rather than them starting with their arms stretched. This still needs more work
* * Reinstate sending wearables back to the client in response to set appearanceJustin Clarke Casey2008-10-311-1/+1
| | | | | | | * Since the client sets the appearance in the first place (in response to receiving wearables information originally) this seems a little redundant * But I've realized I didn't actually test this assumption, so I'm going to reinstate it for now
* * Possibly fix grey avatar appearance problemsJustin Clarke Casey2008-10-281-2/+2
| | | | | | | | | | | | * And hopefully rebaking all the time should no longer be necessary now * It turns out that when the client baked the texture, the uploaded asset had the Temporary flag to true (Temporary is actually deprecated). * It also had the StoreLocal flag set to true, which signifies that the asset should be stored locally. If it disappears we should reply to the asset request with ImageNotInDatabasePacket * However, last time this was enabled some clients started crashing. This may well no longer be the case and needs to be tested, but in the mean time we will store the asset instead. * This needs to be resolved in a better way, possibly by starting to send the ImageNotInDatabase packet again instead
* * minor: Add documentation to some of the appearance methods, change some ↵Justin Clarke Casey2008-10-281-9/+14
| | | | logging messages
* * Eliminate an extra unnecessary appearance fetch on loginJustin Clarke Casey2008-10-281-19/+13
| | | | | | * This shouldn't fix the existing appearance bugs, but neither should it make them worse.
* * minor: Doc and log message tidy upJustin Clarke Casey2008-10-281-3/+3
| | | | | | * reinstate debug level log message indicating when a child agent is made a root for future debugging purposes
* Thank you kindly, Mircea Kitsune for a patch that solves:Charles Krinke2008-10-281-2/+2
| | | | | | | | When the avatar stops flying in mid air, it stays still while it falls to the ground. Normally, the avatar would use the falling animation (when it spins its arms and legs while falling) until it reaches the ground.
* Committing a small fix for EventData along with more plumbing workMelanie Thielker2008-10-261-2/+20
|
* Make ScenePresence.Close public to allow subclassing of SceneCommsMelanie Thielker2008-10-251-1/+1
|
* * Apply http://opensimulator.org/mantis/view.php?id=2459Justin Clarke Casey2008-10-231-0/+5
| | | | | | | * Implements the rest of llGetAgentInfo() with the exception of AGENT_BUSY. * Thanks nlin
* Thank you kindly, Idb for a patch that:Charles Krinke2008-10-221-0/+21
| | | | | | Added AGENT_ATTACHMENTS and AGENT_SCRIPTED to llGetAgentInfo Added to llGetAgentSize to include shoes in avatar height calculation.
* Thank you kindly, Nlin for a patch that:Charles Krinke2008-10-221-1/+1
| | | | | | Attached patch adds detection of AGENT_WALKING status to LSL function llGetAgentInfo()
* Fix thingd so that autoreturn also works when the user is not in the sim.Melanie Thielker2008-10-181-1/+7
| | | | | | Also add experimental distance ordering for prims
* Megapatch. :) Fix skull attachment editing. Streamline Object terse updates.Melanie Thielker2008-10-181-1/+1
| | | | | | | | Add rezzing time to objects. Add Object return and traffic fields to land database. Add plumbing for auto return. Implement auto return. Contains a migration. May contain nuts.
* Thanks to T. Sado and nlin for a patch that partially implements ↵Dahlia Trimble2008-10-151-3/+38
| | | | llGetAgentInfo (AGENT_FLYING, AGENT_ALWAYS_RUN, AGENT_AWAY, AGENT_MOUSELOOK, AGENT_TYPING).
* Thanks to M. Igarashi and nlin for a patch that implements llGetCameraRot().Dahlia Trimble2008-10-151-0/+5
|
* * Send an avatar update to other clients when an avatar rotates, as well as ↵Justin Clarke Casey2008-10-141-3/+21
| | | | | | | | | when it moves * This should fix a long standing issue where you often wouldn't see other people simply turn around without moving at all * Arguably lastPhysRot (to mirror lastPhysPos) is not a good name, may change variable names later
* * minor: Make it clear that non-scheduled updates can happen outside of the ↵Justin Clarke Casey2008-10-141-3/+1
| | | | per frame update heartbeat
* * refactor: rename SendKiPrimitive to SendKillObject since this appears more ↵Justin Clarke Casey2008-10-141-1/+1
| | | | descriptive of what it actually does
* Update svn properties, minor formatting cleanup.Jeff Ames2008-10-121-1/+1
|
* * Fixed two major unhandled exceptions discovered during the Pub Quiz on friday.Adam Frisby2008-10-121-1/+9
|
* * Fix sitting avatar showing up properly on the minimapTeravus Ovares2008-10-051-1/+18
|
* Unclutter rezzing methods by removing the ad hoc permissions parameters.Melanie Thielker2008-10-041-1/+1
| | | | | | Thise were client supplied untrusted values we never used anyway.
* - a couple of minor code cleanups in RestInventoryServicesDr Scofield2008-09-301-0/+1
| | | | | | | - cleanups and more comments in ChatModule and IRCBridgeModule - adding Name support in ScenePresence
* * okay.. Now you can do border crossings with the security 'fixed' ↵Teravus Ovares2008-09-281-1/+17
| | | | | | | | client.. with EventQueue enabled. * You occasionally loose the event queue if you cross back and forth between the same regions many multiples of times. * But Don't try to teleport!
* Thank you kindly, CMickeyb for a patch that:Charles Krinke2008-09-141-3/+8
| | | | | | | | | Moved intialization of appearance from the SendInitialData event handler into CompleteMovement handler. That ensures that m_appearance is initialized before the inventory is retrieved (so there is a place to check on attachments).
* Update avatar-position while avatar is sitting and the prim is moved (#2159).Homer Horwitz2008-09-131-0/+5
| | | | | | | I decided to make ParentPosition a public property in ScenePresence, because that's exactly what happens (the parent position changes on prim move).
* * Patch http://opensimulator.org/mantis/view.php?id=2172Justin Clarke Casey2008-09-121-4/+18
| | | | | | | | | * Patch attached that adds the check for uninitialized appearance when inventory items are received and processed. Also attempts to ensure that appearance is initialized even when the profile cache has not been built. * This will not fix the race condition, but should at least remove the unhandled exception that is being reported in Mantis 0002126. * Thanks cmickeyb
* * Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey2008-09-121-0/+5
| | | | | | | | | * This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
* Revert the two debug log statements from r6212 as described in Mantis 2126.Charles Krinke2008-09-101-14/+0
|
* Thank you kindly, CMickeyB for a patch that adds aCharles Krinke2008-09-101-0/+14
| | | | | | | | couple of debug statements for null items while we diagnose our interrmittent inventory issues. I looked at this and it seems helpful to others. We can back it later if desired.
* * This changes gridcomms types back to our home grown wholy controlled types. Teravus Ovares2008-09-061-5/+5
| | | | | | * These are different types then the OMV types because changing them causes just about all grid comms to break. If these were the libOMV types, then libOMV couldn't change them ever again after that.. or we'd have a breakage whenever they changed them. * This might introduce a map issue. Still checking it out.
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-205/+193
| | | | | | | * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
* Mantis#2084. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-301-4/+18
| | | | | | | | | | | | Addresses the problem of ghost avatars. The problem was child-agents sending data. Due to symmetry reasons, I considered that wrong. Whenever an avatar A1 in region R1 looks at avatar A2 in adjacent region R2, we have two possibilities to communicate: A2-root sends to A1-child (both in region R2), or A2-child sends to A1-root (both in region R1). Currently, the children send data in some cases, and I guess the viewer gets puzzled about that and switches the child to root as consequence (at least partly), so it becomes visible.