aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/ModuleLoader.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * ModuleLoader: Privatized some too-public fieldslbsa712007-10-291-13/+24
| | | | | | | * Scene: Changed name from MakeAvatarPhysical to MakeRootAgent and added ForEachClient * SceneManager: Added ForEachScene * Worked some on appearances.
* Started the process of cleaning up AssetCache and moving most of the code ↵MW2007-10-291-0/+3
| | | | into modules. Have moved TextureRequest handling (from the client) to a module. But even though to start with I just did a little bit of cleaning up of the existing code, it doesn't seem to work as good as the old code so I need to spend more time on it. So for now am committing my changes but with them not in use. So for now all Texture and asset requests are still handled by the old code in AssetCache.
* * Added prototypical AvatarFactory module interface to load avatar parameterslbsa712007-10-261-0/+6
| | | | | | | * Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
* * Return of R2162. /Take that SVN!/Adam Frisby2007-10-221-1/+1
|
* nice catch by chi11ken that I was setting the wrong propertySean Dague2007-10-221-214/+214
|
* revert r2162 as it completely clobbered all the work onSean Dague2007-10-221-214/+214
| | | | | | | the ChatModule by MW and myself. Couldn't find Adam online after that rev went in.
* * Major ass commit.Adam Frisby2007-10-221-214/+214
| | | | | | | * Sqlite Storage Engine now supports terrain -- however be aware that every terrain revision stored will at 512KB to your database file. At the moment it is storing every revision from the first. * Fixed an issue where by noverbose mode would display lots of useless junk. Noverbose mode is now quite usable. * Fixed a whole bunch of console message issues such as naming and categorisation
* attempt to fix the muliple repeat problem (that sdague is getting) in the ↵MW2007-10-221-203/+203
| | | | IRC chat bridge code.
* Hopefully made it so ChatModule and InstantMessageModule are now running in ↵MW2007-10-221-4/+13
| | | | Shared module mode.
* changes to pass nini config object to the modules that getSean Dague2007-10-191-202/+205
| | | | | | loaded so that they may read out any bits they are interested in
* * Removed some commentslbsa712007-10-181-6/+0
|
* Added "LoadImageUrl" module , that is a dynamic texture render, that works ↵MW2007-10-151-1/+1
| | | | with the DynamicTextureModule to allow loading of a image from a webserver and a texture of that image created.
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-0/+28
|
* Change warning from "not a valid assembly" to "not a module assembly"Charles Krinke2007-10-111-1/+1
|
* * Okay, so maybe Error was a bit harsh for BadImageException; downgrading to ↵lbsa712007-10-101-1/+1
| | | | | | | Warning. * This commit brought to you by http://icanhascheezburger.com/
* * Now loading modules from ScriptEngines directory as well.lbsa712007-10-101-31/+2
|
* * Gave ModuleLoader some good lovin'lbsa712007-10-101-162/+209
| | | | | | | * 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
* Code from Illumious Beltran (IBM) implementing more LSLSean Dague2007-10-051-1/+7
| | | | | | | | | | | | | | | | | | | The functions implemented are: llListen llListenControl llListenRemove llOpenRemoteDataChannel llCloseRemoteDataChannel llRemoteDataReply The events implemented are: listen remote_data
* getting all our line endings consistant againSean Dague2007-10-051-155/+155
|
* more refactoringMW2007-10-031-142/+142
|
* * Modernized ScriptManager to new interface-based module calls.lbsa712007-09-191-35/+31
| | | | | * 'remove redundant this qualifier' ftw
* fixing me some line endingsSean Dague2007-09-171-160/+160
|
* hooked up sdague new sqlite asset database provider to the old asset system. ↵MW2007-09-101-16/+17
| | | | | | | | So we can still use sqlite for assets while we wait for the rest of the new asset system to be wrote. Needs more testing, so if it causes problems will have to swap back to db4o.
* Converted the LSL scripting engine into a IRegionModule, so now all ↵MW2007-09-081-0/+3
| | | | | | | | | "modules" share a common base interface and are loaded from the single loader. (It seems to work fine, but I have left the old scriptengine loader, incase we have to change back). Removed the reference to OpenJpeg in the DynamicTextureModule, to see if that was causing the build problem someone is having. Added a Temporary fix for the "existing connection was forcibly closed by the remote host" exception on windows when a user logs out of a multiregion instance. Some early work to prepare for improving the way clients are updated (about prims etc).
* Some work on Module loading/management.MW2007-09-041-16/+58
| | | | | | | | 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)
* Added a Debug method to the Console/log class that has the Conditional ↵MW2007-08-311-3/+21
| | | | | | | attribute (set to "DEBUG"), so we can use that for writing extra debug info to the console. [for anyone who doesn't know about the Conditional attribute, it is a attribute that can be set on a method, and then any call to that method will on be compiled if the terms of that condition are met, ie is this case only if "DEBUG" is true. So its a cleaner implementation of the #if #endif directives]. A few other minor changes.
* Taken the old scripting engine out of Region.Environment and moved it into a ↵MW2007-08-281-0/+3
| | | | separate module: OpenSim.Region.ExtensionsScriptModule (named as such because the purpose of it is to script server extensions, rather than "user scripting" like Tedd's engine.)
* Start of trying to make Region/Scene more modular. MW2007-08-281-0/+93
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.