aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update svn properties.Jeff Ames2008-02-153-387/+387
|
* make dynamic textures temporary to try to stop filling up theSean Dague2008-02-141-1/+1
| | | | | | asset db.
* More work on trying to get AvatarFactoryModule to play nicely with multiple ↵MW2008-02-141-63/+80
| | | | threads
* * Fixed accessibility problem on ITerrainChannelAdam Frisby2008-02-141-1/+1
|
* Added "better" multi thread handling to AvatarFactoryModule, which uses ↵MW2008-02-141-23/+120
| | | | EventWaitHandles, I'm a bit concerned about what effect this might have on performance in a large grid. But I've spent long enough on this problem for one day and as its valentines day, I will be killed and tortured (most likely not in that order) if I don't stop work for the day soon.
* * Removed some catch-all-ignores from UDPServer in an attempt to look for #305.Adam Frisby2008-02-143-5/+8
| | | | | * Minor work towards abstracting terrain.
* * Tree Populator Module, use "script tree" to make a growing tree in your sim.Adam Frisby2008-02-141-0/+246
|
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-1416-78/+232
| | | | | | * Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
* * Exposed AddHandlers in response to mantis #534. Thanks, kmeisthax!lbsa712008-02-141-4/+33
|
* Revert the index -> Add changes made in AvatarFactoryModule previously. It ↵Justin Clarke Casey2008-02-141-2/+2
| | | | | | | | | appears that in conjunction with MW's locking changes, that two threads may race to create the avatar appearance in the TryGetAvatarAppearance() method. Moving off Add will mean the second replaces the first instead of throwing the exception. This may still not be a good permanent solution - more extensively locking or a code rearrangement could be better. I'm going to leave this in MW's much more familiar hands now.
* * Removed the noise from the console. The last commit seems to have ↵Teravus Ovares2008-02-142-6/+3
| | | | resolved the recent reports of 'argument not a space' on linux. Though, there were about 50 changes :D
* * Another ODE Stability update. This might fix the recent Linux issues ↵Teravus Ovares2008-02-142-90/+210
| | | | with the ODEPlugin.
* * ODE - This fixes a few things and breaks a few more.Teravus Ovares2008-02-143-26/+19
|
* Added a small but maybe important clue that UserServer is not running.Tedd Hansen2008-02-141-1/+1
|
* Cleaned up some typos.Jeff Ames2008-02-143-4/+4
|
* * Bigisn ODE Stability update 2Teravus Ovares2008-02-144-24/+73
|
* * Bigish ODE stability Update. Run PrebuildTeravus Ovares2008-02-1310-175/+380
|
* * This fixes mantis 553 (It appears that the exception is thrown when there ↵Teravus Ovares2008-02-132-3/+10
| | | | is a collision with a cylinder that is both hollowed and either tapered or cut. The sequence of actions that reproduce the problem for me are: create a cylinder, hollow to 95%, taper X/Y, then collide it with another object or avatar. Note that the cylinder itself is not marked physical. )
* * Patch from Dr Schofld's (IBM). In his own wordsJustin Clarke Casey2008-02-132-4/+6
| | | | | | | | | | | | | all TerrainEngine.LoadFromFileX(string filename) methods don't set the dirty bits in heightmap.diff[,] in contrast to the TerrainEngine.LoadFromFileX(string filename, int dimensionX, int dimensionY, int lowerboundX, int lowerboundY) cousins. this has the unpleasant drawback that the Scene.SendTerrainUpdate(bool) will not send layer data to the client. the attached patch fixes all LoadFromFileX(.) methods. Thanks! * Also small build fix for AvatarFactoryModule
* Added some locks on the cache Dictionary in AvatarFactoryModule.MW2008-02-131-10/+25
|
* * Fix for mantis 522. However, I would be a little surprised if this code ↵Justin Clarke Casey2008-02-131-3/+3
| | | | did much anyway, so perhaps it's not currently in use.
* * Make code fix to address prim rotation unlink issues (mantis 383, 454. 369)Justin Clarke Casey2008-02-131-5/+16
| | | | | | * Many thanks to alex_carnell for the necessary information for this
* Added a method to access a named folder in a users inventory, to the ↵MW2008-02-132-0/+22
| | | | inventory Database interfaces. This could be useful for adding a item to a users inventory from say a web front end application or some other third party application. [note the method is only currently implemented in the sqlite provider]
* * Removed a debug line that got called every frame.Teravus Ovares2008-02-133-3/+3
|
* * Made physical prim stable enough for the general population to turn on. ↵Teravus Ovares2008-02-1310-18/+176
| | | | | | | | | | (though I still don't recommend it for welcome regions unless object build is off. * Updated the ode.dll for windows with a more reasonable stack space reserve. Linux users will need to type ulimit -s 262144 before starting up OpenSimulator if using Physical Prim to protect against stack collisions. or run the included ./bin/opensim-ode.sh to start up OpenSimulator in ODE mode. * Added internal collision score and am keeping track of 'high usage' prim. * Tweaked collisions some more * Tested up to 460 physical prim in extremely close quarters (which was previously impossible in OpenSim). After 460 in tight quarters, physics slows down enough to make it hard to do any moving, however.. non physics things still work, such as logging on to the simulator, etc.
* Clean up more unnecessary String.Format callsJeff Ames2008-02-133-15/+10
|
* * Clean up LIBRARY INVENTORY messagesJustin Clarke Casey2008-02-131-4/+4
|
* * Clean up the agent's asset transactions when it is removed from the sceneJustin Clarke Casey2008-02-131-0/+2
| | | | | | * This may or may not help with the memory leak, need to assess
* * Refactor: Move last commit's refactor back to AgentAssetTransactionsManagerJustin Clarke Casey2008-02-132-44/+6
| | | | | | | | * Push asset update (invoked when clothing is altered) down into AgentAssetTransactions from Scene.Inventory.cs to join others * I've tested that clothing creation and update still works, but please let me know if it suddently breaks for you. * Add/correct comments
* Refactor: factor a method out of AgentAssetTransactionsManagerJustin Clarke Casey2008-02-121-8/+27
|
* * Refactoring: Rename AssetTransactions.cs and AssetTransactionsManager and ↵Justin Clarke Casey2008-02-121-1/+1
| | | | | | | | | align classes with file names * Small amount of ndoc * This will probably require a prebuild and nant clean
* * This fixes the object edit box's flipping checkboxes when you modify one ↵Teravus Ovares2008-02-122-1/+21
| | | | of the permission masks or Locked status using the available checkboxes.
* * various minuscule code convention conformance fixeslbsa712008-02-123-2/+5
|
* * Physical prim cross borders and continue from where the left off on the ↵Teravus Ovares2008-02-125-19/+78
| | | | other side now, assuming the region on the other side has physical prim enabled.
* * A bunch of updates to make things more smooth.Teravus Ovares2008-02-1210-34/+133
| | | | | | | | | | | ** Sending the actual TimeDilation to the client now instead of the 62455 constant. The client is *supposed* to use that value to sync with the simulator. (actually sending ushort.maxvalue * TimeDilation) ** Disabling prim that inter-penetrate instead of just not attaching a joint ** Reduced prim spin a 'little' bit, but not *enough* ** Tweaked the TimeDilation algorithm to be closer to 1.0 by default and various changes to the sim stats reporter ** Created a .SetValues method to PhysicsVector so we can simply call the setvalues function instead of .x, .y, .z sets. ** Experimented with a .GetBytes Method on PhysicsActor to be able to use the LLVector3.FromBytes() method. ** Upped the Inter-penetration depth to 0.25 instead of .08.
* * This resolves the null exceptions when a script is manipulating a physical ↵Teravus Ovares2008-02-123-4/+13
| | | | object in ODE and you delete the object. The script is still running and trying to add force, but the object reference is null.
* * Added PhysicsScene.Dispose()Teravus Ovares2008-02-117-1/+45
| | | | | * In ODE, disposing of all of the ODE objects and the ODE World to reclaim memory when the simulator restarts.
* Tiny change to print out a warning in a situation which almost guaranteeably ↵Justin Clarke Casey2008-02-111-3/+20
| | | | never occurs anyway
* Documenting and minor tweaksJustin Clarke Casey2008-02-111-0/+4
|
* * Renamed and moved avatar appearance config keys. Everyone who has ↵Tedd Hansen2008-02-111-2/+2
| | | | | | | | appearance persistence needs to set new params for it (check OpenSim.ini.example) New keys "appearance_persist" and "appearance_connection_string" are now under [Startup]. * Reorganized OpenSim.ini slightly
* reverted the last three commitsMW2008-02-111-1/+0
|
* yet another small change (as part of my fight back against Teravus over ↵MW2008-02-111-1/+1
| | | | taking me in the number of commits)
* another small changeMW2008-02-111-1/+1
|
* small changeMW2008-02-111-0/+1
|
* * Added some connection debugginglbsa712008-02-111-1/+1
|
* * some refactoring on permissionslbsa712008-02-115-108/+84
| | | | | * temporary re-introduced the weird 'flip-back' behaviour, but debugging it; will remove it if I don't find anything.
* Unhandled exception handler hookup is now the first thing to happen when ↵Tedd Hansen2008-02-111-2/+3
| | | | OpenSim starts
* * Changed child_get_tasks to see_into_this_sim_from_neighbor.Teravus Ovares2008-02-115-23/+21
| | | | | | * Turned on see_into_this_sim_from_neighbor by default. * Fix Race Condition with parts being added to a group while the simulator is starting up.
* * um, Prim crossings? Experimental.Teravus Ovares2008-02-116-79/+156
| | | | | * Backup your database just in case.
* state_entry is now executed on state change.Tedd Hansen2008-02-102-1/+18
|