aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/EntityManager.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-061-279/+0
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* Very minor: added a missing {0} in a couple of Error messages.diva2009-01-201-2/+2
|
* * minor: remove mono compiler warningJustin Clarke Casey2008-12-121-1/+1
|
* * Deleted old EntiyList tests, added new EntityManager testsSean Dague2008-12-121-19/+89
| | | | | | | * Edited EntityManager to treat Exceptions From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* Add copyright headers. Minor formatting cleanup.Jeff Ames2008-11-251-9/+36
|
* Update svn properties.Jeff Ames2008-11-251-182/+182
|
* * Swaps Scene.Entities Dictionary for EntityManager.Adam Frisby2008-11-241-6/+26
| | | | | | * Important Changes: Scene.Entities is now IEnumerable directly. You do not need to use Entities.Values, you can Enumerate on .Entities directly. (So 'foreach Scene.Entities' vs 'foreach Scene.Entities.Values'). * Locks: Entities maintains it's own internal locking states. This means you do not need to lock entities anymore. I'll be going through and removing locks on it systematically.
* * Makes EntityManager IEnumerable - meaning we should be good to go to ↵Adam Frisby2008-11-241-2/+16
| | | | enable this.
* * Adding EntityManager.csAdam Frisby2008-11-241-0/+148
* Not referenced anywhere yet. * Designed to replace Dictionary<UUID,EntityBase> within SceneGraph.Entities * Allows indexed access and better handling of locks. * Someone needs to implement IEnumerable on this before we can switch it over.