aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Formatting cleanup.Jeff Ames2008-08-181-49/+49
|
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-171-3/+3
|
* Add some locking on m_undo in SceneObjectPartMelanie Thielker2008-08-171-15/+25
|
* * half of the attachmentpoint skull fixTeravus Ovares2008-08-171-0/+17
| | | | | * There's still a full object update coming when you release the attachment after modifying it that's killing it sometimes.
* Mantis#1521. Thank you kindly, Lmmz for a patch that:Charles Krinke2008-08-081-0/+5
| | | | | Improves the implementation of the particle system.
* Mantis#1901. Thank you kindly, Nlin for a patch that:Charles Krinke2008-08-071-1/+1
| | | | | | More sitting fixes: Inconsistent sitting position on rezzed prims that have no sit target set.
* Mantis#1859. Thank you kindly, Lmmz for a patch that:Charles Krinke2008-08-011-0/+30
| | | | | Implements llForceMouselook().
* * Changed a number of field names to ccc (public members shouldn't be called m_)lbsa712008-07-261-33/+33
|
* Attempt to update viewer for some physics status changes in SOPDahlia Trimble2008-07-251-3/+6
|
* * Stop the HasGroupChanged flag being reverted for newly restored prims ↵Justin Clarke Casey2008-07-251-7/+7
| | | | | | | | | which need to be persisted to the db * This should stop the problem where linked prims loaded via an archive did not survive server restart * It may address mantis 1819 though the symptoms don't look consistent
* Implements llSetForce() and llGetForce(). These are experimental and the ↵Dahlia Trimble2008-07-241-0/+16
| | | | units may not match the Linden implementation.
* catch a null case in the convenience RegionID propertySean Dague2008-07-231-1/+7
|
* Update svn properties. Formatting cleanup. Remove a compiler warning.Jeff Ames2008-07-231-1/+1
|
* Refactor the packet scheduling out of ClientView. Add intelligentMelanie Thielker2008-07-221-1/+1
| | | | | | | | | | resending, timeouts, packet discarding. Add notification event for packet discarding. Add priority scheduling for packet queues. Add outgoing duplicate detection facility. Correct packet sequencing. Make provisions for automatic server side throttle adjustments (comes in next installment)
* added experimental packet tracker (LLPacketTracker.cs), which can be told to ↵MW2008-07-211-1/+1
| | | | | | | | track a packet and if it hasn't been acked within a set time, trigger a IClientAPI event, that the application/scene can handle. Currently only terrain packet tracking is finished, Tracking for initial Prim packets (first full update for a prim) is being worked on. Future improvements would be to make it a more generic packet tracker with callback delegates instead of events. Add a test event handler (which would fire after a minute if a terrain packet hadn't been acked) to scene to handle the OnUnackedTerrain event, which currently just resends the terrain patch. The idea of this packet tracking is for the region level application to be able to know if the client stack gave up on sending a packet.
* * eliminated some warnings and added some const and readonlieslbsa712008-07-211-1/+1
| | | | | | | | | * refactored some member names for readability and ccc (code convention conformance) * took away two refs from Rest.Inventory since * System.IO is part of System * System.Xml.Serialization is part of System.Xml
* Fix prim link numbers (Mantis #1781)Melanie Thielker2008-07-191-8/+4
| | | | | | | | | | | Implements additional unlink modes (unlink root prim from link set, some multi-set operations). Linking (single and mutiple) fully implemented. Consistent numbering of links while in world. Link/delink with predictable link numbering. Correct link numbers in LSL. Not all multi-set ops implemented. Link numbers still change when taken and re-rezzed.
* make ParentUUID be a cached value, but allow setting it forSean Dague2008-07-161-2/+11
| | | | | | short term storage (needed to rebuild SOGs)
* made SOP have a blank setter for 2 convenience properties.Sean Dague2008-07-161-0/+2
| | | | | | | Got RegionStore mapping to the point that nhibernate would start, though definitely not complete
* be a little more discriminating on firing ShapeChanged script eventsSean Dague2008-07-161-2/+12
| | | | | | so that we don't get them on every object construction.
* added new ParentUUID property to map out from SOP.Sean Dague2008-07-151-0/+5
| | | | | | Updated some nhibernate parts, started in on migration.
* added RegionID get propertySean Dague2008-07-141-0/+6
|
* minor: method documentationJustin Clarke Casey2008-07-121-115/+65
|
* * minor: just some null guards and name changes to make it clearer that prim ↵Justin Clarke Casey2008-07-121-1/+0
| | | | count is actually a prim local id dispenser
* change SitTarget calls from functions to propertiesSean Dague2008-07-071-39/+17
|
* Copyright notices and formatting cleanup.Jeff Ames2008-07-061-4/+0
|
* add a couple of LL conversion properties to SOP. I'll wait to cleanSean Dague2008-07-031-0/+28
| | | | | | | | | | up the sit target usage until the sit target fix patch goes in, but it should be cleaned. Get prims table mappings to the point where nhibernate likes them enough to start. Remove field from asset mapping so it will start
* property encapsulation for SOPSean Dague2008-07-021-98/+242
|
* merge rotational and angular velocitySean Dague2008-07-011-22/+13
|
* * Syncs the current revision XML Schema(xsd) to the XML Schema of revision 5251.Teravus Ovares2008-06-291-211/+252
| | | | | * This should resolve creating content, taking it, and being able to rez it again.
* tart the property wrapping in SOP. This will be a long processSean Dague2008-06-271-9/+20
| | | | | | will do more next week.
* last round of warning squashing. calling it a day now.Dr Scofield2008-06-271-1/+1
|
* move along, nothing to see here. just a couple of lazy variables.Dr Scofield2008-06-271-10/+10
|
* run NArrange on SOP to stack together the attributes,Sean Dague2008-06-271-1919/+1866
| | | | | | properties, private methods, public methods, etc.
* * Remove responsibilty for signalling scene object change from ↵Justin Clarke Casey2008-06-271-4/+21
| | | | | | | | | | | | SceneObjectPart.SendFullUpdate() * This means that we will no longer pointlessly repersist all the prims in the scene when OpenSim first starts up * This also means that force-update on the console will not trigger repersistence. * Also, in other places persistence is no longer done where it wasn't actually necessary * I think I changed the code for all instances correctly, but it's not possible that I missed some and some things which did persist properly have stopped * Please patch or mantis if this is the case
* * refactor: Remove group changed responsibilty from ScheduleGroupForTerseUpdateJustin Clarke Casey2008-06-271-0/+1
|
* * Add extra backup parameter to InnerScene.AddRestoredSceneObject()Justin Clarke Casey2008-06-271-0/+2
|
* Mantis#1612. Thank you, kindly, Matth for a patch that:Charles Krinke2008-06-271-0/+7
| | | | | | Adds the beginnints of llRemoteLoadScriptPin() and llSetRemoteScriptAccessPin().
* Mantis#1610. Thank you, Melanie for a patch that:Charles Krinke2008-06-261-0/+6
| | | | | | Implements the beginning of llInventoryDrop. Doesn't cover the actual dropping yet, just the permissions for it.
* * refactor: Remove largely duplicate code from ↵Justin Clarke Casey2008-06-171-4/+8
| | | | SceneXmlLoader.CreatePrimFromXml2()
* Update svn properties. Formatting cleanup.Jeff Ames2008-06-101-33/+11
|
* * This completes ObjectDuplicateOnRay.Teravus Ovares2008-06-101-22/+40
| | | | | * In English, that means that Copy Selection works now, including Copy Centers and Copy Rotates.
* * Fixed it so you can do a lot more llDetected* methods in many additional ↵Teravus Ovares2008-06-081-106/+193
| | | | | | | situations and have it work. * script Collision reporting works now in DotNetEngine
* Fixes scale property with regards to the physics engine.Teravus Ovares2008-06-061-0/+12
|
* * This sends collision events to the script engine. Teravus Ovares2008-06-051-12/+174
| | | | | * Unfortunately, there's some kludges with the Async manager and the llDetected functions that I have yet to decipher... so llDetected functions don't work with collision events at the moment....
* Formatting cleanup, minor refactoring, svn properties.Jeff Ames2008-06-041-1/+1
|
* * Fix string literal with URL + LLcommand();Teravus Ovares2008-05-291-1/+9
| | | | | | * Added 'detected around: value' when a x.Y detect occurs to help debug. * Fixed object text is too long to store to the database (wikilith)
* Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke2008-05-281-1/+15
| | | | | | | | | llLoopSound sends out one packet to clients in view, so it doesn't work anymore when clients enter later on, or the prim is modified in any way. Solution: Stored sound data on prim, send full update instead. llStartSound and llLoopSound now accept both LLUUIDs to a sound as well as object inventory sound names. llStopSound clears prim data and sends full update.
* Formatting cleanup.Jeff Ames2008-05-281-25/+25
|
* Thank you very much, ChrisIndigo for a patch that:Charles Krinke2008-05-281-9/+25
| | | | | | | | If a script updates an object to the same position or rotation offset, the object triggers an update and storage of the object. This become more prevalent in sensor and timer events which may be firing frequently.