aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneBase.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-07-26* Started renaming world to Scenelbsa711-1/+1
* Update and UpdateMovement now first stores array to avoid collection update exceptions * Ignored some bins
2007-07-24* Terrain should now send just updated patches.Adam Frisby1-2/+2
2007-07-24* Reduced a significant number of compiler warnings (back down to 9 for all ↵Adam Frisby1-1/+1
projects combined, all 'never used' things)
2007-07-22* Some work in progress code: Inventory cache, start of inventory ↵MW1-1/+1
server/service, userprofile cache, inventory handling. (non of it is enabled yet (or at least it shouldn't be). * Fixed some of the problems with crossing regions when flying: you should no longer sink to ground level when crossing (should keep roughly your right height). Should no longer sometimes get sent back to the centre of the current region when attempting to border cross. But instead sometimes you will find you avatar stop at the edge of region and you will need to start moving again to retry the crossing (which should then work). This code is partly based on Babblefrog's issue #212 patch. [I think I have some ideas of how to solve the stopping at edges problem, just want to get the inventory code done first] * Capabilities code has now been moved to the OpenSim.Framework.Communications project as some of the caps code will be tightly tied to inventory/asset handling and it was causing a two way reference problem when it was in its own project/dll. This is a Big commit as I was going to keep my inventory work local until I had it in a working state, in case it brakes anything, but its getting harder to keep in sync with svn.
2007-07-21* Renamed terrain functions to match OpenSim naming styles.Adam Frisby1-2/+2
* Added capability to support minimum/maximum terrain limits (from the last 'bake')
2007-07-19* Moved EventManager to SceneBase (from Scene)Adam Frisby1-1/+8
* Added OnShutdown event to EventManager (to be used to perform cleanups, etc) * Fixed another compiler warning.
2007-07-19* Cleaned out remaining references to the old LocalStorage system in prep. ↵Adam Frisby1-40/+1
to move to StorageManager.
2007-07-17* debugged quite a lot of db-related strangeness and various refactoring goofslbsa711-31/+24
2007-07-16changed to native line ending encodingSean Dague1-195/+195
2007-07-15Removed the reference to ClientManager from scene, as scene really shouldn't ↵MW1-1/+0
have a direct reference to the UDP/Packet server's clientmanager, instead it should send all data through the ScenePresences. For those functions that was using the clientManager's foreachClient(delegate) method, there is now a ForEachScenePresence(delegate) in scene. This change helps with the decoupling of client packet functions from the scene functions.
2007-07-13* ObjectAddPacket now confined to ClientView,´using PrimitiveBaseShape ↵lbsa711-2/+0
instead - w00t!
2007-07-09* some follow up renaming of members et c.lbsa711-1/+1
2007-07-09* Introduced ClientManager for great justice.lbsa711-1/+2
2007-07-03* Optimized usings (the 'LL ate my scripts' commit)lbsa711-11/+6
* added some licensing info
2007-07-01* removed try-catchall from scene constructorlbsa711-1/+3
* added reference server-side addnewprim prototype to Scene - not implementet yet though.
2007-07-01Started change to having SceneObject and then that having child Primitives ↵MW1-1/+1
which in turn have a Shape object (currently PrimitiveBaseShape). The plan is only for the SceneObject to interface with the physics engines. As a physics Entity should be able to have mulitple shapes connected to it.
2007-07-01Fixed SimpleApp - aka thankgoditssundaycommitlbsa711-1/+1
* Updated SimpleApp with various introduced dependencies * Extracted ScenePrescence creation in Scene * removed try-catchall from UserManagerBase (that actually hid a bug) * Refactored RegionInfo * handle is calculated * it will explode upon accessing x,y,ip,port,externalip if not explicitly initialized * Removed superfluous 'ref' keywords * Removed a shitload of 'catch Exception e' that causes build warnings * Lots of small refactorings, renames et c * Ignored some bins
2007-06-28Imported the scripting changes, so now should be up to date with sugilite. MW1-1/+0
2007-06-27*Moved all the classes into their own file from LLSDHelpers.csmingchen1-0/+0
*Some folder renaming to follow project Name *Updated prebuild.xml
2007-06-27*Moved VersionInfo.cs to its correct place in OpenSim.csprojmingchen1-1/+1
*Added OpenSim.Region.Caps *Updated prebuild.xml and ran prebuild
2007-06-27*Some more restructuring/fixing -- should compile, but high chance I forgot ↵mingchen1-3/+3
to add/remove something