aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* BulletSim: add code to experimentally use asset hull data.Robert Adams2013-05-211-0/+1
| | | | Default to 'off' as it needs debugging.
* Add regression test for offer, accept and subsequent receiver delete of an ↵Justin Clark-Casey (justincc)2013-04-291-0/+1
| | | | item offered via instant message.
* Small fix to prebuild xml for building with mono toolsBlueWall2013-04-201-1/+1
|
* Initial experimental support for materials-capable viewers. This is in a ↵dahlia2013-04-181-0/+1
| | | | very early stage and this module is disabled by default and should only be used by developers for testing as this module could cause data corruption and/or viewer crashes. No materials are persisted yet.
* Added missing functionality (mainly custom headers) to llHTTPRequest.Kevin Cozens2013-03-291-0/+1
|
* Finally remove the 'REST' ApplicationPlugins code which has been ↵Justin Clark-Casey (justincc)2013-03-151-115/+0
| | | | non-functional and largely commented out for many years.
* Make it possible to chain another asset service underneath the ↵Justin Clark-Casey (justincc)2013-03-151-0/+1
| | | | | | | | de-duplicating XAssetService. This makes it possible to use the dedupliicating service without needing to migrate all the existing asset data beforehand. Currently controlled by a ChainedServiceModule setting in [AssetService] (e.g. ChainedServiceModule = "OpenSim.Services.AssetService.dll:AssetService") Not yet ready for use.
* Add code for testing event queue messages recevied on region cross.Justin Clark-Casey (justincc)2013-03-061-0/+1
| | | | This is currently disabled pending an improvement in the test code to properly add avatars when an event queue module is present.
* Add missing prebuild.xml dependency for System.Action2<t1,t2> in recent ↵Robert Adams2013-02-281-0/+1
| | | | | | additions to ScriptEngine tests. Compiles some places but not others.
* minor: Remove unnecessary very old System.Net reference in ↵Justin Clark-Casey (justincc)2013-02-261-1/+0
| | | | OpenSim.Region.ScriptEngine.Shared
* Add regression test for llRequestUrl()Justin Clark-Casey (justincc)2013-02-261-0/+2
|
* This should fix the build fail. Fingers crossed.Diva Canto2013-02-191-1/+1
|
* First commit of Diva Groups. The Data bits went to OpenSim.Data core, the ↵Diva Canto2013-02-191-0/+48
| | | | rest to Addons.Groups.dll.
* Donating Diva OfflineIM as an addon in a single dll, OpenSim.Addons.OpenSim.dllDiva Canto2013-02-181-0/+50
|
* * Adds Websocket support to baseHttpServer and IHttpServer.cs . This ↵teravus2013-02-071-43/+2
|\ | | | | | | allows modules to set up a websocket server that websocket clients can connect to. An example module is in OptionalModules/Example/WebSocketEchoTest/WebSocketEchoModule.cs
| * Merge branch 'dynamic-attributes2'Justin Clark-Casey (justincc)2013-02-051-0/+1
| |\
| | * Added unit tests for Dynamic AttributesOren Hurvitz2013-01-251-0/+1
| | |
* | | Commit 1 in of this branch feature. This is one of many...teravus2013-02-031-0/+45
|/ /
* | BulletSim: first unit test: vehicle angular attractionRobert Adams2013-01-281-0/+2
| |
* | BulletSim: reorder dependencies for tests and specify path for meshing dll ↵Robert Adams2013-01-271-3/+4
| | | | | | | | since it is placed in the Physics directory
* | BulletSim: fix reference path for BulletSim tests in prebuild.xmlRobert Adams2013-01-271-1/+1
| |
* | BulletSim: add framework for BulletSim unit tests. No tests yet.Robert Adams2013-01-271-0/+31
|/
* Add basic JsonCreateStore() regression testJustin Clark-Casey (justincc)2013-01-251-2/+5
|
* Merge branch 'master' into coopterminationJustin Clark-Casey (justincc)2013-01-241-34/+2
|\
| * This updates prebuild to remove BulletSimN, implements the BulletSim API in ↵teravus2013-01-201-34/+0
| | | | | | | | BulletSPlugin using the BulletXNA Bullet physics engine. It also updates the BulletXNA library to be compatible with the changes. OpenSimDefaults has been updated to describe how to switch engines and terrain implementations.
| * * Allow unsafe code with BulletSimteravus2013-01-201-0/+2
| |
* | If ScriptStopStrategy hasn't been set to co-op in [XEngine] config, then ↵Justin Clark-Casey (justincc)2013-01-231-0/+1
| | | | | | | | | | | | | | | | | | continue to generate C# that is functionality identical to historical generation This is to eliminate disruption until co-op termination has been well-tested. In non co-op mode, XEngine will continue to load DLLs of the existing Script class and the new XEngineScript class. Moving to co-op mode still requires existing script DLL deletion to force recompilation, either manually or by setting DeleteScriptsOnStartup = true for one run. This change also means that scripts which fail to initialize do not still show up as running scripts.
* | Implement non-wait co-operative termination of scripts for XEngine in ↵Justin Clark-Casey (justincc)2013-01-171-0/+36
|/ | | | | | | | | | | | | addition to termination on wait. This involves inserting opensim_reserved_CheckForCoopTermination() calls in lsl -> c# translation at any place where the script could be in a loop with no wait calls. These places are for, while, do-while, label, user function call and manual event function call. Call goes through to an XEngineScriptBase which extends ScriptBase. IEngine is extended to supply necessary engine-specific parent class references and constructor parameters to Compiler. Unfortunately, since XEngineScriptBase has to be passed WaitHandle in its constructor, older compiled scripts will fail to load with an error on the OpenSim console. Such scripts will need to be recompiled, either by removing all *.dll files from the bin/ScriptEngines/<region-id> or by setting DeleteScriptsOnStartup = true in [XEngine] for one run. Automatic recompilation may be implemented in a later commit. This feature should not yet be used, default remains termination with Thread.Abort() which will work as normal once scripts are recompiled.
* Implement co-operative script termination if termination comes during a ↵Justin Clark-Casey (justincc)2013-01-161-1/+4
| | | | | | | | | | script wait event (llSleep(), etc.) This makes use of EventWaitHandles since various web references indicate that Thread.Interrupt() can also cause runtime instability. If co-op termination is enabled, then termination sets the wait handle instead of waiting for a timeout before possibly aborting the thread. This allows the script to cleanly terminate if it's in a llSleep/LL function delay or the next time it enters such a wait without any timeout period. Co-op termination is not yet testable since checking for termination request within loops that never trigger a wait is not yet implemented. This commit, unlike 1b5c41c, passes the wait handle as an extra parameter through IScript.Initialize() instead of passing IScriptInstance itself.
* Revert "Implement co-operative script termination if termination comes ↵Justin Clark-Casey (justincc)2013-01-161-4/+1
| | | | | | | | during a script wait event (llSleep(), etc.)" Doing this as a favour to Melanie. This will be back with passing the wait handles directly to the api. This reverts commit 1b5c41c14ad11325be249ea1cce3c65d4d6a89be.
* Implement co-operative script termination if termination comes during a ↵Justin Clark-Casey (justincc)2013-01-161-1/+4
| | | | | | | | | script wait event (llSleep(), etc.) This makes use of EventWaitHandles since various web references indicate that Thread.Interrupt() can also cause runtime instability. If co-op termination is enabled, then termination sets the wait handle instead of waiting for a timeout before possibly aborting the thread. This allows the script to cleanly terminate if it's in a llSleep/LL function delay or the next time it enters such a wait without any timeout period. Co-op termination is not yet testable since checking for termination request within loops that never trigger a wait is not yet implemented.
* Instead of passing separate engine, part and item components to script APIs, ↵Justin Clark-Casey (justincc)2013-01-151-0/+1
| | | | | | | | pass down IScriptInstance instead. This is to allow the future co-operative script thread terminate feature to detect and act upon termination requests. This splits the assembly and state loading out from the ScriptInstance() constructor to a separate Load() method in order to facilititate continued script logic regression testing.
* BulletSim: first round of conversion from direct BulletSimAPI interfacing by ↵Robert Adams2012-12-311-0/+1
| | | | BulletSim core to using the BulletSimAPITemplate. Physical object creation and destruction first.
* * Initial commit of BulletSimN (BulletSNPlugin). Purely C# implementation ↵teravus2012-12-231-0/+34
| | | | of BulletSim. This is designed to be /as close as possible/ to the BulletSim plugin while still being entirely in the managed space to make keeping it up to date easy as possible (no thinking work). This implementation is /slower/ then the c++ version just because it's fully managed, so it's not appropriate for huge sims, but it will run small ones OK. At the moment, it supports all known features of BulletSim. Think of it like.. POS but everything works. To use this plugin, set the physics plugin to BulletSimN.
* One more time...BlueWall2012-12-071-1/+1
| | | | needed one more "../" in the path (copy paste): Thanks BrucePatton for catching that one
* Prebuild fixBlueWall2012-12-071-0/+1
| | | | Had moved the class to a different namespace but failed to add the reference
* Merge branch 'master' into connector_pluginBlueWall2012-12-071-2/+2
|\
| * Add path references for Mono.Addins where they were missing for DataSnapshot ↵Justin Clark-Casey (justincc)2012-12-041-2/+2
| | | | | | | | | | | | | | and UserStatistics. Should address http://opensimulator.org/mantis/view.php?id=6444 Appears that nant doesn't need these paths but building directly in monodevelop does.
* | Merge branch 'master' into connector_pluginBlueWall2012-11-251-5/+103
|\ \ | |/ | | | | | | Conflicts: OpenSim/Server/Base/ServicesServerBase.cs
| * Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)2012-11-241-1/+3
| | | | | | | | automatically turns off any logging enabled between tests
| * Fix bug where loading an OAR with a deeded parcel would always set the ↵Justin Clark-Casey (justincc)2012-11-241-1/+4
| | | | | | | | | | | | | | | | | | parcel owner ID to the estate owner even if the group UUID was present. Aims to address http://opensimulator.org/mantis/view.php?id=6355 As part of this work, an incomplete IXGroupsData was added which currently only allows store/fetch/delete of group records (i.e. no membership data etc) This is subject to change and currently only an in-memory storage implementation exists for regression test purposes.
| * Fix recent windows build break.justincc2012-11-231-0/+1
| | | | | | | | Add missing OpenSim.Framework.Servers reference
| * Make "show info" command available across all serversJustin Clark-Casey (justincc)2012-11-221-0/+1
| | | | | | | | This helpfully lists version information, startup location and console log level
| * Add regression test for a good request made to the asset service post handler.Justin Clark-Casey (justincc)2012-11-211-0/+46
| | | | | | | | Adds new OpenSim.Server.Handlers.Tests.dll to test suite
| * Add basic XInventoryServicesTests.TestAddItem() regression test.Justin Clark-Casey (justincc)2012-11-171-1/+45
| |
| * Fix build break from 1aa0271 by adding System.Core to prebuild.xmlJustin Clark-Casey (justincc)2012-11-151-2/+3
| |
* | Merge branch 'master' into connector_pluginBlueWall2012-10-201-28/+28
|\ \ | |/
| * Remove now unnecessary OpenSim.Framework.Console reference from Monitoring.Justin Clark-Casey (justincc)2012-10-121-1/+0
| | | | | | | | Properly resolve circular reference which no longer appeared in Mono build as there were no using statements for it.
| * Fix build break by moving OpenSim.Framework.Console back below HttpServer in ↵Justin Clark-Casey (justincc)2012-10-121-27/+27
| | | | | | | | | | | | the build order. Luckily, it turns out Framework.Monitoring doesn't need to reference Console directly.
| * Extend "show stats" command to "show stats [list|all|<category name>]"Justin Clark-Casey (justincc)2012-10-111-47/+48
| | | | | | | | | | | | This allows different categories of stats to be shown, with options to list categories or show all stats. Currently categories are scene and simulator and only a very few stats are currently registered via this mechanism. This commit also adds percentage stats for packets and blocks reused from the packet pool.