aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Use a standard generic system stack for the undo/redo stacks instead of our ↵Justin Clark-Casey (justincc)2011-07-183-3/+55
| | | | | | | own homebrew. system stack also uses an array, so no performance penalty. Also exposes undo count and adds a test assertion for correct undo count after resize
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2011-07-186-11/+32
|\
| * refactor: Pull up Assembly of the SQLite classes as a protected property, so ↵Marck2011-07-166-11/+32
| | | | | | | | that it can be overwritten in subclasses. That way extensions can decide in which assembly migration resources should be looked up. This is a refactor similar to commit 9923a2ff1002d722ccebea8bf4d71718ed4e2a03 for MySQL -- no functional changes.
* | refactor: group all the undo/redo code in SOP into one place for easier code ↵Justin Clark-Casey (justincc)2011-07-181-59/+62
|/ | | | reading
* Replace ifs in SOG.GroupResize() with Math.Min()Justin Clark-Casey (justincc)2011-07-163-14/+25
| | | | | Also fiddle a bit with undo. This is not currently working properly, though to be fair it also didn't appear to work in 0.7.1.1 either (at least for resize). Will get some more attention soon.
* remove now unncessary parts of SceneObjectGroup.Resize()Justin Clark-Casey (justincc)2011-07-161-21/+5
|
* refactor: replace scale limiting code with more elegant Math.Min callsJustin Clark-Casey (justincc)2011-07-161-12/+6
|
* refactor: Push all part resize code down into SceneObjectPart.Resize()Justin Clark-Casey (justincc)2011-07-164-56/+32
|
* add test for resizing one part in a groupJustin Clark-Casey (justincc)2011-07-163-2/+36
|
* refactor: make SceneObjectGroup.GroupScale() a property rather than a mehodJustin Clark-Casey (justincc)2011-07-162-33/+38
|
* minor: add a log warning if a sculpt/mesh async asset request returns no dataJustin Clark-Casey (justincc)2011-07-161-0/+4
|
* refactor: remove pointless sender != null tests, etc, in AssetReceived, ↵Justin Clark-Casey (justincc)2011-07-161-6/+9
| | | | since the method called always belongs to the object that generated the request
* eliminate unused and redundant SceneObjectGroup.AssetReceived()Justin Clark-Casey (justincc)2011-07-161-17/+0
|
* fix build break from last commitJustin Clark-Casey (justincc)2011-07-161-1/+1
|
* Eliminate the pointless textured id argument to SculptTextureCallbackJustin Clark-Casey (justincc)2011-07-161-15/+6
|
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2011-07-163-4/+7
|
* remove the need to supply SceneObjectGroup.GroupResize() with a localId.Justin Clark-Casey (justincc)2011-07-163-132/+133
| | | | This is utterly pointless scene we already know which sog we're dealing with.
* Add very basic test for resizing a scene object with one primJustin Clark-Casey (justincc)2011-07-162-1/+69
|
* minor: remove mono compiler warningsJustin Clark-Casey (justincc)2011-07-161-35/+36
|
* If resized shape is a mesh/sculpt, leave it to the mesh asset callback to ↵Justin Clark-Casey (justincc)2011-07-161-2/+8
| | | | | | trigger the physics actor taint. In the last commit, the fix was made by updating all the child prim physics actors with the new size rather than just the root part.
* Fix physics proxy regeneration when a mesh with more than one submesh is resizedJustin Clark-Casey (justincc)2011-07-164-2/+25
| | | | Addresses http://opensimulator.org/mantis/view.php?id=5584
* use constants in llGetObjectDetails() rather than magic numbersJustin Clark-Casey (justincc)2011-07-161-22/+21
|
* change async parameter name in AddLocalPacketHandler since it becomes a ↵Justin Clark-Casey (justincc)2011-07-151-2/+22
| | | | | | reserved keyword in .net 5 Also adds some method doc.
* If object is an attachment, make llGetVel() return the avatar's speed rather ↵Justin Clark-Casey (justincc)2011-07-152-2/+16
| | | | | | than the object's own zero speed. As per http://opensimulator.org/mantis/view.php?id=5575
* minor: method doc for baked texture uploadingJustin Clark-Casey (justincc)2011-07-152-3/+17
|
* Fix some local id issues in physics glueroot2011-07-1510-68/+36
|
* fix duplication of physical objects for physics engines that care about the ↵Robert Adams2011-07-151-6/+6
| | | | initial value of localID
* minor: remove whitespaceJustin Clark-Casey (justincc)2011-07-131-1/+0
|
* Remove an unused 404 checker since on a 404, GetResponse() throws a ↵Justin Clark-Casey (justincc)2011-07-131-3/+0
| | | | WebException rather than proceeding.
* if a SynchronousRestObjectRequester request fails, then unless it's due to a ↵Justin Clark-Casey (justincc)2011-07-131-0/+11
| | | | | | | 404, log the exception for diagnostic purposes This is instead of logging "Invalid XML" for all failures, even if they weren't a result of invalid xml. A default TReponse is returned in the event of a 404, which is the same behaviour as previously.
* Remove the obsoleted SynchronousRestObjectPosterJustin Clark-Casey (justincc)2011-07-131-9/+0
|
* refactor: Move all callers of the obsoleted ↵Justin Clark-Casey (justincc)2011-07-133-10/+9
| | | | SychronousRestObjectPoster.BeginPostObject() to the identical SynchronousRestObjectRequester.MakeRequest()
* Add experimental module to check status of services that the simulator is ↵Justin Clark-Casey (justincc)2011-07-131-0/+119
| | | | | | connected to. Currently disabled.
* Add a warning to URI config in GridCommon.ini.example not to add a slash to ↵Justin Clark-Casey (justincc)2011-07-122-19/+18
| | | | | | the end. Tidy up GridCommon.ini.example
* Port implementation of llCastRay() from Aurora.Justin Clark-Casey (justincc)2011-07-126-33/+298
| | | | I haven't been able to test this since the viewer won't parse the llCastRay() function. Maybe some activation cap is missing. Could wait until it is activated by default in the viewer.
* temporarily fix the build break with building the OdePlugin tests assembly.Justin Clark-Casey (justincc)2011-07-122-3/+4
| | | | This needs to be fixed properly.
* minor: remove whitespace to trigger another buildJustin Clark-Casey (justincc)2011-07-121-1/+0
|
* Make OdePlugin tests build from their own directory rather than from the ↵Justin Clark-Casey (justincc)2011-07-121-9/+10
| | | | | | | | | main OdePlugin directory I suspect the former arrangement was confusing nant since file changes didn't appear to be rebuilding properly Ode tests don't currently execute because Ode.NET can't pick up the native libode dll However, this appears to also have been the case before, and these tests weren't being included in the "nant test" suite anyway. Will need to fix some time.
* When a mesh object is added to a scene, delay adding the physics actor until ↵Justin Clark-Casey (justincc)2011-07-125-29/+39
| | | | | | the sculpt data has been added to the shape (possibly via an async asset service request) This prevents spurious 'no asset data' for meshes added on startup.
* Fix permissions problem where newly uploaded meshes rezzed from inventory ↵Justin Clark-Casey (justincc)2011-07-113-8/+4
| | | | could not be copied by owner.
* minor Tack the prim name on the end of the "experimental mesh proxy ↵Justin Clark-Casey (justincc)2011-07-111-1/+1
| | | | | | generation" message. Can probably comment out this message soon, once a few other issues are tidied up.
* Properly regenerate physics proxy when a mesh is resized.Justin Clark-Casey (justincc)2011-07-111-0/+8
| | | | This is done in SOP.Resize(). More common code from callers needs to be refactored into this method to reduce confusing copy/pasting
* refactor: push the part of SceneObjectGroup.CheckSculptAndLoad() that ↵Justin Clark-Casey (justincc)2011-07-112-17/+49
| | | | actually deals with the part into a SceneObjectPart.CheckSculptAndLoad() method
* When a sculpt/mesh texture is received by a part on a callback request, ↵Justin Clark-Casey (justincc)2011-07-115-11/+26
| | | | | | | don't do the unnecessary work of copying the base shape. Just setting the new base shape is enough to reinsert the sculpt data and set the taint. Also cleans up a few more left-in debugging messages.
* comment out accidential ProcessTaints physics debug line left in codeJustin Clark-Casey (justincc)2011-07-111-1/+1
|
* refactor: Make arguments to SceneGraph.UpdatePrimFlags() more readableJustin Clark-Casey (justincc)2011-07-111-6/+11
|
* refactor: Make arguments for SceneObjectGroup.UpdatePrimFlags() more readableJustin Clark-Casey (justincc)2011-07-111-6/+8
|
* minor: remove mono compiler warningJustin Clark-Casey (justincc)2011-07-111-1/+1
|
* refactor: very minor space insertionJustin Clark-Casey (justincc)2011-07-111-1/+1
|
* refactor: make argument to SOP.UpdatePrimFlags() more readableJustin Clark-Casey (justincc)2011-07-111-14/+19
|