aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Commit some BinBVH rotation convenience. Calculates the W element of the ↵Teravus Ovares2009-07-101-0/+8
| | | | joint rotation quaternion and provides a property so consumer doesn't have to.
* Prevent teleports from ending undergroundMelanie Thielker2009-07-082-0/+52
|
* Thank you kindly, AnakinLohner, for a patch that addresses:Charles Krinke2009-07-021-0/+18
| | | | | | | | The patch included updates the root and child prims' AttchedAvatar with the right UUID. It also cleans the AttachedAvatar properties for the root and child prims on Drop and Detach
* make methods surounding backup virtual so they could be override for server ↵Sean Dague2009-07-021-3/+3
| | | | side created objects
* Update svn properties, add copyright header, formatting cleanup.Jeff Ames2009-06-291-1/+28
|
* From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague2009-06-291-0/+4
| | | | | | | | Attached is a patch that changes the oar file saving of creation date/time to an integer instead of a string. I did this after justincc emailed me saying there is a problem with internationalisation doing it the old way and I said I'd fix it. Its been tested with MySQL and I've made the changes for MSSQL but that hasn't been well tested.
* Removed the List<NewForce> m_forceList from ScenePresence, as there wasn't ↵MW2009-06-281-20/+18
| | | | any need for a list, as only the last entry in it was acted on. So it now has a single NewForce m_nextVelocity , which is updated (rather than a NewForce object being created every AgentUpdate). So as well as cutting out all the adds and clearing of the list, it also removes the creation of upto 100+ new objects per second per avatar.
* Update svn properties.Jeff Ames2009-06-272-244/+244
|
* Fixed null bug, which was making unit tests failMW2009-06-261-3/+7
|
* Extracted the code that handles the sending of prim updates to the client, ↵MW2009-06-264-159/+269
| | | | | | | from ScenePresence into ISceneViewer/SceneViewer. Currently ScenePresence "has" a ISceneViewer, although if we had a proper Node based scenegraph then it would most likely be attached directly to the nodes. By extracting this code, it should make it easier to experiment with different ways of managing the update process. [Next step to make this module based, could be to create a SceneViewerFactoryModule]
* Added a note to the ScenePresence.UpdateMovement() method, to remind ↵MW2009-06-251-1/+1
| | | | everyone that the so called "forces" are actually velocities.
* Applied patch from mantis #3820 which changed the clearing of the ↵MW2009-06-251-20/+16
| | | | | | | ScenePresence.m_forcesList, so it used the List.Clear method rather than doing a loop through the list and manually removing each item. Thanks dslake. I also fixed the issue where the code also loops through the m_forcesList and copies each force to the ScenePresence's movementVector. Which resulted in only the last force in the list actually be acted on. As each copy overrode the last one. So now it only copies the last force in the list.
* Reading GroupPosition, but setting OffsetPosition in undo doesnt' seem right.Melanie Thielker2009-06-241-2/+2
| | | | | | | This may fix the Mantii where individual prims ctrl-z to nirvana, but it's not tested.
* Formatting cleanup, ignore some generated files.Jeff Ames2009-06-221-2/+2
|
* Update svn properties.Jeff Ames2009-06-222-218/+218
|
* * Panda no like LongRunningAttribute, no? Me now reverting minuscule fix, ↵lbsa712009-06-221-1/+1
| | | | yes? Panda happy, eh?
* * Minuscule CC fixlbsa712009-06-221-0/+2
|
* * Added SceneTests and SceneBaseTestslbsa712009-06-224-2/+220
| | | | | | * Changed some fields to protectesd to enable faking
* Correct the behaviro of group deeding and llGetOwner() within deeded objectsMelanie Thielker2009-06-211-1/+7
|
* Publish a method on ICompiler to generate the CIL assembly pathMelanie Thielker2009-06-211-0/+1
| | | | | | Cause group deeding to apply next owner perms
* When a shared module hooks OnClientClosed, it has no way of findingMelanie Thielker2009-06-192-4/+4
| | | | | | | | | out which client connection has closed. So, in multi-region sims, things can get messy fast. This introduces a second parameters, which is a Scene object ref. Minor adjustments to custom modules may be required due to this change.
* From: Chris Yeoh <yeohc@au1.ibm.com>Sean Dague2009-06-192-6/+10
| | | | | | This patch ensures that the touch positions are set during touch_end events (currently only working for touch_start and touch events).
* * Corrected CAPS namespacesArthur Valadares2009-06-184-4/+4
| | | | | * "luke, use the sed"
* Fixes Mantis #3793 . Committing thomax/Snoopy's patch to allow deeding of ↵Melanie Thielker2009-06-142-5/+54
| | | | | | | | | | objects, with changes: - Set OwnerID = GroupID for deeded objects. - Close a security loophole that would have allowed a user with deed rights in a group to deed ANY object to that group, even if it's not owned by them and/or not set to that group - Set LastOwnerID correctly. Handle objects vs. prims correctly.
* Renamed Region/CoreModules/ServiceConnectors to ↵diva2009-06-142-2/+2
| | | | Region/CoreModules/ServiceConnectorsOut. No functional changes.
* Pulled out HelloNeighbour into its own service, INeighbourService, which may ↵diva2009-06-143-11/+12
| | | | get more functions as we go along. It's a very simple service and service connectors, and it served primarily to establish the design of services that dependent on Scenes and that must always have a local connector. More refactoring coming, as this showed how to do it right.
* Heart surgery no.2: the inventory service hooks. diva2009-06-101-0/+20
| | | | | | | Several improvements in the connectors themselves. Several improvements in configurations. Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored.
* Formatting cleanup.Jeff Ames2009-06-105-10/+10
|
* Formatting cleanup. Ignore some generated files.Jeff Ames2009-06-092-21/+21
|
* Thank you Snoopy, for a patch that implements group permissions.Melanie Thielker2009-06-091-9/+18
| | | | | | | | Applied with changes: - removed spammy debug message - corrected tab formatting
* From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield2009-06-091-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change addresses two issues: [1] It adds a flag field to the blendface call which allows the caller to indicate whether or not the generated asset is temporary, and whether or not the asset being replaced should be explicitly retired fromt the memory cache. The decimal values correspond to: 0 - Permanent asset, do not expire old asset 1 - Permanent asset, expire old asset 2 - Temporary asset, do not expire old asset 3 - Temporary asset, expire old asset '3' corresponds to the default behavior seen today, and is the continued behavior of the non-blendface calls. [2] The dynamic texture routines are highly-asynchronous and can be scheduled simultaneously on a multi-core machine. The nature of the texture management interfaece is such that updates may be lost, and the nature of asynchornous operation means that they may be processed out of order. A lock has been added to ensure that updates are at least atomic. No attempt has been made to enforce ordering. The lock applies to the SceneObjectPart being updated and is held for the lifetime of the TextureEntry used to carry texture updates (the one instance carries all faces supported by the prim). Users of these services should remember that the dynamic texture call is asynchronous and control will be returned *before* the texture update has actually occurred. As a result, a isubsequent GetTexture call may not return the expected asset id. A script must wait for the corresponding TEXTURE_CHANGED event before retrieving any texture information.
* * Reverting the test restructuring as, on second thought, this is not at all ↵lbsa712009-06-075-0/+0
| | | | | | | how the tests are structured. (pt1)
* * minor: tiny tweak just to trigger another panda buildJustin Clarke Casey2009-06-051-1/+1
|
* * A bug fix for the last mantis 3741 bugfixJustin Clarke Casey2009-06-051-10/+7
| | | | | | * Hopefully now, the nre should not occur and the lock should be correctly unlocked during the initial save oar process
* * A further fix for mantis 3641 (oar saves do not complete)Justin Clarke Casey2009-06-051-12/+15
| | | | | | | | * For some reason, if a null was recieved (indicating a missing asset), the code had stopped passing that on to the waiting lock, resulting in a perpetual freeze * This change passes the null on correctly * Many thanks to thomax for being insistent in presenting his analysis of the problem :)
* * refactor: split out part xml writing in SceneObjectSerializerJustin Clarke Casey2009-06-051-2/+7
|
* Thank you, thomax, for a patch to provide finer-grained access control toMelanie Thielker2009-06-051-0/+20
| | | | | | | scripting. Fixes Mantis #2862
* * Restructured Scenes Tests to follow (what I conceive of as being) current ↵lbsa712009-06-055-0/+0
| | | | directory standards. (pt 1 - thank you, svn. not.)
* Comment out unused private functions to avoid compiler warnings.Jeff Ames2009-06-041-7/+8
|
* * Making sure we fail a bit earlier if we have no AssetServicelbsa712009-06-031-0/+7
|
* Explicitly set the changed status of the prim groups affected in a delinkMelanie Thielker2009-06-021-0/+1
| | | | | | Mantis #2484
* * Add simple original sog xml serialization testJustin Clarke Casey2009-06-011-4/+4
|
* * minor: change the name of one serialization method to match its counterpartJustin Clarke Casey2009-06-011-1/+1
|
* Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2009-06-0198-98/+98
| | | | LICENSE.txt.
* Add copyright headers, formatting cleanup, ignore some generated files.Jeff Ames2009-05-313-3/+57
|
* * Bug fix: Fixes an exception when Scene.RemoveClient is called to remove on aArthur Valadares2009-05-291-117/+117
| | | | | non-existing ScenePresence avatar. Also removed trailing white spaces.
* * refactor: little tweaks to trigger another buildJustin Clarke Casey2009-05-291-4/+15
|
* * refactor: Remove redundent prim id attribute on Scene.AddSceneObject()Justin Clarke Casey2009-05-291-8/+3
|
* * Add save xml2 serialization testJustin Clarke Casey2009-05-292-2/+3
|
* some clean up of sculpt map caching codeDahlia Trimble2009-05-291-1/+2
| | | | | remove a redundant debug message