aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Refactored Environment/Modules directory - modules now reside in their own ↵Adam Frisby2008-04-3078-16880/+8880
| | | | | | | | directory with any associated module-specific classes. * Each module directory is currently inside one of the following category folders: Agent (Anything relating to do with Client<->Server communications.), Avatar (Anything to do with the avatar or presence inworld), Framework (Classes modules can use), Grid (Grid traffic, new OGS2 grid comms), Scripting (Scripting functions, etc), World (The enrivonment/scene, IE Sun/Tree modules.) * This should be moved into a seperate project file.
* * Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares2008-04-301-0/+3
| | | | | | | Thanks A_Biondi and Melanie! * This builds but might not work. JustinCC will examine.. it may work out of the box.
* * Disabled IntergridModule until a Mono bug can be isolated.Adam Frisby2008-04-291-11/+18
|
* * One more attempted fix.Adam Frisby2008-04-291-1/+2
|
* * Made a change to InterGrid module to prevent duplicate registrations.Adam Frisby2008-04-292-8/+14
|
* * Implemented new InterRegion comms method in the form of InterregionModuleAdam Frisby2008-04-293-0/+225
| | | | | | * Interfaces and methods have been defined for basic operation, however a replacement grid module is required to share region URIs with neighbours for this module to work. * Tackling that next.
* Stuck an exception handler in the friends routine until I have time to debug ↵Teravus Ovares2008-04-291-4/+14
| | | | | | | it more seriously.(or someone else does). It prints a 'Unable to enumerate' message on the console.. so it won't be forgotten. It isn't critical data atm though.
* Committing Dee100's balance update patch with a few bug fixes and a twist. ↵Teravus Ovares2008-04-291-1/+27
| | | | Thanks Dee100!
* * Lash up mantis 1064 - nre thrown in LandObject.sendLandObjectOwners()Justin Clarke Casey2008-04-281-13/+36
| | | | | | | * From reading the code, the cause must be that a 'show objects on my parcel' is performed when there are objects belonging to more than 32 people * I'm not sure why there is a hardcoded 32 limit but I'm leaving it in place for now. I don't regard this mantis as resolved.
* * Added String(FileExtension) property to ITerrainLoader to allow us to ↵Adam Frisby2008-04-278-6/+46
| | | | | | | determine which file extension this loader is capable of handling. * Added ITerrainLoader import capability to Terrain Plugins module - this allows you to write new terrain format plugins without modifying the terrain module directly.
* * Committing Mantis #1061 - llRegionSay and llSetPrimitiveParams ↵Adam Frisby2008-04-261-20/+19
| | | | implementations. Thanks Melanie!
* replace hard tabs with 4 spaces to be consistant in the source.Sean Dague2008-04-243-278/+278
| | | | | | Please adjust your editors to not use hard tabs.
* * Fixed an annoying pop-up box when crossing borders.Teravus Ovares2008-04-231-2/+10
|
* * Patch from Melanie. Mantis 0001037: Add various internal plumbing to ↵Teravus Ovares2008-04-231-2/+119
| | | | | | | the example economy module, implements llSetPayPrice(), money() and llGiveMoney() in scripts. Thanks Melanie! * Moves module loading before the script engine so the script engine can pick up events from modules registering interfaces with scene.
* * Get rid of missing texture notification drop messages for now - obscuring ↵Justin Clarke Casey2008-04-231-3/+7
| | | | too many other debug messages.
* From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey2008-04-231-0/+3
| | | | | | Attached is a patch for adding the llGetSunDirection functionality. It was implemented by adding a parameter to estate settings for storing the sun position. The sun position is calculated and stored via the sun module everytime the client's sun position is updated. It was tested with several different srcipts on Linux and Windows
* doh, forgot that hg diffs don't do the adds correctly to svnSean Dague2008-04-221-0/+46
|
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-221-6/+4
| | | | | | | | | | | some exceptional code ;-) i've added TerrainException and have modified TerrainModule to now throw TerrainExceptions. cheers, dr scofield
* * Committing new terrain plugin effects system. Loads DLLs in /bin/Terrain/ ↵Adam Frisby2008-04-221-10/+73
| | | | | | | as terrain module extensions. Committing sample plugin library. * prebuild.xml changes.
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-211-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | the attached patch set is centered around RemoteAdminPlugin and focuses mainly on making it more robust (i.e. more parameter checking and better error reporting) but also we've re-implemented the LoadTerrain stuff that got disabled during the terrain code reworking: * missing PostInitialize() calls on region modules that were loaded for regions created via RemoteAdmin's CreateRegion XmlRpc call * re-implements RemoteAdmin's LoadTerrain XmlRpc call (probably lost during the TerrainModule rework) * adds lots more parameter checking and error reporting to RemoteAdmin * adds a read-only property to RegionApplicationBase so that we can access the CommsManager * adds Exceptions to TerrainModule so that we get better error case feedback (and can report more meaningful errors in turn) * adds a CheckForTerrainUpdate() call to TerrainModule.LoadFromFile() to make terrain changes effective * adds TryGetCurrentScene(LLUUID) to SceneManager so that we can retrieve Scenes not only by name but also by LLUUID cheers, dr scofield
* * Various refactorings.Adam Frisby2008-04-212-18/+36
|
* * Formatted ExportSerialiserModule and SvnBackupModuleAdam Frisby2008-04-216-94/+112
| | | | | * Added a form of GZip compression support to object.xml files produced by exportserialiser. Will look towards standard GZip support. File compression seems to be highly worthwhile reducing a 1.5mb sim state to 62kb.
* Update svn properties.Jeff Ames2008-04-211-7/+7
|
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-2129-124/+124
| | | | (this took a while to run).
* * Terrain Module code has been reformatted to comply with guidelines.Adam Frisby2008-04-2135-591/+678
| | | | | * Fixed a variety of code quality issues. (Yes, I've found ReSharper.)
* * Written a improved self-contained version of the XML Object Serialiser for ↵Adam Frisby2008-04-211-1/+47
| | | | | | | | the ExportSerialisationModule. * This now outputs properly indented XML, that is sorted before construction. This produces a file which proper .diffs can be generated from - the end result being smaller more compact revisions when saving to SVN. * Files are a little heavy still however, compression looks like a good method for packing sim-states for transport outside of SVN. Zip seems to be a good candidate and is on the TODO.
* * Re-Fixed caps Teravus Ovares2008-04-173-229/+171
| | | | | * This fixes chi11ken's/OpenViewer's libsl cap issue.
* * Added "svn load" command to correspond "svn save". Will grab the latest ↵Adam Frisby2008-04-171-1/+1
| | | | | | | revision. * TODO: Specific revision support.
* * Added ITerrainModule interface to Terrain Module, and registered ↵Adam Frisby2008-04-172-1/+11
| | | | accordingly in Scene.
* * Added a directory for the SVN module. More about to come.* SVNBackupModuleAdam Frisby2008-04-171-1/+1
| | | | | | | | | | * See OpenSim.ini.example settings for how to use * Only compatible with svn:// and http:// authentication for the moment (and only using simple authentication). SSL/SSH key support is supported by the library used (SvnDotNet), but is not yet supported in OpenSim. * Use the command "svn save" to make a copy of your regions to SVN. Presently this is not an automatic process, but such a feature is on the todo list. * It will in your repository create a subdirectory for each region with the regions UUID, inside there it will create a 'terrain load' compatible 'heightmap.r32', and a load-xml2 compatible 'objects.xml' plus information files. * Untested on Linux, some compatibility work may be needed by Linux peoples. The dependencies will be the same as for SvnDotNet which is supposedly mono-compatible.
* Update svn properties. Add copyright info to some source files.Jeff Ames2008-04-177-15/+202
|
* * Missed a file while committing.Adam Frisby2008-04-171-0/+8
|
* * Committing first version of SVN Backup ModuleAdam Frisby2008-04-171-6/+5
| | | | | | This is a module which allows you to periodically export a serialised version of your region to a SVN repository and store it there. It is still a work in progress and is currently disabled and incomplete, but some of the functionality is demonstratable. * Enjoy.
* * Patch from ChrisDown to fix odd results when using landmarks. Thanks ↵Teravus Ovares2008-04-171-2/+2
| | | | | | | Chris! (Tweaked slightly so avatar don't end up underground). * Removed some testing notices I had in there that were obnoxious.
* * Implements 'Set Home to Here' Teravus Ovares2008-04-171-8/+12
| | | | | | | * Implements 'Teleport Home' * User Server has to be updated for it to save your home in grid mode * home position accuracy is in int because the grid comms ExpectUser method tries to convert to Uint and crashes if it gets a float. Added a convert to decimal in ExpectUser but to avoid a breaking change with old revisions, kept the save value in int for now. Eventually it needs to be a float, but lets release another incremental version before doing that.
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-151-0/+288
| | | | | | | | | | | | | | | | | | | | | | | | ansgar and i have been working on an asterisk voice module that will allow us to couple opensim with an asterisk VoIP gateway. the patch below consists of * AsteriskVoiceModule region module: alternative to the plain-vanilla VoiceModule, will make XmlRpc calls out to an asterisk-opensim frontend * asterisk-opensim.py frontend, living in share/python/asterisk, takes XmlRpc calls from the AsteriskVoiceModule * account_update: to update/create a new SIP account (on ProvisionVoiceAccountRequest) * region_update: to update/create a new "region" conference call (on ParcelVoiceInfo) * a asterisk-opensim test client, living in share/python/asterisk, to exercise astersik-opensim.py this still does not give us voice in OpenSim, but it's another step on this path...
* Update svn properties.Jeff Ames2008-04-154-201/+201
|
* * Added support for serialising objects to ExportSerialisationModule via ↵Adam Frisby2008-04-153-10/+23
| | | | | | | | SerialiseObjects.cs * Cleaned up using tags on SerialiseTerrain.cs * Minor tweaks to ExportSerialisationModule.cs
* * Fixes an issue with the BaseHttpServer in LinuxTeravus Ovares2008-04-152-3/+47
| | | | | | | | * Fixes an estate naming issue * Fixes a land issue with the landobject not reporting the proper parcel prim. * A few other tweaks.
* * Committing shell of a whole-region serialiser. This is not complete and ↵Adam Frisby2008-04-153-0/+188
| | | | will be worked on more over the next few days. Undocumented/trusted. Use at own risk, etc etc.
* * Quick patch before I start on a bigger projectAdam Frisby2008-04-151-7/+12
| | | | | | * Renamed ITerrainTemp to IMapImageGenerator * Renamed WriteJpegImage to WriteJpeg2000Image to better reflect it's function.
* * Fixed a few warnings.Teravus Ovares2008-04-144-4/+242
| | | | | | | * Added license info to a few files it was missing from. * Fleshed out the landbuy interfaces * If you add '-helperuri http://127.0.0.1:9000/' to your list of parameters you tell the client to use when you start it up you can transfer ownership of parcels now in standalone. Structured gridmode requires a lot more work, see the documentation in the example money module. The example money module is not secure especially in standalone mode.
* make it so the IRC bridge only relays channel 0 messagesSean Dague2008-04-141-7/+10
| | | | | | not all of them (like it was doing before)
* #952 againTeravus Ovares2008-04-141-7/+21
|
* Fix for mantis 952Teravus Ovares2008-04-141-23/+30
|
* * Fix a bug in the friends module that causes a friend not to appear online ↵Teravus Ovares2008-04-132-15/+872
| | | | | | | | when they were. * A few things for testing. * This makes a modification to the region registration with the grid server so that the region can send it a chosen password to identify itself. It will not cause any errors, if either one are not updated.
* * Added some comments to terrain module.Adam Frisby2008-04-132-3/+57
| | | | | * Fixed a range issue in the GenericSystemDrawing saving mechanism.
* * fix bug 935Teravus Ovares2008-04-111-4/+7
|
* * Updated MapImageModule to support primitives showing on the world map ↵Adam Frisby2008-04-111-1/+43
| | | | image. As MapImageModule is of unknown use, this may or may not be reflected on the world map. See the ShadeBuildings function in MapImageModule for reference.
* * With Grid Comms up in the air.. I decided have the friends module update ↵Teravus Ovares2008-04-102-0/+158
| | | | | | | | you when your friends come online if they're at least a child agent on the sim. offline status works the same also. So does Instant Message. * This is until Grid Comms matures a bit more on this. * This should also work in Standalone as it uses the IUserData interface.