aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-06-27move along, nothing to see here. just a couple of lazy variables.Dr Scofield1-10/+10
2008-06-27run NArrange on SOP to stack together the attributes,Sean Dague1-1919/+1866
properties, private methods, public methods, etc.
2008-06-27* Remove responsibilty for signalling scene object change from ↵Justin Clarke Casey1-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
2008-06-27* refactor: Remove group changed responsibilty from ScheduleGroupForTerseUpdateJustin Clarke Casey1-0/+1
2008-06-27* Add extra backup parameter to InnerScene.AddRestoredSceneObject()Justin Clarke Casey1-0/+2
2008-06-27Mantis#1612. Thank you, kindly, Matth for a patch that:Charles Krinke1-0/+7
Adds the beginnints of llRemoteLoadScriptPin() and llSetRemoteScriptAccessPin().
2008-06-26Mantis#1610. Thank you, Melanie for a patch that:Charles Krinke1-0/+6
Implements the beginning of llInventoryDrop. Doesn't cover the actual dropping yet, just the permissions for it.
2008-06-17* refactor: Remove largely duplicate code from ↵Justin Clarke Casey1-4/+8
SceneXmlLoader.CreatePrimFromXml2()
2008-06-10Update svn properties. Formatting cleanup.Jeff Ames1-33/+11
2008-06-10* This completes ObjectDuplicateOnRay.Teravus Ovares1-22/+40
* In English, that means that Copy Selection works now, including Copy Centers and Copy Rotates.
2008-06-08* Fixed it so you can do a lot more llDetected* methods in many additional ↵Teravus Ovares1-106/+193
situations and have it work. * script Collision reporting works now in DotNetEngine
2008-06-06Fixes scale property with regards to the physics engine.Teravus Ovares1-0/+12
2008-06-05* This sends collision events to the script engine. Teravus Ovares1-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....
2008-06-04Formatting cleanup, minor refactoring, svn properties.Jeff Ames1-1/+1
2008-05-29* Fix string literal with URL + LLcommand();Teravus Ovares1-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)
2008-05-28Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke1-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.
2008-05-28Formatting cleanup.Jeff Ames1-25/+25
2008-05-28Thank you very much, ChrisIndigo for a patch that:Charles Krinke1-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.
2008-05-26* Extract and boil down necessary texture UUIDs for an archive of the scene ↵Justin Clarke Casey1-4/+3
prims * no user functionality yet
2008-05-25* A hacky Top Scripts display. It isn't accurate as far as ms accounting, ↵Teravus Ovares1-0/+32
however you can use it to help find out what scripts are causing your simulator to cry. * Access it from the Estate tools/Debug tab.
2008-05-25* phantom sculpties don't request the sculpt texture anymore.Teravus Ovares1-0/+30
2008-05-21* This update causes the backup process to run in a separate thread.Teravus Ovares1-8/+14
* Concurrency issues are resolved because each object makes a memory-only copy of itself and backs up the copy. * Because of the way this is done, the latest at the time of the backup gets backed up (no functionality change) * You can move *thousands of objects at a time* and the sim doesn't freeze and wait for the backup to complete. * This can be enhanced more by dedicating the thread as opposed to starting it when the backup process starts.
2008-05-21* Fixed needing to alter your sculptie sometimes to get physics to generate ↵Teravus Ovares1-1/+4
a collision mesh for it. * Sculpties load on startup reliably now and successfully generate a collision mesh as soon as the sculpt texture is available.
2008-05-18* Fixed a logic error in previous commit. Darn these long ↵Teravus Ovares1-2/+2
client(param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param); methods!
2008-05-18* Group type stuff. Nothing spectacular. two packets, sorta almost semi ↵Teravus Ovares1-1/+7
half tiny amount implemented.
2008-05-16* Committing patch from mantis 0001297: [PATCH] Fix behavior of child prim ↵Teravus Ovares1-3/+13
inventories. Also enables 'New Script' button. from Melanie. Thanks Melanie!
2008-05-16Minor cleanup.Jeff Ames1-1/+1
2008-05-16Formatting cleanup.Jeff Ames1-101/+101
2008-05-15Committing patch from Melanie. 0001290: [PATCH] implement permissions ↵Teravus Ovares1-14/+4
propagation and script module hooks. Thanks Melanie! * Implements quite a few inventory related perms. * (from Teravus) Fixes Take Copy
2008-05-14* Refactor: Remove SceneObjectGroup.GetScenePresences() in favour of a ↵Justin Clarke Casey1-6/+6
direct call to Scene
2008-05-14Formatting cleanup.Jeff Ames1-2/+2
2008-05-09* Valid Sculpted prim now collide properly.Teravus Ovares1-0/+8
* The first time you set the sculpted texture of a prim you might have to futz with it to get it to generate a sculpted physics proxy * Note that there are already issues in Trunk, (such as the prim scaling issue and prim jumping issue. Essentially editing is difficult right now) * This just adds to the experimental nature of trunk. :D
2008-05-09* Wrote a method to get the OpenJpeg data of a sculpt texture asset and save ↵Teravus Ovares1-1/+20
it to the prim shape. * Added some stuff around sculpted prim meshes.. but it's just there so the project compiles now.
2008-05-08* Fixes Prim ExtraParams Teravus Ovares1-12/+1
* Fixes Sculpty handling * Fixes Light handling * Fixes Flexi handling * Fixes Sculpty + Flexi handling * Fixes handling of Flexi type * Fixes Changing prim type after changing to sculpty corrupting prim. * Ugly code.
2008-05-07get all the right bits to SendPrimitiveToClient so we can actuallySean Dague1-5/+5
set vel, acc, and rvel in the packet (though this isn't done yet).
2008-05-06De-tabify source.Jeff Ames1-42/+39
2008-05-06send actual velocity and angular velocity in terse updatesSean Dague1-3/+4
instead of hardcoding to zero when the primitive is non physical. llTargetOmega should work now.
2008-05-04* Implemented DIE_AT_EDGE and Temporary objects don't save to the database.Teravus Ovares1-0/+20
2008-05-03* Committing some collision stuffs that I'm working on.Teravus Ovares1-5/+50
* Nothing user facing yet.
2008-05-02* DuplicateOnRay with copy center works in two directions... Still ↵Teravus Ovares1-1/+1
fighting with it. * DuplicateOnRay without copy center works in all directions.
2008-05-01* Rolled back a few changes.Adam Frisby1-967/+997
2008-05-01* Spring cleaning on Region.Environment. Adam Frisby1-997/+967
* Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
2008-05-01* committing what I've got so far for DuplicateOnRay so I don't fight the ↵Teravus Ovares1-6/+17
conflict monster later. Not done yet, doesn't crash the server.
2008-05-01* Assorted spring cleanings.Adam Frisby1-1/+0
2008-05-01* You can now rez objects out of inventory at the correct offset from prim ↵Teravus Ovares1-2/+11
you rez it on. Including multi prim groups and prim that have different X/Y/Z scales.
2008-04-30* Patch by Melanie. Implements proper objectflags on child objects. Thanks ↵Teravus Ovares1-8/+97
Melanie! RE: 0001079: r4387. touch() event does not fire when touch script is in root prim and child prims are touched
2008-04-28* Added basic 3-5 level undo on prim position/rotation/scale.Teravus Ovares1-5/+64
* In the future this should be a config option... and, hopefully this tides the builders over for a little while.
2008-04-27* More attachment stuff, reworked some of the inventory routines to be what ↵Teravus Ovares1-4/+5
I need them to be for attachments.
2008-04-26* First draft implementation of copying prim inventory items back to agent ↵Justin Clarke Casey1-4/+7
inventory * Now, if you own an item in a prim, you should be able to successfully drag it back into your inventory * Temporarily, users which are not owners of the item cannot copy it, even if 'everyone can copy' is set * This is pending fixes/implementation of upstream permission implementation
2008-04-26* Ooops, attachments now teleport/cross region borders along with your ↵Teravus Ovares1-0/+7
avatar. Those dastardly objects stick to you.