aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/ScenePresence.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-11-10Stop attachments from causing an update to be sent on every frame in whichMelanie Thielker1-2/+4
an avatar moves.
2008-11-08Small bugfix for RemoveNeighbourRegionHomer Horwitz1-1/+1
2008-11-07* Correct catch changed on last commit, since I just realized I started ↵Justin Clarke Casey1-1/+1
making it catch a little too much, in principle
2008-11-07* minor: Remove mono compiler warningJustin Clarke Casey1-1/+1
2008-11-07* Fix bug in r7162 where avatars could not moveJustin Clarke Casey1-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
2008-11-07* Remove next local id from SceneBaseJustin Clarke Casey1-4/+0
* This was only reference by ScenePresence and not used anyway - Scene itself had it's own copy
2008-11-07* minor: Just some tidy up of log messages, etc.Justin Clarke Casey1-13/+5
2008-11-07* Stop requiring local ids in the SOG constructors.Justin Clarke Casey1-2/+1
* These are assigned when the object is attached to the scene
2008-11-07Fixing up some remaining attachment issuesMelanie Thielker1-6/+4
2008-11-07Attachments, attachments, and, did I say attachments?Melanie Thielker1-35/+64
Too many fixes to list.
2008-11-06* refactor: Attach a scene object to a scene separately from its constructionJustin Clarke Casey1-11/+13
2008-11-06Mantis#2423. Thank you kindly, Godfrey for a patch that:Charles Krinke1-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;
2008-11-06Mantis#2514 & 1375. Thank you kindly, Thomas for a patch that:Charles Krinke1-1/+1
Improves ScenePresence.cs for attachments when crossing boundaries between regions.
2008-11-06Disable distance sorting for child agents. It makes no sense there, as theMelanie Thielker1-4/+7
base point for the sort is 128,128,128, causing funny visuals
2008-11-04* Stop sending wearables back to the client on set appearanceJustin Clarke Casey1-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)
2008-11-04* minor: appearance related doc and log message tweakingJustin Clarke Casey1-5/+11
2008-11-04Added a (xmlIgnored) SitAnimation property to SceneObjectPart. That allows ↵MW1-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
2008-10-31* Reinstate sending wearables back to the client in response to set appearanceJustin Clarke Casey1-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
2008-10-28* Possibly fix grey avatar appearance problemsJustin Clarke Casey1-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
2008-10-28* minor: Add documentation to some of the appearance methods, change some ↵Justin Clarke Casey1-9/+14
logging messages
2008-10-28* Eliminate an extra unnecessary appearance fetch on loginJustin Clarke Casey1-19/+13
* This shouldn't fix the existing appearance bugs, but neither should it make them worse.
2008-10-28* minor: Doc and log message tidy upJustin Clarke Casey1-3/+3
* reinstate debug level log message indicating when a child agent is made a root for future debugging purposes
2008-10-28Thank you kindly, Mircea Kitsune for a patch that solves:Charles Krinke1-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.
2008-10-26Committing a small fix for EventData along with more plumbing workMelanie Thielker1-2/+20
2008-10-25Make ScenePresence.Close public to allow subclassing of SceneCommsMelanie Thielker1-1/+1
2008-10-23* Apply http://opensimulator.org/mantis/view.php?id=2459Justin Clarke Casey1-0/+5
* Implements the rest of llGetAgentInfo() with the exception of AGENT_BUSY. * Thanks nlin
2008-10-22Thank you kindly, Idb for a patch that:Charles Krinke1-0/+21
Added AGENT_ATTACHMENTS and AGENT_SCRIPTED to llGetAgentInfo Added to llGetAgentSize to include shoes in avatar height calculation.
2008-10-22Thank you kindly, Nlin for a patch that:Charles Krinke1-1/+1
Attached patch adds detection of AGENT_WALKING status to LSL function llGetAgentInfo()
2008-10-18Fix thingd so that autoreturn also works when the user is not in the sim.Melanie Thielker1-1/+7
Also add experimental distance ordering for prims
2008-10-18Megapatch. :) Fix skull attachment editing. Streamline Object terse updates.Melanie Thielker1-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.
2008-10-15Thanks to T. Sado and nlin for a patch that partially implements ↵Dahlia Trimble1-3/+38
llGetAgentInfo (AGENT_FLYING, AGENT_ALWAYS_RUN, AGENT_AWAY, AGENT_MOUSELOOK, AGENT_TYPING).
2008-10-15Thanks to M. Igarashi and nlin for a patch that implements llGetCameraRot().Dahlia Trimble1-0/+5
2008-10-14* Send an avatar update to other clients when an avatar rotates, as well as ↵Justin Clarke Casey1-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
2008-10-14* minor: Make it clear that non-scheduled updates can happen outside of the ↵Justin Clarke Casey1-3/+1
per frame update heartbeat
2008-10-14* refactor: rename SendKiPrimitive to SendKillObject since this appears more ↵Justin Clarke Casey1-1/+1
descriptive of what it actually does
2008-10-12Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
2008-10-12* Fixed two major unhandled exceptions discovered during the Pub Quiz on friday.Adam Frisby1-1/+9
2008-10-05* Fix sitting avatar showing up properly on the minimapTeravus Ovares1-1/+18
2008-10-04Unclutter rezzing methods by removing the ad hoc permissions parameters.Melanie Thielker1-1/+1
Thise were client supplied untrusted values we never used anyway.
2008-09-30- a couple of minor code cleanups in RestInventoryServicesDr Scofield1-0/+1
- cleanups and more comments in ChatModule and IRCBridgeModule - adding Name support in ScenePresence
2008-09-28* okay.. Now you can do border crossings with the security 'fixed' ↵Teravus Ovares1-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!
2008-09-14Thank you kindly, CMickeyb for a patch that:Charles Krinke1-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).
2008-09-13Update avatar-position while avatar is sitting and the prim is moved (#2159).Homer Horwitz1-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).
2008-09-12* Patch http://opensimulator.org/mantis/view.php?id=2172Justin Clarke Casey1-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
2008-09-12* Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey1-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.
2008-09-10Revert the two debug log statements from r6212 as described in Mantis 2126.Charles Krinke1-14/+0
2008-09-10Thank you kindly, CMickeyB for a patch that adds aCharles Krinke1-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.
2008-09-06* This changes gridcomms types back to our home grown wholy controlled types. Teravus Ovares1-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.
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-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.
2008-08-30Mantis#2084. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-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.