aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/ScenePresence.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-01-16* Added Agent Time, Pending Downloads, and made Agent Updates/Sec actually ↵Teravus Ovares1-1/+43
accurate. * We're only missing, the script related sim stats counters and the Images time counter and the Pending Uploads counter. The rest of them are actually implemented now.
2008-01-12*removed a goofy debug line left inTeravus Ovares1-4/+1
2008-01-12* Added some of the finer control points to POS such asTeravus Ovares1-0/+5
** jumping ** crouching ** landing on prim
2008-01-04* Fixed situation where sometimes your avatar tries to land and gets 'put' ↵Teravus Ovares1-1/+8
80 meters into the air immediately.
2008-01-02* Did a bit of estate work. Added some fields to EstateSettings.xml for ↵Teravus Ovares1-1/+8
estate managers. * You can put UUIDs in those fields to give other users some ability to help manage a sim you own. * Also started decoding the EstateOwnerMessage packet convolutions.
2007-12-27* Optimized usingslbsa711-63/+69
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-27* Added slightly better object sit handlingTeravus Ovares1-14/+96
* Added sit handling for sit targets * Implemented llSitTarget() * Implemented llAvatarOnSitTarget() * Sit targets do not persist sim restart.
2007-12-26* Play the 'landing' animation when landing and minimize the collision ↵Teravus Ovares1-1/+2
protection offset so the animations match up.
2007-12-26* This update includes a wide range of changes to the ODEPlugin for avatar ↵Teravus Ovares1-11/+11
movement, including: ** - avatar can navigate stairs better now ** - avatar can land without shooting into the air ** - excessive collisions with the ground are tempered somewhat and should only shoot the avatar up 20m instead of 200m ** - Try Catched a TextureDownloadModule.cs array out of bounds error with a report that causes it not to crash the sim, however it reports a few important items for tracking it down.
2007-12-26* Removed a debug message I left in thereTeravus Ovares1-1/+7
* Added a few more comments.
2007-12-26* Added the ability to land automatically on prim by pressing the page down ↵Teravus Ovares1-2/+51
button when over them and colliding * Reverted the avatar portion of the inter-penetration physics scene explosion management, it needs more work.
2007-12-20*Ban lines now work if they are enabled grid wide.mingchen1-0/+2
*Restricted lines just give you a friendly warning for now
2007-12-20Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames1-5/+1
Works with LibSL rev>1532
2007-12-20*Added event called after any movement is handled (OnClientMovement) - will ↵mingchen1-0/+3
be used for parcel banning goodness
2007-12-20*Made a much more network friendly method of ban and pass line sendingmingchen1-1/+6
*Added an event that is triggered when an agent enters a new parcel
2007-12-19Misc. cleanup:Jeff Ames1-12/+24
* added Util.Clip(value, min, max) * modified asset cache's numPackets calculation to use max packet size (600) instead of 1000 * removed a few magic numbers
2007-12-19*Added Ban Lines around parcels for banned avatars, but there is no actual ↵mingchen1-1/+1
blocking done yet. *Made the OnSignificantClientMovement distance from .02 to .45 to make it easier on the server.
2007-12-18* Removed redundant code in RestService.csAdam Frisby1-3/+0
* Removed unchecked TryParse, replaced with Parse as we were not checking for success and could lead to weirdness if an exception is ignored. * Removed unused variable m_newAvatar * Removed several unused try{}catch(Exception e){}'s. * Added null assignment in simpleapp to prevent warning.
2007-12-13Enabled the sit_ground animation. The sit state is not properly set, but it ↵Jeff Ames1-1/+1
looks okay, and doesn't seem to break anything. Just move around to stand up.
2007-12-13Added placeholder for sitting on ground support. Doesn't work yet.Jeff Ames1-2/+9
2007-12-13Fix for #176 (... doesn't appear in chat bubbles). This also gets the viewer ↵Jeff Ames1-17/+0
to handle starting/stopping of the typing animation.
2007-12-12remove another partial class, and map another class back to a real fileSean Dague1-1/+1
2007-12-12* Added some simstats to fill the simulator pane of the Statistics monitor.Teravus Ovares1-1/+2
* I stress, this is an initial implementation and the Agents(Child and Root) are definately obviously incorrect.
2007-12-11Minor cleanup/refactoring of ScenePresence.Jeff Ames1-76/+47
Changes flying animation to hover when not moving (as per Teravus's suggestion).
2007-12-10* Added comments to many methods in the listed files.Teravus Ovares1-41/+105
2007-12-10Refactored animation handling in ScenePresence. Now maintains a list of ↵Jeff Ames1-78/+101
current animations. * Fixes weirdness when typing and sitting at the same time * Should fix bug #32 (getting stuck in edit appearance pose) * Crouchwalk and possibly jump may need more looking into
2007-12-10saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames1-1/+1
notice of doom
2007-12-10* Hooked up the GridComm event ChildDataUpdate to the scene.Teravus Ovares1-0/+14
* Added List<RegionInfo> m_neighbours to Scene * Hooked up the OnRegionUp event to m_neighbours list * Modified RegionInfo to have a bool commFailTF value so that we can skip neighbors that fail. (when the region comes up, this gets reset to false and the region will try again. * Added SetChildAgentThrottle(byte[]) to IClientAPI * Several other insignificant changes related to passing child pertanant agent data from sim to sim.
2007-12-07Avatar Appearance refactoring /changes. Added a AvatarAppearance class, each ↵MW1-131/+137
ScenePresence "has" a AvatarAppearance object. All the ScenePresences in a opensim related to one user (so a user's various ScenePresence's in all the regions in that instance) share the same AvatarAppearance object. This means that a user's avatar should appear correctly (to both that user and other users) no matter what border crossing or teleporting they have done. Note: this mainly improves Standalone mode, as in grid mode the appearance data isn't passed between region servers. Although people should notice a improvement when moving between regions in the same instance.
2007-12-07Updates to LibSL revision 1498. Thanks Johan!Adam Johnson1-14/+14
2007-12-07added one more command to the console help.Jeff Ames1-28/+12
2007-12-06removed obsolete Verbose() functionJeff Ames1-0/+3
2007-12-05* Refactored Permissions into ScenePresence as requested by MWTeravus Ovares1-3/+6
* Un-hackerized generating the client_flags * Now handling the ObjectPermissions Update packet * Warning: Backup your prim before updating. If you fail to do so and something goes wrong then, All Yr prim are belong to us!
2007-12-04keeping opensim safe for children -- made some namespace references less ↵Jeff Ames1-6/+2
explicit
2007-12-04* Removed 12 compiler warnings.Adam Frisby1-1/+0
2007-12-02Attempt to fix mantis issue #82, taking prims into inventory and then ↵MW1-0/+2
rezzing them in another region.
2007-12-02Added some error handling (and console output) to BaseHttpServer.MW1-2/+1
a few other bits of refactoring.
2007-12-01attempt to fix sitting-related bugs #3 and #67Jeff Ames1-14/+17
2007-11-29* Fixed neighbour range buglbsa711-2/+2
* Various refactorings
2007-11-24* Added a way for the Region master user to kick individual users from their ↵Teravus Ovares1-13/+0
sim with a custom message. Their client says, "You've been logged off of secondlife, <Your custom message here> and logs them off. * Added a way for the Region master user to kick *ALL* users from *ALL* their regions in the estate with a custom message.
2007-11-24* Hanling RequestGodlikePowers. On Request.. sends the sim owner's client ↵Teravus Ovares1-0/+19
the appropriate messages to make it think it's got god status. Will be used for finding more unimplemented packets....
2007-11-24* Added a nice 'The Region is going down.' message to the user when the sim ↵Teravus Ovares1-0/+14
owner issues 'shutdown' on the console.
2007-11-23* added some functions for use in raytracing. They're kind of crappy now, ↵Teravus Ovares1-0/+5
so they only display 'guesses' on the console when you rez a prim. * any math gurus who'd like to improve rezzing need only to make the raytracer in SceneObjectPart work :D
2007-11-22* Added code to capture the draw distance setting from the client.Teravus Ovares1-10/+72
* Added a support function to InnerScene to calculate the distance between two vectors.
2007-11-21* Did some initial work for prim crossing. Just glue so far.Teravus Ovares1-4/+21
* Added the child_get_tasks OpenSim.ini flag for testing the UDP packet sending code and packet throttler. This flag gets purposely disabled in grid mode. This flag also has the consequence that you can see the prim in neighboring regions without going into them. Be warned, this causes tons of dropped packets.
2007-11-20fix for mantis #2 from Justin Casey (IBM)Sean Dague1-3/+7
2007-11-18* Refactored IClientAPI.OutPacket to require a second mandatory parameter. ↵Teravus Ovares1-1/+1
This parameter has an enum:int ThrottleOutPacketType and contains types; Resend, Land, Wind, Cloud, Task, Texture, and Asset.
2007-11-18cleaned up some mono compiler warningsJeff Ames1-4/+1
2007-11-18Attempt to get World Map working in Grid mode, will need to be using the ↵MW1-39/+49
grid asset server for it to work correctly and has only been quickly tested in a three region grid. Moved PermissionManager creation out of the Scene constructor and instead a PermissionManager is passed to the constructor as a param. So that we could create and use custom permissionsManagers. Added AllowMovement property to ScenePresence which can be used to stop movement of avatars (for example in a custom region that wanted avatars always in one place). Added PermissionManager call when copying objects, although currently the call will always return true so that it allows copying in places like Wright Plaza. A few other changes/fixes.
2007-11-16* Resolved the situation where prim is loaded from storage and when pushed ↵Teravus Ovares1-5/+5
never stops.