aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-06-01Update svn properties.Jeff Ames1-45/+45
2008-06-01* Committing some stuff I'm working to make it so I can commit an upcoming ↵Teravus Ovares1-3/+169
patch from Dahlia. IM type stuff. No big deal, not done.
2008-06-01* Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey1-3/+1
must remember to nant clean * Hook all server startups into base opensim server startup method
2008-06-01* Updates permission module so that GenericCommunicationPermission returns ↵Teravus Ovares1-2/+3
true. Instant messages, inventory transfers use this.. and it was always returning false.
2008-05-31* Enable loading of textures in OpenSim archives with load-oar/save-oarJustin Clarke Casey1-2/+0
* Right now, this only saves and reloads textures that have been applied to the entire prim (not ones which have been applied to individual faces). * This is work in progress - it is currently experimental, hacky, inefficient, completely unsupported and liable to change rapidly at short notice :)
2008-05-31* Put in preparatory code to restore whole prim textures on archive loadJustin Clarke Casey3-3/+35
* No user functionality yet
2008-05-30* If you check fixed sun, in the estate tools 'terrain tab', the sun will ↵Teravus Ovares1-1/+8
fix in the location you set. (however the checkbox doesn't get re-populated properly yet, so it'll uncheck again even though the message got through to the server)
2008-05-30* You can set the sun phase via the estate tools now. It doesn't persist ↵Teravus Ovares1-15/+16
across reboots though.
2008-05-30* Hook up archive loading to load in prim xml dataJustin Clarke Casey4-19/+57
* This now has equivalent functionality to load-xml2 - no asset data is restored yet
2008-05-30* Crudely migrate SceneXmlLoader into the Serializer moduleJustin Clarke Casey3-4/+276
2008-05-30* Stop the IRC module throwing a nre on shutdown if it isn't actually being usedJustin Clarke Casey1-2/+5
2008-05-30* Successfully pick out prims.xml file from archiveJustin Clarke Casey5-6/+79
2008-05-30* Read all files from tar archiveJustin Clarke Casey2-11/+55
* No reload functionality implemented yet
2008-05-30while investigating why IRCBridgeModule.Close() was having no effect, iDr Scofield2-14/+28
noticed that Scene.Close() will only call Close on non-shared region modules. i've now added code to SceneManager.Close() to collect all shared region module from each scene before calling Scene.Close() on it and then, once, all Scenes are closed, go through the list of collected shared region modules and close them as well. SceneManager.Close() is only called when we initiate a shutdown --- i've verified that a Scene restart does not trigger the shutdown of shared modules :-) also, this adds a couple of bug fixes to the IRCBridgeModule (which after all didn't take kindly to being closed) as well as a check to InterregionModule's Close() call. finally, this fixes the RestPlugin's XmlWriter so that it no longer includes the "xsd=..." and "xsi=..." junk.
2008-05-30* Fixed a dangling event hook that I added.Teravus Ovares2-6/+67
* Added a Non-finite avatar position reset. This will either handle the <0,0,0> avatar gracefully, or send the avatar to 127,127,127 if that also doesn't work. ( I've only been able to reproduce this error once on my development workstation )
2008-05-30Update svn properties. Formatting cleanup.Jeff Ames4-177/+177
2008-05-30* Added helper method to the Sun module to Get the Linden hour based on the ↵Teravus Ovares2-1/+18
math in the sun module. This populates the sun phase slider on the terrain tab in the estate tools according to the current sun phase. Display purposes only for now. Need to go the other way for setting the sun phase based on the linden hour in the estate tools.
2008-05-30* Updated sun module to only send sun updates to root agents. Because it ↵Teravus Ovares1-3/+54
was sending updates to both root and child agents, you'll still get sun jitter until this revision is adopted by every region nearby.
2008-05-29* Caches UUIDName requestsTeravus Ovares1-2/+46
* Looks up UUIDNames for script time and colliders in a separate thread. * Hopefully this'll allow you to look at top scripts on a region that has a lot of scripts without crashing your client thread.
2008-05-28* Fixed a slight issue with the LLRAW exporter.Adam Frisby2-3/+4
* Linden uses a neutral height channel of 128.0 on their multiplier. OpenSim was using a neutral of 127.0 - this has been changed to 128.0, this may cause files exported to the .RAW format to look slightly different when loaded back in - it is highly recommended to use the R32 format instead which avoids these sorts of issues. * Made a tweak to the Terrain Plugin loading process.
2008-05-28* Minor: Another small log adjustmentJustin Clarke Casey1-1/+1
2008-05-28* Minor: Log message clean up in archiver codeJustin Clarke Casey2-3/+5
2008-05-28* Put in stubs for "load-oar" command, including ultra-primitive temporary ↵Justin Clarke Casey5-11/+182
tar loading code * Currently as a test, this will successfully load only the first file of an opensim archive and do absolutely nothing with it
2008-05-28* Put textures into a separate assets/ directory in the opensim archiveJustin Clarke Casey2-6/+37
* Fix nre where the asset couldn't be found * Not ready yet
2008-05-28Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke1-1/+1
llLoopSound sends out one packet to clients in view, so it doesn't work anymore when clients enter later on, or the prim is modified in any way. Solution: Stored sound data on prim, send full update instead. llStartSound and llLoopSound now accept both LLUUIDs to a sound as well as object inventory sound names. llStopSound clears prim data and sends full update.
2008-05-28Mantis#1398. Thank you kindly, cmickeyb for a patch that:Charles Krinke1-1/+11
small patch to encode and send the outbound_body parameter in an http request. this enables post messages to send a body
2008-05-28Formatting cleanup.Jeff Ames7-106/+106
2008-05-28Thank you, Grumly57 kindly for:Charles Krinke1-8/+12
This patch proposes a new function : osOpenRemoteDataChannel(key channeID) that allow to open an XMLRPC channel for remote_data event. The difference is that the channelID can be customized instead of being randomly generated.
2008-05-28Update svn properties. Fix inconsistent newlines.Jeff Ames1-187/+187
2008-05-27* Include prims.xml file in archiveJustin Clarke Casey2-5/+17
2008-05-27* Add .jp2 extension to archived texturesJustin Clarke Casey1-1/+1
2008-05-27* Write prim archives out as v7 tar files temporarily for testing purposes - ↵Justin Clarke Casey2-1/+186
not even gzipping yet! * Using hacked up code to create the correct tar archive headers - this stuff should really go away again before too long * No user functionality yet
2008-05-27* Added new InstallPlugin interface to ITerrainModule.Adam Frisby2-10/+22
* This is to allow other region modules to install Terrain Effects.
2008-05-27Thank you kindly, Melanie for a patch that adds:Charles Krinke1-0/+71
GetSerializationData() and CreateFromData() methods
2008-05-27* Implement asynchronous assets request for archivingJustin Clarke Casey1-116/+187
* No user functionality yet
2008-05-27fixes a CTB when IRCBridgeModule is not configured.Dr Scofield1-2/+2
2008-05-27cleaning up: coding style guidelines violation in RestPlugin.cs. Dr Scofield1-0/+23
adding support for enabled = true|false for IRCBridgeModule
2008-05-27I'm dropping the ISimChat interface as that has now been Dr Scofield2-3/+4
replaced by EventManager events. also, i've added instructions to README.txt about running runprebuild.sh and on how to report bugs. plus some minor fixes (dropping m_log statement left over from debugging llOwnerSay, nicer catch of exception in IRCBridgeModule
2008-05-26* Patch from jhurliman - Implements a binary search in the LLRAW exporter ↵Adam Frisby1-26/+44
which dramatically speeds up exports.
2008-05-26Thank you kindly, Melanie for a patch for script resetCharles Krinke1-0/+2
that creates the event handler chain ready to hook by script engines
2008-05-26This cleans up a merge mess from the earlier checkin and implements ↵Dr Scofield2-35/+28
llOwnerSay() via the newly created Scene.SimBroadcast() call.
2008-05-26Adding OnChatBroadcast event logic to EventManager providing Dr Scofield2-108/+149
a clean interface for Sim broadcasts. Added SimBroadcast support to ChatModule. Removing all code from IRCBridgeModule dealing with agent/client directly. Cleaning up ChatModule. Polishing IRC messages, adding support for "/me" (both directions).
2008-05-26* Break out baby archiving code into separate class ready for async asset ↵Justin Clarke Casey2-54/+118
requesting * No user functionality yet
2008-05-26* Extract and boil down necessary texture UUIDs for an archive of the scene ↵Justin Clarke Casey1-1/+14
prims * no user functionality yet
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames7-45/+45
2008-05-25* A hacky Top Scripts display. It isn't accurate as far as ms accounting, ↵Teravus Ovares1-9/+27
however you can use it to help find out what scripts are causing your simulator to cry. * Access it from the Estate tools/Debug tab.
2008-05-25Thank you kindly, Grumly57 for a patch to improveCharles Krinke1-5/+22
XMLRPCModule.cs: RemoteDataReply() and XMLRpcResponse()
2008-05-25* Adds Top Colliders when using ODE. Access it from the estate tools/debug tab.Teravus Ovares2-1/+44
2008-05-24* Refactor: Collapse some multiple remove object pathsJustin Clarke Casey1-1/+1
* Push some delete functionality into InnerScene to match what's already there for adding objects
2008-05-24* Refactor: Change previous commits Object methods to SceneObject methods ↵Justin Clarke Casey2-1/+7
instead, on the basis that this is less likely to cause confusion with c#'s base object type