aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Asset (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang3-52/+71
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel3-20/+86
2012-11-13Last 27 modules' directives (service connectors out).Diva Canto3-2/+7
2012-09-21Minor: may avoid crashes of sims that still don't have this configuration ↵Diva Canto1-1/+1
section.
2012-09-21HG 2.0: added asset import/export policies at the sim too.Diva Canto1-8/+15
2012-09-15Add basic asset connector tests to check behaviour for normal, local and ↵Justin Clark-Casey (justincc)2-2/+141
temporary assets. Make AssetServiceConnector return more useful data on failure, such as what DLL it was trying to load Allow LocalAssetServiceConnector.GetData() to work without a cache present, as works for the other lasc Get* methods.
2012-05-25Resolve some mono compiler warnings.Justin Clark-Casey (justincc)1-1/+1
2012-03-02Start by adding XAssetService as a copy of the existing AssetService.Justin Clark-Casey (justincc)1-2/+5
This is the start of exploring the creation of a bundled OpenSimulator asset service that does de-duplication and possibly file storage of assets. Along the lines of coyled's SRAS, but not intended to replace, merely to act as a more performant bundled default. Might end up nicking stuff from kcozen's patch at http://opensimulator.org/mantis/view.php?id=5429 More details at http://opensimulator.org/wiki/Feature_Proposals/Deduplicating_Asset_Service Feedback and discussion welcome as commits are made.
2012-01-02Adding commented out log messages and some minor formatting for future bug ↵Justin Clark-Casey (justincc)1-0/+2
hunting. No functional changes.
2011-12-29Deleted unused methods from HGAssetBrokerDiva Canto1-18/+0
2011-08-30Fix bug in persisting saved appearances for npcsJustin Clark-Casey (justincc)1-5/+20
Assets have to be marked non-local as well as non-temporary to persist. This is now done. Hopefully addresses http://opensimulator.org/mantis/view.php?id=5660
2011-04-15Make all the objects in a coalescence reappears after being loaded from an ↵Justin Clark-Casey (justincc)1-0/+2
IAR. This still doesn't work proprerly since some required textures/contained item assets might be missing. From pure code inspection, it looks like the uuid gatherer may get most asset uuids because the scene object serializer naively pulls non-root parts from all contained scene objects into one mega-object. However, root part uuids may well still be missing, and there may be other odd artifacts from this bug. It appears that storing the size of the coalescence and the offsets is redundant, since one can work out this information from the position data already in the scene object groups.
2010-10-02Attempt at fixing mantis #5057 -- CPU pinned high with HGAssetBroker.Diva Canto1-21/+34
2010-07-04Got rid of all hyperassets references. Also fixed accessing textures in ↵Diva Canto1-2/+1
user's inventory in foreign grids.
2010-04-08* Adds IAssetService.GetCached() to allow asset fetching from the local ↵John Hurliman2-0/+16
cache only * Adds GetTextureModule that implements the "GetTexture" capability, aka HTTP texture fetching. This is a significantly optimized path that does not require any server-side JPEG2000 decoding, texture priority queue, or UDP file transfer * Sanity check for null reference in LLClientView.RefreshGroupMembership()
2010-03-09* Typo fixesJohn Hurliman1-1/+1
* Performance improvement in the expensive GenerateClientFlags()
2010-02-15Formatting cleanup.Jeff Ames1-1/+1
2010-02-12Fix http://opensimulator.org/mantis/view.php?id=4224Justin Clark-Casey (justincc)1-21/+27
This resolves the problem where eyes and hair would turn white on standalone configurations When a client receives body part information, for some insane reason or other it always ends up uploading this back to the server and then immediately re-requesting it. This should have been okay since we stored that asset in cache. However, the standalone asset service connector was not checking this cache properly, so every time the client made the request for the asset it has just loaded it would get a big fat null back in the face, causing it to make clothes and hair white. This bug did not affect grids since they use a different service connector.
2010-01-11OpenSim/Framework/Communications/Cache deleted. LibraryRootFolder deleted.Diva Canto1-1/+1
2010-01-10* OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto1-12/+6
* HG is seriously broken here * Compiles. Untested.
2009-10-12* Fixes http://opensimulator.org/mantis/view.php?id=4225Diva Canto1-1/+43
* Fixes http://opensimulator.org/mantis/view.php?id=3959 * Allows for viewing inventory textures outside home grid
2009-09-03Fixes seven leaky .BeginInvoke() callsJohn Hurliman2-4/+4
2009-08-10Replace the Replaceable modules nameMelanie3-3/+3
2009-07-10Committing the interface change and the addition to the modules to getMelanie Thielker3-0/+15
the ball rolling on replacable modules. No user functionality yet
2009-06-14Renamed Region/CoreModules/ServiceConnectors to ↵diva3-0/+726
Region/CoreModules/ServiceConnectorsOut. No functional changes.