aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * Adds llSetStatus(STATUS_ROTATE_X | STATUS_ROTATE_Y | STATUS_ROTATE_Z,TF)Teravus Ovares2008-04-2311-12/+252
| | | | | | | | * Currently if you apply that to only one or two axis you get unpredictable and sometimes explosive results. * Three axis works well enough to play with it anyway. More work is needed here. * Fixed an incorrectly named method in ODE.NET
* Two small changes:Sean Dague2008-04-231-2/+15
| | | | | | | 1. add addin-db-001 to the delete list 2. allow for connection strings for data sources in the config file
* Thank you kindly, Tyre for :Charles Krinke2008-04-231-10/+16
| | | | | | | | | | | | | | Commands with arguments enclosed in Double quotation marks (e.g. filenames or objects with embedded blanks) should be parsed correctly. e.g.: console command "edit-scale" don't accept prim names with embedded blanks edit-scale Prim 20x20x20 20 20 20 Region# : edit-scale "Prim 20x20x20" 20 20 20 Region# : edit-scale Prim20x20x20 20 20 20 Searching for Primitive: 'Prim20x20x20' Edited scale of Primitive: Prim20x20x20 Region# :
* * Patch for #973 - Object Rez from Inventory ignores permissions - Thanks ↵Adam Frisby2008-04-234-11/+126
| | | | tglion!
* * Patch #1026 - llDialog support -- Thanks Melanie!Adam Frisby2008-04-234-10/+92
|
* * Fix for mantis #1025 - Region always reports that location is unavailable. ↵Adam Frisby2008-04-231-2/+3
| | | | Thanks Lulurun.
* * Applying Mantis #1022 - Thanks Melanie!Adam Frisby2008-04-231-2/+11
|
* * Applying Mantis #1021 (llStartAnimation/llStopAnimation) - Thanks Melanie!Adam Frisby2008-04-233-17/+216
|
* * Applying Mantis #1020 (Animations) - Thanks Melanie.Adam Frisby2008-04-238-80/+176
|
* * Fix mantis #842 - folders which are created but left named "New Folder" in ↵Justin Clarke Casey2008-04-231-1/+14
| | | | places other than directly under "My Inventory" should now be stored
* * Removing old libTerrainBSD and associated Plugin & Project.Adam Frisby2008-04-2328-5151/+0
| | | | | * Updated prebuild.xml accordingly.
* * Get rid of missing texture notification drop messages for now - obscuring ↵Justin Clarke Casey2008-04-231-3/+7
| | | | too many other debug messages.
* From: Dr Schofield <hud@zurich.ibm.com>Justin Clarke Casey2008-04-231-5/+15
| | | | | | | | | the attached patch fixes http://opensimulator.org/mantis/view.php?id=936 aka load-xml/load-xml2 crashing. problem lies with basic physics not creating physics actors. the solution was already present in SceneObjectPart.cs.
* From: Kurt Taylor <krtaylor@us.ibm.com>Justin Clarke Casey2008-04-233-2/+27
| | | | | | 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
* Update svn properties.Jeff Ames2008-04-231-79/+79
|
* * Add folders and items locking in external manipulations of ↵Justin Clarke Casey2008-04-221-20/+35
| | | | | | | | InventoryFolderImpl carried out by CachedUserInfo * These will do temporarily pending refactoring
* * Add DeleteAllContents() method to InventoryFolderImpl - not yet used but ↵Justin Clarke Casey2008-04-221-39/+109
| | | | | | | | will be soon * Add locking to InventoryFolderImpl class - need more though.
* doh, forgot that hg diffs don't do the adds correctly to svnSean Dague2008-04-221-0/+46
|
* * Extend functionality to better handle delayed inventory service transfers ↵Justin Clarke Casey2008-04-221-9/+30
| | | | | | | | to create folder, move folder and purge folder. * Old 1.18 get folder functionality requires a little more consideration
* 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
* * Replace previous specific inventory callback code with generic alternativeJustin Clarke Casey2008-04-222-30/+40
|
* * Allow folder renaming to complete after an agent inventory has been ↵Justin Clarke Casey2008-04-224-10/+96
| | | | | | | | | received by a region from the inventory service * This replaces the old behaviour of failing straight away, which could cause lost updates if the inventory service was slow in responding * This is the first baby step to making all inventory requests behave this way, to reduce inventory lossage
* * Implements llScriptDangerTeravus Ovares2008-04-224-10/+44
| | | | | * Made the scene's scriptDanger method more generic so both the llScriptDanger method and the Script engine method use the same private method.
* * Implemented NoScript areas (without loosing script state).Teravus Ovares2008-04-222-9/+72
|
* * Patch from Mic Bowman(cmickeyb) that implements llUnsit. Thanks Mic!Teravus Ovares2008-04-221-1/+38
| | | | | | | * I expanded upon his patch just a bit to incorporate the following. * if the avatar is sitting on this object, then we can unsit them. * If the object owner also owns the parcel or if the land is group owned and the object is group owned by the same group or if the object is owned by a person with estate access, then we can unsit them.
* * Committing new terrain plugin effects system. Loads DLLs in /bin/Terrain/ ↵Adam Frisby2008-04-222-10/+153
| | | | | | | as terrain module extensions. Committing sample plugin library. * prebuild.xml changes.
* * Added missing reference to OpenSim.Framework.Communications to ↵Adam Frisby2008-04-211-602/+602
| | | | RemoteAdminPlugin to fix a compile error introduced by the Radmin patch.
* * Various compiler warning cleanups.Adam Frisby2008-04-213-13/+13
|
* From: Dr Scofield <hud@zurich.ibm.com>Sean Dague2008-04-218-68/+170
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-217-163/+184
| | | | | * 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
|
* * Committing fix for previous build breakage. Sorry!Adam Frisby2008-04-211-2/+2
| | | | | * Committing namespace/usings fixes for ThirdParty directory, missed in previous commit.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-21306-1298/+1003
| | | | (this took a while to run).
* * Terrain Module code has been reformatted to comply with guidelines.Adam Frisby2008-04-2136-600/+682
| | | | | * 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.
* * Added support for periodic autosaves - added to SvnBackupModule. Will ↵Adam Frisby2008-04-211-8/+30
| | | | | | | | cause a SVN revision to be saved every X minutes. (Default = 15) * Added 'Autosave' options to OpenSim.ini.Example * Added 'ImportOnStartup' option to OpenSim.ini.example
* * Extra log line to notify the user console when a new user inventory ↵Justin Clarke Casey2008-04-201-0/+4
| | | | skeleton has been successfully created.
* * Remove user profile from cache when they log out from a region.Justin Clarke Casey2008-04-204-3/+28
| | | | | | | * A much more significant fix is required to clean up the cache when a user moves out of a region, but really better handling of delayed inventory cache updates needs to be written first, and possibly better affinity to cut down agent inventory requests when the move is between two regions hosted on the same server.
* * Tweak inventory login failure message to point to the region owner as ↵Justin Clarke Casey2008-04-202-3/+3
| | | | first point of call rather than the grid owner
* * Change user inventory create from explicit 'create user' command on the ↵Justin Clarke Casey2008-04-202-11/+34
| | | | | | | | console from sync to async * Catch more error conditions and provide more messages when things go wrong
* * Change lazy user inventory creation on first login to synchronous rather ↵Justin Clarke Casey2008-04-202-16/+21
| | | | | | | | than async. * Add more error checking so that we don't proceed if there has been a problem with inventory retrieval
* * On grid mode, if the inventory service is responding but returning an ↵Justin Clarke Casey2008-04-202-22/+6
| | | | | | | | empty response to a whole agent inventory request, then post an inventory login failure message. IMO, this is better than allowing the agent to login with an apparantly blank inventory.
* Removed some script engine noise from consoleTedd Hansen2008-04-204-8/+8
|
* Moved script engine os* commands to OSSL_BuilIn_Commands.cs and ↵Tedd Hansen2008-04-204-324/+340
| | | | OSSL_BuilIn_Commands_Interface.cs where they belong.
* * Fixed up event discovery regexes to work with a specific string format m#1012Teravus Ovares2008-04-201-2/+2
|
* * Added some more fixes, refactored SVNModule slightly.Adam Frisby2008-04-201-12/+31
|
* * Added support for new "svn load-region <region name> [svn revision]" ↵Adam Frisby2008-04-201-0/+44
| | | | command to SVN Backup Module.
* * Updates LSL2CS converterTeravus Ovares2008-04-208-4/+358
| | | | | | | | | * All objects are not touchable by default now * When a script listens for one of the touch events in the state, an object becomes touchable. * All LSL scripts report which events they consume now ** This uses semi-complicated Regex to discover the events, stick them in a dictionary, and then write a method call into each script state's state_entry() event. ** Tedd may figure out a better way to do this in the future. For now, this works for LSL.
* * Added experimental "svn load <revision>" command to allow you to load a ↵Adam Frisby2008-04-201-7/+38
| | | | region from a specified SVN revision. Potentially useful for rollbacks.