aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/DynamicTextureModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-10-10* Gave ModuleLoader some good lovin'lbsa711-156/+156
* 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
2007-10-05getting all our line endings consistant againSean Dague1-156/+156
2007-09-24* Encapsulated all CommunicationsManager serviceslbsa711-140/+140
2007-09-19* Modernized ScriptManager to new interface-based module calls.lbsa711-29/+27
* 'remove redundant this qualifier' ftw
2007-09-17fixing me some line endingsSean Dague1-159/+159
2007-09-08Converted the LSL scripting engine into a IRegionModule, so now all ↵MW1-1/+0
"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).
2007-09-05Added "Local" and "Temporary" Fields to the AssetBase class.MW1-1/+1
2007-09-04Added partial help info when calling "help" command with a region set.MW1-2/+26
Added AddDynamicTextureData() to DynamicTextureModule, so that a script (or another module even) can create a dynamic texture by passing a string with the data in, rather than a url. This could be used for anything from a script passing a basic text string (and having it rendered to a texture) or the script building its own html document.
2007-09-04Some work on Module loading/management.MW1-0/+136
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)