aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IRegionModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Rolled back a few changes.Adam Frisby2008-05-011-3/+3
|
* * Spring cleaning on Region.Environment. Adam Frisby2008-05-011-3/+3
| | | | | | | * Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
* Formatting cleanup.Jeff Ames2008-03-181-27/+26
|
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* * Optimized usingslbsa712007-10-301-2/+2
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* changes to pass nini config object to the modules that getSean Dague2007-10-191-1/+2
| | | | | | loaded so that they may read out any bits they are interested in
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-1/+29
|
* * Gave ModuleLoader some good lovin'lbsa712007-10-101-3/+3
| | | | | | | * Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin * Made LogBase thread-safe (or at least not thread-ignorant) * Ignored some genned files
* getting all our line endings consistant againSean Dague2007-10-051-2/+2
|
* * Modernized ScriptManager to new interface-based module calls.lbsa712007-09-191-6/+4
| | | | | * 'remove redundant this qualifier' ftw
* fixing me some line endingsSean Dague2007-09-171-15/+15
|
* Some work on Module loading/management.MW2007-09-041-0/+1
| | | | | | | | Some more modules templates classes (hoping that someone will pick some of these and work on implementing them). Early version of the "Dynamic Texture Module", although currently there are no render modules included (so not really functional without them). Added osSetDynamicTextureURL script function, for attaching a dynamic texture to a prim. Some work on the console command handling. Added "change-region <regionname>" and "exit-region" so that after the use of change-region, the commands entered will apply to that region only. Then use exit-region to return to the top level (so commands then function as they did before and either apply to all regions or to the first region) (Note: this hasn't been tested very much)
* Start of trying to make Region/Scene more modular. MW2007-08-281-0/+14
Added preliminary IRegionModule interface. Also have a work in progress way of Modules registering optional API methods (kind of like Apache optional functions). But there must be a cleaner/nicer way in c# of doing these than the current way. Added three work in progress modules: ChatModule (simple handles in world chat, but by moving this to a module, we could support other types of chat modules, ie like a irc - opensim bridge module. ) , AvatarProfilesModule and XferModule. Moved most of the code from Scene.ModifyTerrain() into the BasicTerrain library, as the start of trying to make that more modular. Stopped Child agents showing up as part of the "show users" command.