aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule/RegionModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-02-12* optimized usings.lbsa711-2/+1
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield1-2/+2
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!
2008-11-28* simplify AddNewClient since making this root without using MakeRootAgent() ↵Justin Clarke Casey1-1/+2
no longer sets everything up properly
2008-11-07* refactor: cleanup AllocateLocalPrimId() a bit moreJustin Clarke Casey1-4/+2
2008-11-07* Rename PrimIDAllocate() to more effectively convey what it does, and put ↵Justin Clarke Casey1-2/+2
the verb at the front
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-10/+10
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-07-22Refactor the packet scheduling out of ClientView. Add intelligentMelanie Thielker1-1/+1
resending, timeouts, packet discarding. Add notification event for packet discarding. Add priority scheduling for packet queues. Add outgoing duplicate detection facility. Correct packet sequencing. Make provisions for automatic server side throttle adjustments (comes in next installment)
2008-06-27last round of warning squashing. calling it a day now.Dr Scofield1-42/+42
2008-06-27* refactor: fission InnerScene.AddSceneObject()Justin Clarke Casey1-3/+3
2008-06-17* Refactor: Move the responsibility for applying physics and sending the ↵Justin Clarke Casey1-1/+0
initial client update to Scene.AddSceneObject() from some of the SceneObjectGroup constructors * I think this has been done cleanly from inspection and testing, but if prim creation or load suddenly starts playing up more than usual, please open a mantis * This also has the effect of stopping the archiver generating ghost in-world prims * Some code dupliction also removed
2008-06-12* refactor: For new objects, move attach to backup to occur when adding to a ↵Justin Clarke Casey1-3/+3
scene, rather than on creation of the group * Adding to a scene is now parameterized such that one can choose not to actually persist that group * This is to support a use case where a module wants a scene which consists of both objects which are persisted, and ones which are just temporary for the lifetime of that server instance
2008-05-24* Refactor: Change previous commits Object methods to SceneObject methods ↵Justin Clarke Casey1-3/+3
instead, on the basis that this is less likely to cause confusion with c#'s base object type
2008-05-24* Refactor: Renaming various *Entity*() methods to *Object*() methods on the ↵Justin Clarke Casey1-3/+3
basis that they all take SOG parameters to improve code readability for now
2008-05-14Formatting cleanup.Jeff Ames1-1/+1
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-2/+0
(this took a while to run).
2008-04-01few more minor changes, needs prebuild to be ran.MW1-3/+3
2008-04-01a few small changesMW1-1/+1
2008-03-25* Refactored out circular reference in Region.Environment <-> ↵lbsa711-2/+3
Framework.Data.Base We REALLY need to get the db layer sorted soon...
2008-03-18Added copyright messages. Set svn:eol-style. Minor cleanup.Jeff Ames1-2/+28
2008-03-14Update svn properties.Jeff Ames1-114/+114
2008-03-13* Added cautionary README.txtlbsa711-1/+1
2008-03-13* SimpleApp is dead, long live OpenSim.Region.Examples.SimpleModulelbsa711-0/+114
* This module more or less crashes every region in the instance if you enable it by moving it from local /bin to global /bin * But hey, it crashes in lots of interesting ways.