aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/AssetDownloadModule.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-03-05* Removed more compiler warnings, dead code, etc.Adam Frisby1-2/+0
2008-03-03* Removed and sorted using clauses in a number of files.Adam Frisby1-2/+2
* Cleaned up ITerrainChannel * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Paint Brushes * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Fill Brushes * Implemented Export functionality for RAW32 terrain loader * Implemented Import/Export for SLRAW terrain loader * Implemented Export for JPEG terrain loader
2008-02-29More compiler warning cleanup.Jeff Ames1-5/+3
Removed verbose flag, since it doesn't do anything any more.
2008-02-27disabled AssetDownloadModule and re-enabled the asset download code in the ↵MW1-7/+7
asset cache, until it can be seen if the module was the cause of some new problems that seem like they might be related to assets. I'll look into this more tomorrow.
2008-02-27After seeing sdague do his happy dance over trunk working "the best he has ↵MW1-2/+268
ever seen". I'm not sure I should be doing this commit, but oh well. So anyway, it moves the Asset downloading (packet sending) to a module (AssetDownloadModule). So now at last, AssetCache should be just dealing with fetching assets from the asset server and caching them.
2008-02-20Minor cleanup.Jeff Ames1-1/+1
2007-10-30* Optimized usingslbsa711-4/+3
* Shortened type references * Removed redundant 'this' qualifier
2007-10-29as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW1-0/+1
Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
2007-10-29Started the process of cleaning up AssetCache and moving most of the code ↵MW1-1/+1
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.
2007-10-19get rid of all the ^M line endingsSean Dague1-72/+72
2007-10-19changes to pass nini config object to the modules that getSean Dague1-1/+2
loaded so that they may read out any bits they are interested in
2007-10-15* Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa711-1/+29
2007-10-10* Gave ModuleLoader some good lovin'lbsa711-42/+42
* 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-6/+6
2007-09-19* Modernized ScriptManager to new interface-based module calls.lbsa711-14/+7
* 'remove redundant this qualifier' ftw
2007-09-17fixing me some line endingsSean Dague1-50/+50
2007-09-04Some work on Module loading/management.MW1-0/+5
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)
2007-08-30Added some place holder classes for various modules.MW1-0/+45
Some work on the asset cache, can people please test this. including on one of the public systems so we can see if it causes problems with multiple users.