aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Scripting (follow)
Commit message (Collapse)AuthorAgeFilesLines
* this is step 2 of 2 of the OpenSim.Region.Environment refactor.Dr Scofield2009-02-107-3253/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTHING has been deleted or moved off to forge at this point. what has happened is that OpenSim.Region.Environment.Modules has been split in two: - OpenSim.Region.CoreModules: all those modules that are either directly or indirectly referenced from other OpenSim packages, or that provide functionality that the OpenSim developer community considers core functionality: CoreModules/Agent/AssetTransaction CoreModules/Agent/Capabilities CoreModules/Agent/TextureDownload CoreModules/Agent/TextureSender CoreModules/Agent/TextureSender/Tests CoreModules/Agent/Xfer CoreModules/Avatar/AvatarFactory CoreModules/Avatar/Chat/ChatModule CoreModules/Avatar/Combat CoreModules/Avatar/Currency/SampleMoney CoreModules/Avatar/Dialog CoreModules/Avatar/Friends CoreModules/Avatar/Gestures CoreModules/Avatar/Groups CoreModules/Avatar/InstantMessage CoreModules/Avatar/Inventory CoreModules/Avatar/Inventory/Archiver CoreModules/Avatar/Inventory/Transfer CoreModules/Avatar/Lure CoreModules/Avatar/ObjectCaps CoreModules/Avatar/Profiles CoreModules/Communications/Local CoreModules/Communications/REST CoreModules/Framework/EventQueue CoreModules/Framework/InterfaceCommander CoreModules/Hypergrid CoreModules/InterGrid CoreModules/Scripting/DynamicTexture CoreModules/Scripting/EMailModules CoreModules/Scripting/HttpRequest CoreModules/Scripting/LoadImageURL CoreModules/Scripting/VectorRender CoreModules/Scripting/WorldComm CoreModules/Scripting/XMLRPC CoreModules/World/Archiver CoreModules/World/Archiver/Tests CoreModules/World/Estate CoreModules/World/Land CoreModules/World/Permissions CoreModules/World/Serialiser CoreModules/World/Sound CoreModules/World/Sun CoreModules/World/Terrain CoreModules/World/Terrain/DefaultEffects CoreModules/World/Terrain/DefaultEffects/bin CoreModules/World/Terrain/DefaultEffects/bin/Debug CoreModules/World/Terrain/Effects CoreModules/World/Terrain/FileLoaders CoreModules/World/Terrain/FloodBrushes CoreModules/World/Terrain/PaintBrushes CoreModules/World/Terrain/Tests CoreModules/World/Vegetation CoreModules/World/Wind CoreModules/World/WorldMap - OpenSim.Region.OptionalModules: all those modules that are not core modules: OptionalModules/Avatar/Chat/IRC-stuff OptionalModules/Avatar/Concierge OptionalModules/Avatar/Voice/AsterixVoice OptionalModules/Avatar/Voice/SIPVoice OptionalModules/ContentManagementSystem OptionalModules/Grid/Interregion OptionalModules/Python OptionalModules/SvnSerialiser OptionalModules/World/NPC OptionalModules/World/TreePopulator
* * minor: Apply second patch from ↵Justin Clarke Casey2009-02-062-28/+37
| | | | | | | | | | http://opensimulator.org/mantis/view.php?id=3089 * This adds more explanation for the new proxy settings in OpenSim.ini.example * Also does some formatting correction * I did some additional reformatting on top of that
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-067-140/+177
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* Thanks cmickyb for a patch (Mantis#3089) that adds support for proxy in http ↵Dahlia Trimble2009-02-062-0/+35
| | | | requests
* - add OpenSim.Framework.AssetMetadata class. AssetBase is now composed of itMike Mazur2009-02-041-10/+10
| | | | | - trim trailing whitespace
* [previous VectorRender patch was from: Robert SmartDr Scofield2009-02-021-1/+1
| | | | | | | | <SMARTROB@uk.ibm.com>] clean up.
* [patching previous patch and also taking the chance of fixing theDr Scofield2009-02-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | previous commit message] This patch reimplements the Draw method in the VectorRenderModule which is used to create dynamic textures. The previous version was limited to creating square dynamic textures, it also didnt allow for dynamically loading an image containing transparency except at 256x256. The extraParams string in such functions as osSetDynamicTextureData can now be passed a comma seperated string of name value pairs which set the width,height and alpha value of dynamic textures. e.g. "height:512,width:2048,alpha:255" Backward compatibility is still preserved so passing the old params of either a string integer "256" "512" will still work in the same fashion as will passing "setAlpha" on its own
* Merge branch 'vector' into OpenSimulator.orgDr Scofield2009-02-021-22/+141
|
* * Adds a synchronous jpeg decode for pre-caching purposesTeravus Ovares2009-01-231-0/+7
| | | | | * When the DynamicTextureModule creates a j2k image, pre-cache the decode so that it doesn't stall any client threads.
* * More friendly OpenJpeg error handling.Teravus Ovares2009-01-213-3/+35
| | | | | | * Often times now the only reason OpenJpeg doesn't work is because it requires Glibc 2.4 The error messages reflect that. * In J2kDecoder module, It stops trying to decode modules if it encounters a dllnotfound exception and instead sends a full resolution layer that causes the texture sender to only send the full resolution image. (big decrease in texture download speed, but it's better then nasty repeating error messages)
* Update svn properties, minor formatting cleanup.Jeff Ames2008-12-301-1/+1
|
* let you specify a hex number as the color in the vector renderingSean Dague2008-12-191-1/+11
| | | | | module. This expands the colors you can use.
* * Catch a WebException in the LoadImageURLModuleTeravus Ovares2008-12-181-33/+40
|
* Fix usage of reflection where it isn't necessary.Homer Horwitz2008-11-291-1/+1
|
* * Stop a non WebException in an XMLRPC request from bringing down the whole simJustin Clarke Casey2008-11-041-1/+1
|
* fixing real cause of #2445 & #2449: Position was <0, 0, 0> forDr Scofield2008-10-211-4/+4
| | | | | | | OSChatMessage coming from client.
* fixes #2445 & #2449. interim fix that will make listeners workDr Scofield2008-10-211-4/+12
| | | | | | | again. need to investigate why chat position is catastrophically off.
* cleaning up IRCBridgeModule to allow for configuration from in-world,Dr Scofield2008-10-201-42/+29
| | | | | | | | | | | | | | chat relaying via private channels, and old IRCBridgeModule behaviour. also cleaning up IRCBridgeModule's OpenSim.ini configuration variable names (still supporting "old" variable names). refactored IRCChatModule into IRCConnector and incorporating watchdog from IRCBridgeModule into IRCConnector. enabling ChatModule to be used as a super-class and utilizing it in ConciergeModule.
* Thanks cmickyb for a patch that enhances the IRC module.Dahlia Trimble2008-10-111-2/+17
| | | | | | See mantis #2379 for some useful scripts that work with this. Note that I added another configuration parameter in addition to the patch to allow for legacy behavior in the absence of new configuration settings.
* This changeset changes the way chat from client is routed: Dr Scofield2008-10-031-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | old way: each region module interested in chat from client had to - subscribe to scene.EventManager.OnNewClient - then in its OnNewClient delegate it would subscribe to client.OnChatFromViewer to capture chat messages coming new way: ChatModule is the only region module that uses the "old way" approach but is now forwarding all client chat via scene.EventManager.OnChatFromClient - each region module interested in chat from client now only subscribes to scene.EventManager.OnChatFromClient this not only simplifies code, but also allows us to substitute ChatModule with derived classes (ConciergeModule is going to be one example). Also, this changeset changes ChatFromViewer to ChatFromClient as it doesn't necessarily have to be a viewer that is a chat source. i've taken great care to only comment out those OnNewClient delegates that were only used for getting at the client chat --- hope it's not breaking anything.
* Update svn properties. Minor formatting cleanup. Fix some minor typos. ↵Jeff Ames2008-09-131-2/+2
| | | | Remove some old dead code.
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-067-146/+157
| | | | | | | * This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
* Formatting cleanup.Jeff Ames2008-08-182-30/+30
|
* From: Richard Alimi <ralimi@us.ibm.com>Dr Scofield2008-07-301-2/+12
| | | | | | | | | | | The following is a patch that causes the ensuing http_response event (after an llHTTPRequest) to include the HTTP status code returned from the server (if available). The patch also sets the body parameter for the http_response event to be set as the status description returned by the server.
* From: Richard Alimi <ralimi@us.ibm.com>Dr Scofield2008-07-301-0/+5
| | | | | | | The following is a patch that causes HTTP connections made by llHTTPRequest to be closed once the response is read.
* renaming the increasingly ill-named ChatFromViewerArgs to OSChatMessageDr Scofield2008-07-251-1/+1
|
* Update svn properties. Formatting cleanup. Remove a compiler warning.Jeff Ames2008-07-231-133/+133
|
* Mantis#1739. Thank you kindly, Grumly57 for a patch that:Charles Krinke2008-07-141-1/+7
| | | | | Implements X-SecondLife-* HTTP Headers for llHTTPRequest
* * Remove warningJustin Clarke Casey2008-07-121-1/+1
|
* Mantis#1681. Thank you kindly, Vytek for a patch that:Charles Krinke2008-07-121-8/+179
| | | | | Adds additional support for llEmail().
* Mantis#1127. Thank you kindly, Grumly57 for a patch that:Charles Krinke2008-07-091-1/+1
| | | | | Addresses HTTP_METHOD parameter does not work for POST requests.
* Copyright notices and formatting cleanup.Jeff Ames2008-07-061-12/+39
|
* Mantis#1658. Thank you, Melanie for a patch that:Charles Krinke2008-07-031-0/+90
| | | | | Adds IEmailModule and a module skelaton
* attempt to expire out old dynamic textures, so they don't grow forever.Sean Dague2008-06-301-2/+7
|
* more warnings to go.Dr Scofield2008-06-271-1/+1
|
* move along, nothing to see here. just a couple of lazy variables.Dr Scofield2008-06-271-1/+2
|
* revert 5134. Changing these bitmaps to 24bit just breaks things, and they ↵Sean Dague2008-06-182-2/+2
| | | | | | | | never display on the client.
* make neb happy. I found where we initialized the dynamic textures toSean Dague2008-06-182-2/+2
| | | | | | 32bit images and changed them to 24bit images.
* change the default drawing font from Times -> Arial, asSean Dague2008-06-181-4/+12
| | | | | | | | san serif fonts are a bit easier on the eyes on textures. Add a new "FontName" attribute that can be used to override the font type.
* tweak dynamic texture stuff after the meeting today. This shouldSean Dague2008-06-171-1/+7
| | | | | | | now preserve the bulk of the texture attributes, and force on full bright. Not tested yet, but shouldn't bother most people.
* Mantis#1460. Thank you, CMickeyb for a patch that addresses:Charles Krinke2008-06-051-10/+23
| | | | | | | | I'm getting an unhandled exception in openxmlrpcchannel during simulator initialization. I have two objects in different regions that open remote data channels in the state_entry event. It appears that the state_entry call is executing before the postinitialize method is called in xmlrpcmodule (the exception occurs because m_openChannels is not initialized).
* Mantis#1398. Thank you kindly, cmickeyb for a patch that:Charles Krinke2008-05-281-1/+11
| | | | | | small patch to encode and send the outbound_body parameter in an http request. this enables post messages to send a body
* Formatting cleanup.Jeff Ames2008-05-282-5/+5
|
* Thank you, Grumly57 kindly for:Charles Krinke2008-05-281-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.
* Thank you kindly, Melanie for a patch that adds:Charles Krinke2008-05-271-0/+71
| | | | | GetSerializationData() and CreateFromData() methods
* Thank you kindly, Grumly57 for a patch to improveCharles Krinke2008-05-251-5/+22
| | | | | XMLRPCModule.cs: RemoteDataReply() and XMLRpcResponse()
* changing more 'raw' HTTP status codes to OSHttpStatusCodes.Dr Scofield2008-05-221-2/+3
|
* * minor: Just a few documentation odds and endsJustin Clarke Casey2008-05-181-2/+9
|
* Formatting cleanup.Jeff Ames2008-05-164-42/+42
|
* * Removed 19 warningsTeravus Ovares2008-05-141-1/+1
|