aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Removed and sorted using clauses in a number of files.Adam Frisby2008-03-031-2/+2
| | | | | | | | | | * Cleaned up ITerrainChannel * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Paint Brushes * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Fill Brushes * Implemented Export functionality for RAW32 terrain loader * Implemented Import/Export for SLRAW terrain loader * Implemented Export for JPEG terrain loader
* * This is a very icky implementation of physical linkset prim using fixed ↵Teravus Ovares2008-03-021-2/+2
| | | | | | | | | joints. This will change quite drastically, however it's fun to play with. * To play with this you must link your prim before setting it physical, otherwise they won't link in the physics engine properly. This will also be fixed. * Currently the linked prim are extremely unstable because I have yet to implement combining of forces with the same normal. This will also be fixed. In fact, the whole PhysicsActor, ODEPrim relationship will be reworked to consider groups from the get-go. * This implementation is better then it crashing your sim, so I'm commiting it for now.
* * Turned Friends Module into a shared module (to comply with ↵Teravus Ovares2008-02-271-1/+6
| | | | | | | Scene.AddXmlRPCHandler being shared). * Fixed a null ref issue in Scene.Close()
* UserService.ClearAgent call is no longer made when a childagent connection ↵MW2008-02-271-6/+5
| | | | | | | is being closed. DisableSimulatorPacket now skips the packet throttles
* * Caught HttpListenerException and swallowed if with outputlbsa712008-02-251-2/+2
| | | | | | | | * Moved Flush into Close since it's always done in that order. * Minor renamings * Reversed if for clarity
* * Cleanup of some memory consuming items on ScenePresence.Close().Teravus Ovares2008-02-201-1/+25
| | | | | | * Untangled a tangly shutdown loop for the ScenePresence. * Suggested to the Garbage Collector that this may be a good time to >.>, <.< *gasp* collect the memory.
* * Made a quickupdate method to run through only entities that have scheduled ↵Teravus Ovares2008-02-201-1/+14
| | | | | | | | | themselves for updates looking for changes. This runs 10 times a second. * Set the massively slow UpdateEntities method to run every 2 seconds instead of 10 times a second. This method runs through *all* of the entities can calls the virtual update(). * Documented some of the code in the scene.Update method.
* Thank you very much Ahzzmandius for adding the supportCharles Krinke2008-02-181-0/+2
| | | | | | to purge the avatars inventory "Trash" folder using the bizarre tortoiseSVN method of diff/patch.
* Moved the AgentAssetTransactionsManager (and AgentAssetTransactions) out of ↵MW2008-02-161-4/+8
| | | | | | | CommsManager and into a module (AgentAgentTransactionModule), still needs cleaning up though. But its one more thing out of the CommsManager. One day we will kill the CommsManager!
* Some changes to remove some of the direct calls to CommsManager from Scene, ↵MW2008-02-161-7/+7
| | | | so that they now go through the SceneCommunicationService. As a small step towards the day we can kill the CommsManager (YAY!)
* * ODE Stability update 4 :D Teravus Ovares2008-02-151-1/+16
| | | | | | * Changed the way meshing requests get sent to the ODEPlugin * Numerous other fixes
* Fixed bug in AvatarFactoryModule that resulted in removing cloth items, not ↵MW2008-02-151-0/+1
| | | | being persisted.
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-141-12/+12
| | | | | | * 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
|
* * Bigisn ODE Stability update 2Teravus Ovares2008-02-141-0/+7
|
* * Removed a debug line that got called every frame.Teravus Ovares2008-02-131-1/+1
|
* * Made physical prim stable enough for the general population to turn on. ↵Teravus Ovares2008-02-131-1/+1
| | | | | | | | | | (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-131-10/+6
|
* * 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-131-1/+0
| | | | | | | | * 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
* * Physical prim cross borders and continue from where the left off on the ↵Teravus Ovares2008-02-121-11/+11
| | | | 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-121-3/+12
| | | | | | | | | | | ** 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.
* * Added PhysicsScene.Dispose()Teravus Ovares2008-02-111-0/+5
| | | | | * In ODE, disposing of all of the ODE objects and the ODE World to reclaim memory when the simulator restarts.
* * Changed child_get_tasks to see_into_this_sim_from_neighbor.Teravus Ovares2008-02-111-4/+4
| | | | | | * 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-111-44/+70
| | | | | * Backup your database just in case.
* The very beginnings of attachments (no detachments! :)Dalien Talbot2008-02-101-0/+2
|
* * Refactored permissions handling to extract info out of permisisons block ↵lbsa712008-02-101-148/+135
| | | | | | | | in ClientView * Changed some uint constants to Enum values
* Clean up logging calls using String.Format explicitlyJeff Ames2008-02-101-4/+4
|
* * Fixed nebadon's UserServer crash bug from yesterday.Teravus Ovares2008-02-091-0/+23
| | | | | | * Made Estate tools work for estate managers without needing to request admin status First * Added code to make the Simulator version to be reported in the About box of the client
* Still chasing logout memory leak. Putting in small changes and temporary ↵Justin Clarke Casey2008-02-081-1/+4
| | | | light verbosity to this end
* Minor ScenePresence related refactoringJustin Clarke Casey2008-02-081-3/+19
|
* * Adding console spam to help track 'The Steve Bug'.Adam Frisby2008-02-081-4/+14
|
* * Fix: Send Parcel data on region crossing.Teravus Ovares2008-02-081-0/+1
|
* * This update contains a bucket-full of network optimizations.Teravus Ovares2008-02-071-1/+22
| | | | | | | | | * ParcelProperties are sent only when needed instead of on any movement * Terse Updates and other temporary data packets are marked unreliable * After a certain amount of users, the sim actually sends updates on things less * Experimental * Tested to 68 avatar with pCampBot (And it's surprising what actually causes the most lag.. the text chat!)
* * Added the Scripted objectflag if there is a script running in a prim. ↵Teravus Ovares2008-02-071-0/+1
| | | | Remove the flag if you delete all of the scripts in the object.
* * Added debug message to try track down Mantis#305.Adam Frisby2008-02-061-0/+1
|
* Consolidated LoadAnims and AvatarAnimations constructor.Jeff Ames2008-02-061-2/+0
| | | | | Fixes locking issues with Animations in ScenePresence (bug #324)
* * Added the ability to start and stop all scripts in the simulator using the ↵Teravus Ovares2008-02-061-0/+48
| | | | debug tab on the estate tools. This along with the disable physics via the debug tab are persistant across reboots. That means that if it's disabled when you shut down the simulator, the simulator will come up again when you start it up without loading the scripts. Turning them back on is as simple as unchecking 'disable scripts' in the debug tab of the estate tools.
* * Added Active Scripts to report the number of scripts running to Sim Stats Teravus Ovares2008-02-061-0/+2
| | | | | | | * Added Script Performance to report the number of functions run per second to Sim Stats. * Removed a few warnings (@.@ up to 50 now)
* Converted logging to use log4net.Jeff Ames2008-02-051-49/+37
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* Small refactoring on Terrain Update sending, so that other code can force ↵MW2008-02-051-15/+20
| | | | terrain updates to be sent to clients.
* * Refactored the sound calls to SceneObjectPart Teravus Ovares2008-02-051-0/+2
| | | | | | * Fixed a few bugs * Wrote an example module to make certain event systems more mature.
* * Whole buncha stuff.Adam Frisby2008-02-041-3/+7
|
* Implements LSL function llDialog().alondria2008-02-021-0/+8
| | | | | The ScriptDialogReply packet handler is a bit of a hack job. It is currently handled similar to ChatFromViewer, which will trigger the listen() event, however this is not exactly how LL's implementation works and will/can be fixed up later.
* * Added a way to temporarily disable physics using the estate toolsTeravus Ovares2008-02-021-2/+22
| | | | | | * Added a method for Tedd to hook to in scene to disable the Scripting engine that currently says, [TOTEDD] Here is the method to trigger disabling of the scripting engine.
* * This update updates ODE to again use the AMotor to keep the avatar upright ↵Teravus Ovares2008-01-231-8/+0
| | | | instead of the 'avatar wobble' This also uses a hack to detect debian and change the force applied by the AMotor to a different value for Debian. The intent of this all is to get the avatar to stand up in Debian with the AMotor.
* * Added ReadEtcIssue to Util Teravus Ovares2008-01-231-6/+4
| | | | | | * If you have Debian running, you should get a platform line that says, 'Found Debian!' when starting up your sim. * If someone running Debian will confirm this does occur, that would be most helpful.
* * One more try at specifically identifying Debian from the code. Teravus Ovares2008-01-231-0/+8
| | | | | * There's 3 platform lines now. Would someone running debian and/or Fedora core please try this revision out and send me the three [PLATFORM] lines?
* * When Scene loads, added a platform string print out for testing purposes. ↵Teravus Ovares2008-01-231-0/+2
| | | | Anyone on Debian want to run this revision and send me back the two platform lines? It would be helpful.
* * changed nonsensical PermissionMask and ObjectFlags mixup; if this causes ↵lbsa712008-01-221-2/+2
| | | | perms weirdness, let's all work together to find the real cause.