aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/InnerScene.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-02Change handler001 through handler009 to moreCharles Krinke1-4/+4
appropriate names consisten with their use. All done with all 94 handlers from handler001 through handler094. Hopefully we can move forward without numbered handlers.
2008-02-22* Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares1-2/+4
instances to prevent event race conditions
2008-02-20* Made a quickupdate method to run through only entities that have scheduled ↵Teravus Ovares1-0/+33
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.
2008-02-16Moved the AgentAssetTransactionsManager (and AgentAssetTransactions) out of ↵MW1-43/+38
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!
2008-02-14* Made new Framework.Constants class, added RegionSize member.Adam Frisby1-1/+1
* 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.
2008-02-12* This fixes the object edit box's flipping checkboxes when you modify one ↵Teravus Ovares1-0/+4
of the permission masks or Locked status using the available checkboxes.
2008-02-12* various minuscule code convention conformance fixeslbsa711-0/+2
2008-02-12* A bunch of updates to make things more smooth.Teravus Ovares1-1/+1
** 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.
2008-02-11* Changed child_get_tasks to see_into_this_sim_from_neighbor.Teravus Ovares1-1/+1
* 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.
2008-02-10The very beginnings of attachments (no detachments! :)Dalien Talbot1-0/+147
2008-02-10* This updates adds locking capability. Thanks, lbsa71 for pointing out my ↵Teravus Ovares1-0/+1
bitmasking error of the objectflags! It's still a little bit wonky when you check the checkbox, however it 'takes' and doesn't break anything.
2008-02-10* Added support for delinking individual prim from a linkset.Teravus Ovares1-3/+27
2008-02-10Clean up logging calls using String.Format explicitlyJeff Ames1-4/+4
2008-02-07* Fixed negative child agents in the sim stats.Teravus Ovares1-0/+6
2008-02-06* Added Active Scripts to report the number of scripts running to Sim Stats Teravus Ovares1-4/+24
* Added Script Performance to report the number of functions run per second to Sim Stats. * Removed a few warnings (@.@ up to 50 now)
2008-02-05Converted logging to use log4net.Jeff Ames1-7/+9
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-01-22* Enabled dead region tracking for ChildAgentDataUpdates Teravus Ovares1-13/+17
** If the region fails 3 times, then ChildAgentDataUpdates no longer get sent to that region * Enabled Child_Get_Tasks in grid mode. * When Child_Get_Tasks is enabled on neighbor regions, the neighbor region uses the client's draw distance to send out prim. This is a lot less likely to flood the client now since the ChildAgentDataUpdate contains both the throttle settings and the draw distance. This means that with this enabled, you can see prim in other regions in grid mode. Very experimental.
2008-01-16* Fix mantis 345 - it is now possible to duplicate prims directly in the ↵Justin Clarke Casey1-1/+6
region again without breakage * This includes their inventories * Also, this revision properly synchronizes prim inventory crud.
2008-01-14* First pass at collidable linksetsTeravus Ovares1-0/+1
* There will be bugs, you can count on that. To avoid them, set the linksets phantom * After region restart, the linksets restore in a non collidable state. * Linksets can but shouldn't be made physical with the physical checkbox or when you unlink them, they tend to explode. * After creating a linkset, you have to move the linkset or set it phantom and not phantom for it to become collidable. * There's a few ParentGroup references that need to be refactored.
2008-01-09Prim inventory script saving phase 2.Justin Clarke Casey1-1/+1
* It is now possible to edit and save scripts directly from prim inventories * On saving, the script will be restarted in the region * Doesn't appear that it's yet possible to drag inventory contents back to agent inventory. Not quite sure why this is yet - the perms all look very permissive.
2008-01-07Commenting out InnerScene.SceneObjects for now since it was unpopulated and ↵Justin Clarke Casey1-2/+3
not used by active code (as far as I can see), so a source of confusion. All current code uses the Entities dictionary
2007-12-28* Patch from Melanie provides Util.CleanString and uses it on the prim name ↵Teravus Ovares1-2/+2
and description. Thanks Melanie.
2007-12-28* applied melanie's matnis patch #255. Thanks Melanie.Teravus Ovares1-2/+2
2007-12-27* Optimized usingslbsa711-56/+67
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-17Thank you to Kiryu for a patch to fix an out of SyncCharles Krinke1-14/+52
error in Scene. Affects 6 files and is Mantis#201
2007-12-14* Added Active(physical) object count to the SimStatsReporterTeravus Ovares1-1/+14
2007-12-12* In our quest for sim heartbeat stats, we're a touch closer to accurate ↵Teravus Ovares1-1/+1
object count on sim stats. * Fixed a rare, but possible NullReferenceException
2007-12-12* Added Object count to sim stats (it's incorrect, however, it'll be fixed)Teravus Ovares1-0/+6
2007-12-12* Added some simstats to fill the simulator pane of the Statistics monitor.Teravus Ovares1-2/+50
* I stress, this is an initial implementation and the Agents(Child and Root) are definately obviously incorrect.
2007-12-11A few minor changes/additions/fixes.MW1-1/+1
2007-12-11added copyright noticesJeff Ames1-1/+29
2007-12-07Avatar Appearance refactoring /changes. Added a AvatarAppearance class, each ↵MW1-2/+2
ScenePresence "has" a AvatarAppearance object. All the ScenePresences in a opensim related to one user (so a user's various ScenePresence's in all the regions in that instance) share the same AvatarAppearance object. This means that a user's avatar should appear correctly (to both that user and other users) no matter what border crossing or teleporting they have done. Note: this mainly improves Standalone mode, as in grid mode the appearance data isn't passed between region servers. Although people should notice a improvement when moving between regions in the same instance.
2007-12-07* Added hacked support for 'anyone can move' and 'anyone can copy'.Teravus Ovares1-21/+80
* BACKUP YOUR PRIM BEFORE UPDATING TO THIS and then double check the prim permissions after applying it with a different avatar (then the master avatar or the prim owner avatar). * Also, beware that any objects created under the old permission scheme may react oddly. They may automatically allow anyone to modify them, (which you'll then have to un-set). * It's hacked support because when 'anyone can move is set', any avatar can modify the prim (texture, shape, scale, etc)
2007-12-06removed obsolete Verbose() functionJeff Ames1-10/+8
2007-12-05* Refactored Permissions into ScenePresence as requested by MWTeravus Ovares1-2/+2
* Un-hackerized generating the client_flags * Now handling the ObjectPermissions Update packet * Warning: Backup your prim before updating. If you fail to do so and something goes wrong then, All Yr prim are belong to us!
2007-12-04keeping opensim safe for children -- made some namespace references less ↵Jeff Ames1-2/+2
explicit
2007-12-04* Fixed a whole bunch of console messages.Adam Frisby1-1/+1
2007-12-04* Removed 12 compiler warnings.Adam Frisby1-2/+0
2007-11-30*Refactored the initial raytracer so it doesn't use the Parent reference.Teravus Ovares1-1/+1
*Fixed a 'statement out of order' error in the setting of the permissions that are sent to the client.
2007-11-29* Fixed neighbour range buglbsa711-1/+1
* Various refactorings
2007-11-29* Thanks to _SomeOne_, Server side permissions on object editing. Be aware, ↵Teravus Ovares1-6/+13
that if you're editing an object on your client that you're not allowed to, it'll appear that it's moving to you, but won't actually be moving on the sim.
2007-11-28* Restaring the sim works fine in grid mode now. Sims announce themselves ↵Teravus Ovares1-4/+49
to their neighbors when they start up. Neighbors get this message and tell their agents that there's a new sim up. * Certain unrecoverable physics based crashes in ODE are now hooked up to the 'restart the sim' routine.
2007-11-23* added some functions for use in raytracing. They're kind of crappy now, ↵Teravus Ovares1-0/+27
so they only display 'guesses' on the console when you rez a prim. * any math gurus who'd like to improve rezzing need only to make the raytracer in SceneObjectPart work :D
2007-11-22* Added code to capture the draw distance setting from the client.Teravus Ovares1-1/+35
* Added a support function to InnerScene to calculate the distance between two vectors.
2007-11-18Attempt to get World Map working in Grid mode, will need to be using the ↵MW1-14/+16
grid asset server for it to work correctly and has only been quickly tested in a three region grid. Moved PermissionManager creation out of the Scene constructor and instead a PermissionManager is passed to the constructor as a param. So that we could create and use custom permissionsManagers. Added AllowMovement property to ScenePresence which can be used to stop movement of avatars (for example in a custom region that wanted avatars always in one place). Added PermissionManager call when copying objects, although currently the call will always return true so that it allows copying in places like Wright Plaza. A few other changes/fixes.
2007-11-15* Implemented the little friendly pop tooltip messages that appear when you ↵Teravus Ovares1-0/+17
hover your mouse over prim with the object name, description, ownerid.. etc.
2007-11-14* Copied objects are now owned by the object copier (Next Owner) (however ↵Teravus Ovares1-2/+2
next owner permissions are not applied yet) * In Serverside permissions mode; If you've copied an object, then you can delete it and clean up after yourself. The rest of the permissions functionality is still unchanged. Admin can delete any object.. etc.
2007-11-13first pass on unlinking of objects. From Jay Clarke (IBM)Sean Dague1-0/+50
2007-11-07refactored some duplicate SceneObjectGroup searching code in SceneJeff Ames1-196/+68
2007-11-05removed duplicated BOMsJeff Ames1-1/+1