aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-02-21Both 32-bit and 64-bit BulletSim.dll must have the same name. Rename the 64 ↵Justin Clark-Casey (justincc)1-0/+0
bit one in lib64
2012-02-21Load 32-bit or 64-bit BulletSim Windows library automatically as appropriate.Justin Clark-Casey (justincc)2-0/+0
This uses the same approach as ODE. radams, if this doesn't work for you please feel free to revert.
2012-02-21Replace previous windows 64-bit sqlite3.dll with one from ↵Justin Clark-Casey (justincc)1-0/+0
http://system.data.sqlite.org/downloads/1.0.79.0/sqlite-netFx35-binary-bundle-x64-2008-1.0.79.0.zip In this zip, it's called System.Data.SQLite.dll. We rename it to lib64/sqlite3.dll This is a little unexpected but it works. For some reason my hand-rolled one in Visual Studio 2008 did not. This is sqlite 3.7.10. Other libraries are still currently 3.7.6 but this should make no difference. This should make it possible to use OpenSim.exe on 64-bit Windows now, though currently the bullet physics plugin will still complain (can be ignored if you are not using bullet).
2012-02-21Replace win 64-bit sqlite3.dll with another version, though I suspect this ↵Justin Clark-Casey (justincc)1-0/+0
one won't work either.
2012-02-21Add 64 bit Windows sqlite3.dll and use this if running a 64-bit windows process.Justin Clark-Casey (justincc)2-0/+0
2012-02-21Remove PhysXPlugin and wrappers.Justin Clark-Casey (justincc)2-0/+0
In over 4 years this never progressed beyond an unimplemented stub. This doesn't mean that it can't come back if someone is interested in implementing PhysX support.
2012-02-18Actually add the Windows 64-bit ode.dll file.Justin Clark-Casey (justincc)1-0/+0
This might be why it didn't work.
2012-02-18On Windows automatically load the correct native ODE library depending on ↵Justin Clark-Casey (justincc)1-0/+0
whether the process is 32-bit or 64-bit In theory, this means that a 64-bit Windows OS user can now run OpenSim.exe with ODE and use more than 2 (or 3) GB of memory. However, this is completely untested since I don't currently own a 64-bit Windows box. Feedback appreciated. Using OpenSim.32BitLaunch.exe should continue to work. Other platforms are unaffected. This will currently not work with sqlite - I will add that too if this works.
2012-02-14Fix: Lightshare Module(Windlight)-Region settings are not applicable for ↵PixelTomsen2-2/+0
database sqlite mantis: http://opensimulator.org/mantis/view.php?id=5888
2012-02-14Update [XEngine] AppDomainLoading advice in OpenSim.ini.exampleJustin Clark-Casey (justincc)1-4/+9
2012-02-11Clamp ODE character velocity. Make ODE falling character 54m/s by default.Justin Clark-Casey (justincc)1-0/+5
If velocity reaches 256 in any vector then bad things happen with ODE, so we now clamp this value. In addition, a falling avatar is clamped by default at 54 m/s, which is the same as a falling skydiver. This also appears to be the value used on the linden lab grid. This should resolve http://opensimulator.org/mantis/view.php?id=5882
2012-02-07Set UseMeshiesPhysicsMesh = true in [Mesh] by defaultJustin Clark-Casey (justincc)1-4/+3
This means that uploaded meshes will get a physics (collision) mesh if uploaded with that option via a viewer.
2012-02-07Add warning about only uncommenting EstateConnectionString if you know what ↵Justin Clark-Casey (justincc)1-0/+2
you're doing to GridCommon.ini.example (was already in StandaloneCommon.ini.example)
2012-02-04change NonPhysicalPrimMax to NonphysicalPrimMax to make this variablenebadon2-2/+2
work correctly, it was being ignored because of the case, this effects OpenSim.ini.example and OpenSimDefaults.ini
2012-02-03Change LandDataSerializer deserialization so that in the future it won't ↵Justin Clark-Casey (justincc)1-0/+33
care about extra elements or element order. This brings it into line with other deserializations such as object and will improve future backward compatibility.
2012-01-31Add torture tests to test adding 10,000, 100,000 and 200,000 single prim ↵Justin Clark-Casey (justincc)1-0/+33
scene objects. These can be run using the "nant torture" target. They are not part of "nant test" due to their long-run future nature. Such tests are designed to do some testing of extreme situations and give some feedback on memory usage, etc. However, data can be inconsistent due to different machine circumstances and virtual machine actions. This area is under development.
2012-01-29Fix:Get embedded objects in notecard ↵PixelTomsen1-1/+1
http://opensimulator.org/mantis/view.php?id=2607 Signed-off-by: nebadon <michael@osgrid.org>
2012-01-28Remove accidental /user postfix from HomeURI in [HGInventoryAccessModule] in ↵Justin Clark-Casey (justincc)2-2/+2
GridCommon.ini.example and from SRV_ProfileServerURI in [LoginService] in Robust.HG.ini.example As per http://opensimulator.org/mantis/view.php?id=5852, confirmed by diva via aiaustin
2012-01-25Update BulletSim.dll with some interface changes and tuning (see ↵Robert Adams5-2/+3
opensim-libs). Change BSScene to use new interface.
2012-01-20Revert "Change linux, windows and mac ODE libraries to use the GIMPACT ↵Justin Clark-Casey (justincc)7-0/+0
collider rather than OPCODE." This reverts commit 4eef6725f4116aa70de729b71d60636a7d0a68f5. Reverting for now since this fails with "terminate called after throwing an instance of 'std::bad_alloc'" on Wright Plaza instances.
2012-01-17Update osGetGrid**** functionsBlueWall1-0/+6
The osGetGrid**** functions will now get the grid settings from the GridInfoService. Set the GridInfoURI in your ./bin/config-include/GridCommon.ini [GridInfo] section.
2012-01-17Change linux, windows and mac ODE libraries to use the GIMPACT collider ↵Justin Clark-Casey (justincc)7-0/+0
rather than OPCODE. As discussed on the opensim-dev mailing list, this is to avoid a demonstrated ODE collider segfault when stress-testing a simulator running more than one region using the bundled pCampbot.exe As before, the ODE revision used is r1755 - only the collider has changed. Tests so far reveal little performance change. However, if noticeable issues do arise, please report on mantis and/or the opensim-dev mailing list. The previous libraries are temporarily in bin/Physics-previous-ode-libs These can be copied back to bin if one wants to compare behaviour with the previous libraries.
2012-01-16Comment out noisy log lines I accidentally included in the nant build target ↵Justin Clark-Casey (justincc)1-1/+1
adjustment commit. Left in the method doc.
2012-01-16Remove monocov and other obsolete nant build targets.Justin Clark-Casey (justincc)1-1/+1
monocov was a code coverage attempt 3 years ago which no longer works. other removed targets have been commented out or unused for a very long time
2012-01-12HG: normalize all externalized user ULRs to be the Home URL, i.e. the ↵Diva Canto3-6/+6
location of the user's UAS. This corrects an earlier design which had some cases pointing to the profile server. WARNING: CONFIGURATION CHANGES in both the sims (*Common.ini) and the Robust configs (Robust.HG.ini). Please check diff of the example files, but basically all vars that were pointing to profile should point to the UAS instead and should be called HomeURI.
2012-01-12Correcting ini.example were permissionmodules uses komma instead of space as ↵Michelle Argus1-3/+3
separator
2012-01-10Remove DEBUG optionBlueWall1-5/+0
Remove DEBUG option from OpenSim.ini.example as it is handled in the console now with "debug teleport"
2012-01-09Add some run-time debugging supportBlueWall1-0/+6
Add configuration option - DEBUG to enable debugging methods. This is temporary for helping users testing teleport routing be able to report back the data with the test cases. We can remove when finished with this, or leave it if it proves to be useful. Users: set DEBUG = true in OpenSim.ini to get more information from teleport routing. The default is false. It presently prints the TeleportFlags value.
2012-01-06eliminate a few tabs from OpenSimDefaults.iniJustin Clark-Casey (justincc)1-10/+10
2012-01-06Add disabled Cap_FetchInventory2 = "" reference to [ClientStack.LindenCaps] ↵Justin Clark-Casey (justincc)1-3/+4
in line with all the other ones that are there
2012-01-03Update C5.dll to version 1.1.1 from 1.1.0Justin Clark-Casey (justincc)1-0/+0
C5 is a collections library and can be found at http://www.itu.dk/research/c5/ This is used in the UDP texture (image) sending code.
2011-12-30Bring back the Hyperlinker to the Robust console. Moved the config to ↵Diva Canto4-3/+5
[GridService]. Changed all HG-related .inis, including HyperSimianGrid. No changes in user-facing inis.
2011-12-25Add Copy task to Prebuild.exe (vsxxxx targets)BlueWall1-0/+0
<Files> <Match pattern="*.cs" recurse="true"/> <Match pattern="../bin/MyConfig.xml" buildAction="Copy" recurse="false" destination="$(OutputPath)" /> </Files>
2011-12-22Make it possible to force all prims to be phantom via the collidable_prim ↵Justin Clark-Casey (justincc)1-0/+5
boolean setting in the OpenSim.ini config [Startup] section. Naturally, default is true. When set to false, "phantom" flags on prims can be set as usual but all prims remain phantom. This setting is for test purposes. This switch does not affect the collision of avatars with the terrain.
2011-12-17Add more documentation to EstateConnectorString in StandaloneCommon.ini.exampleJustin Clark-Casey (justincc)1-1/+4
2011-12-12Get rid of the 'lolcat' library asset.Justin Clark-Casey (justincc)2-6/+0
This was both unused and an invalid jpeg2000 texture from way back in 2008
2011-12-12Remove long unused libdb_dotNET43.dllJustin Clark-Casey (justincc)1-0/+0
2011-12-08Reactivate BasicCircuitTests.TestAddClient()Justin Clark-Casey (justincc)1-0/+33
This checks that the initial UseCircuitCode packet is handled correctly for a normal client login.
2011-12-07Update libomv to 0.9.1BlueWall4-0/+0
2011-12-03change misleading login = http://127.0.0.1:9000/ in GridInfoService in ↵Justin Clark-Casey (justincc)1-1/+1
Robust.ini.example to 8002
2011-11-29Make fix to Nini for null references in some cases.BlueWall1-0/+0
2011-11-25Implement the FetchInventoryDescendents2 capability using the same code as ↵Justin Clark-Casey (justincc)1-4/+7
WebFetchInventoryDescendents. Enabling this by setting Cap_FetchInventoryDescendents2 = "localhost" in the [ClientStack.LindenCaps] section of OpenSim.ini downloads inventory via http rather than udp in later viewers.
2011-11-25remove some mono compiler warningsJustin Clark-Casey (justincc)1-3/+3
2011-11-23Shell Environment Variables in configBlueWall1-0/+0
Adding updated Nini and support to use shell environment variables in OpenSimulator configuration. Nini @ https://github.com/BlueWall/Nini-Dev
2011-11-21Move DeleteScriptsOnStartup switch from [Startup] to [XEngine] in ↵Justin Clark-Casey (justincc)1-7/+7
OpenSim.ini.example. If anybody was changing this and wondering why there was no effect, this is why.
2011-11-19Enable v2/v3 map tile url setting on robust as default in configJustin Clark-Casey (justincc)2-2/+2
This is necessary to see map tiles on v2/v3 viewers and appears to work fine
2011-11-18Replace HttpServer_OpenSim.dll with Oren Hurvitz's patch applied.justincc3-5456/+5453
This will hopefully address mantis 5471, 5694 and 5718. This code is now in opensim-libs, along with Diva's slightly older patches (which were already applied to the DLLs in the opensim tree). Thanks Oren!
2011-11-18Turn the [RegionReady] module on by default and login_disable = true while ↵Justin Clark-Casey (justincc)1-18/+21
scripts are loading. From field experience, we know that simulators can be unstable if a user logs in before the scripts have finished loading. This commit turns login_disable = true in [RegionReady] on by default which prevents this from happening. If you want the old behaviour, please copy these section from OpenSimDefaults.ini into OpenSim.ini and set login_disable = false
2011-11-17Turn SellEnabled in the [EconomyModule] on by default.Justin Clark-Casey (justincc)2-15/+16
This only provides enough functionality to allow operations for no money (e.g. sell for $0).
2011-11-10Alter commit 3758306 to allow region name to be substituted within a region ↵Justin Clark-Casey (justincc)2-6/+15
console prompt This is to allow broader subsitution in the future. Currently, the only substitions are \R (for region name) and \\ (for a single backslash) e.g. "Region (\R) " is the current and continuing default prompt This renames custom_prompt in [Startup] to ConsolePrompt