aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-03-07Update svn properties, minor formatting cleanup.Jeff Ames1-14/+14
2009-03-07Add copyright headers.Jeff Ames13-13/+364
2009-03-07Update svn properties.Jeff Ames13-855/+855
2009-03-07* Fixes mantis: #3241Teravus Ovares1-2/+13
* Uses 'mouselook' or left mouse button down, to determine when to use the camera's UP axis to determine the direction of movement. * We crouch-slide no more.
2009-03-07* Added some limits to the maximum force applied per second by ↵Teravus Ovares2-2/+27
llMoveToTarget. Currently, it's 350 times the mass in newtons applied per second, maximum.
2009-03-06Fixes Mantis #3260. Thank you kindly, MCortez for a patch that:Charles Krinke12-18/+238
llSetHoverHeight() should not clamp the x/y position of an object the way MoveTo does, and it should recalculate the absolute height to hover at as an object moves to reflect the current ground/water height under it. Correctly implementing required adjusting the Physics interfaces and implementing at the physics plug-in level. The attached is a patch that correctly implements llSetHoverHeight() including updates to the ODE physics plug-in.
2009-03-06* minor: remove some mono compiler warningsJustin Clarke Casey3-6/+5
2009-03-06* refactor: Remove GetLandOwner function from SceneJustin Clarke Casey3-42/+34
* Simplify since the land is never null
2009-03-06* Improve memory usage when writing OARsJustin Clarke Casey6-76/+68
* This should make saving large OARs a somewhat better experience * However, the problem where saving an archive pulls large numbers of assets into the asset cache isn't yet resolved * This patch also removes lots of archive writing spam that crept in
2009-03-05* Fixing a few mass calculation errors suggested by jhurlimanTeravus Ovares1-2/+2
2009-03-05* Add more status information when an oar is being savedJustin Clarke Casey2-0/+23
* Among other messages, a log entry is posted for every 50 assets added to the archive
2009-03-05* Replace Scene.GetLandHeight() with a straight query to Scene.Heightmap ↵Justin Clarke Casey5-20/+13
(which is used in other contexts)
2009-03-05* refactor: move media and music url setting from scene into LandObjectJustin Clarke Casey5-20/+38
2009-03-05* simplify media and music url setting since we never get back a null land ↵Justin Clarke Casey3-31/+22
object
2009-03-05* Replace some string to byte conversions for object/item name/description ↵Justin Clarke Casey5-26/+33
fields with the LLUtil function that prevents the max string size from being breached
2009-03-05* remove now unused serialization codeJustin Clarke Casey4-602/+5
2009-03-05Fixes Mantis #3255. Thank you kindly, MCortez, for a patch that:Charles Krinke3-15/+41
Changes to IWindModule interface: Change from assuming a single array of 256 Vector2 values to a lookup function that takes region x, y, z and returns a Vector3 * Changed llWind() to use new lookup method of IWindModule * Moved logic for determining the wind at a given point in the data array from llWind() to the Wind Module itself.
2009-03-05Fixes Mantis #3194. Thank you kindly, Godfrey for a patch that:Charles Krinke1-1/+19
fixes llSetLinkPrimitiveParams() - PRIM_ROTATION rotates the prim containing the script, rather than the specified child prim
2009-03-05Fixes Mantis #3253. Thank you kindly, Godfrey, for a patch that:Charles Krinke1-1/+1
Corrects the incomplete implementation of llXorBase64StringsCorrect() so that it returns the proper reversible result.
2009-03-05MRM Scripting ChangesAdam Frisby3-8/+8
* Renames MiniRegionModule to MRMModule to make it more distinct from the actual Mini Region Module[s] executed in Scene. * Renames MiniRegionModuleBase to MRMBase for convenience. MRM's need to be adjusted to inherit from MRMBase.
2009-03-05* Implements a number of members on SOGObject for use with the MRM Script ↵Adam Frisby2-15/+166
Engine API. * It's lag-tacular! :D
2009-03-04* Fleshed out the MRM Module a little.Adam Frisby5-44/+84
* Please don't use this yet, it represents a very heavy security risk if you enable it.
2009-03-04* For now, restore file extension for default oar name I accidentally ↵Justin Clarke Casey1-1/+1
removed on the last commit
2009-03-04* Add the abilty to load and save iar item nodes where folders have ↵Justin Clarke Casey6-49/+161
identical names
2009-03-04* Whoops. Left MiniModule enabled to anyone. (potential security risk). ↵Adam Frisby1-0/+3
Disabled - edit code to load.
2009-03-04* More work on MiniRegionModule module.Adam Frisby5-0/+275
2009-03-04* Add gnu tar format long file name support to tar reading and writing.Justin Clarke Casey3-85/+126
* Not actually tested yet though existing code which doesn't require long file names looks fine
2009-03-04IObjectFace needs to be public to compile.Mike Mazur1-1/+1
2009-03-04* More work on MiniRegionModule module.Adam Frisby8-3/+254
2009-03-04* Implementing some interfaces for aformentioned script engine. Ignore this.Adam Frisby4-0/+136
2009-03-03forgotten filesMW1-2/+2
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW2-6/+25
There are two region modules in there LLStandaloneLoginModule (for standalone mode) and LLProxyLoginModule (for grid mode which just handles incoming expect_user and logoff_user messages from the remote login server) Changed OpenSim.Framework.Communications.Tests.LoginServiceTests to use the LLStandaloneLoginService (from the LLStandaloneLoginModule) rather than LocalLoginService. Really these login tests should most likely be somewhere else as they are testing specific implementations of login services. Commented out the old LocalLoginService as its no longer used, but want to check there are no problems before it gets deleted.
2009-03-03Refactoring of CreateCommsManagerPlugin.MW1-34/+0
Plus some general cleanup of a few other files (deleting excess blank lines etc)
2009-03-02Renamed OpenSimBase m_autoCreateLindenStack to m_autoCreateClientStackMW1-4/+4
2009-03-02Moved the SetupScene methods from RegionApplicationBase to OpenSimBase [Do ↵MW2-95/+99
we really still need RegionApplicationBase?] Added a flag (bool m_autoCreateLindenStack = true) which says if the ClientStack will be autocreated and initialised when creating regions. This helps with moving ClientStacks to Region modules. Currently this flag is hardcoded to true, as it is only for testing at the moment, so you need to change the value in the code if you want to turn off auto creating.
2009-03-02Changed IClientNetworkServer.AddScene method from void AddScene(Scene x) to ↵MW2-3/+2
void AddScene(IScene x). As there should be no need for the client view to have a reference to Scene. IScene should be all it needs.
2009-03-02Removed the commented out InitialiseStandaloneServices and ↵MW2-103/+0
InitialiseGridServices (which are now preformed in CreateCommsManagerPlugin) methods from OpenSimBase and HGOpenSimNode. As if we decided to swap back to the old methods we can always re-add them, rather than leave them commented out.
2009-03-02After another heroic and bloody battle, OpenSim Dino Expedition 1, killed ↵MW4-40/+0
off OsSetParcelMediaTime, which was only ever added for testing. And all the logic code of it has been commented out for a long time.
2009-03-02As part of a dinosaur hunting expedition, IScenePresenceBody.cs was ↵MW1-37/+0
terminated. The expedition leader, MW, believes it never lead a meaningful life, and is sure it hasn't contributed anything in the last 500,000 years (or 2 years).
2009-02-28Changed it so only .ini file types are loaded from the (optional) config ↵MW1-2/+5
directory rather all files types in that folder.
2009-02-27Added support for reading ini files from a (optional) config folder. This ↵MW2-1/+15
allows the spliting up of opensim.ini into multiple ini files. The ini files in this folder are loaded after the masterini file (if that is set) and before opensim.ini. The default folder it looks for and searches is "bin\config", but that can be set by using the command arg "-inidirectory=<path>" (path is local to bin\) when starting up opensim.exe.
2009-02-26Added IRegionCreator interface that all ApplicationPlugins that are creators ↵MW1-1/+6
of Scenes should implement and register with the ApplicationRegistry.StackModuleInterface<>(); So that other plugins can attach to their OnNewRegionCreated event. Made some changes to IRegistryCore and RegistryCore so they support "Stacked" interfaces.
2009-02-26This adds a new osGetAgentIP function with threat level set to High. ItSean Dague3-0/+38
isn't tested, but it doesn't break anything else. The reason for this function is to let in world tools be used to coordiante out of world network services that need access to client ip addresses.
2009-02-26Moved the Initialisation of the CommunicationsManager to a ApplicationPlugin. MW2-101/+98
Also in that plugin it registers the IUserService with all the Scenes (as they are created). So now we can start changing over all uses of IUserService, that currently access it from the CommunicationsManager to accessing it from the Scene.RequestModuleInterface call. Once that is done we can move the UserService creation out to its own plugin and remove all references to it from the CommunicationsManager. Then we can take the next CommunicationsManager interface and repeat.
2009-02-26* Update ScenePresenceTests to reflect current REST communication workflow.Sean Dague1-11/+27
* Fixed an issue with AssetCache where it would break unit tests randomly. From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
2009-02-26* Apply http://opensimulator.org/mantis/view.php?id=3191Justin Clarke Casey1-5/+33
* Make load/save oar and load/save xml2 behave a little better when there is an io problem * Thanks dslake
2009-02-26Plumb in the RetrieveInstantMessages event that is sent by the viewerMelanie Thielker3-0/+14
when it is ready to receive offline IM
2009-02-26Changed the type of the ApplicationRegistry member from RegistryCore to ↵MW1-2/+2
IRegistryCore
2009-02-26Added IRegistryCore and RegistryCore to OpenSim.Framework.MW4-44/+74
Added a ApplicationRegistry to OpenSimBase. Changed LoadRegionsPlugin so it registers itself to that application registry. Added a event to LoadRegionsPlugin, that is triggered when it creates a new scene ,although maybe this event should actually be in opensimBase incase other plugins are creating regions (like the RemoteAdminPlugin).
2009-02-26Attempt to fix the "region starts but doesn't load anything" issueSean Dague1-0/+6