aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-13Fix some string to float casting nastiness. The "train script" nowMelanie Thielker2-3/+14
works. Also makes llGetFreeMemory return the constant 16384. LLGetFreeMemory is useless in SL, as it never goes up, only down. So, the only thing it is used for, in practice, is to detect an imminent stack/heap collision, a danger we don't have.
2008-09-13Provide a GetApi method on the IScriptEngine to get a named API referenceMelanie Thielker4-0/+18
This allows cross-api method calls on the implementation and also allows "Meta APIs" that only provide common functionality to other APIs
2008-09-13Change all LSL functions to return LSL types instead of base types.Melanie Thielker2-261/+223
Remove some unused osFunctions that were left in the LSL function file from the separation way back when. Inline the osSetParcelMediaURL code to get rid of the osFunction. Really need to add a way for one API to call another.
2008-09-13Fix string parameters to functions taking lists as arguments. LSLMelanie Thielker1-0/+4
functions return CLI strings, which, in the case of lists, don't get wrapped. Therefore, the list had to be able to deal with that CLI type here. The correct fix would be to change all LSL function returns to LSL types.
2008-09-13Circular path prim meshes are now joined where the path ends meet if they ↵Dahlia Trimble2-69/+92
match. This may have a minor improvement in memory and speed performance, but it's mainly for viewer applications and it also syncs the c# version of PrimMesher with my python sandbox version.
2008-09-13wrap log4net configure in try block so that it will run if you don't have aSean Dague1-1/+5
.config (which no one does). Dropping in the .config lets you see that debug messages, which is handy while writing tests and figuring out why things don't behave like you would guess.
2008-09-132 more InventoryItem tests, plus see if I can leave the log4netSean Dague2-0/+26
configure in there to help me get debug messages while developing.
2008-09-12Changed "show users" command to display only root agents, "show users full" toHomer Horwitz7-20/+30
display root and child agents (mantis #2171).
2008-09-12* Patch http://opensimulator.org/mantis/view.php?id=2172Justin Clarke Casey2-13/+26
* Patch attached that adds the check for uninitialized appearance when inventory items are received and processed. Also attempts to ensure that appearance is initialized even when the profile cache has not been built. * This will not fix the race condition, but should at least remove the unhandled exception that is being reported in Mantis 0002126. * Thanks cmickeyb
2008-09-12* minor: spelling mistake and message tidying on Migration messagesJustin Clarke Casey1-5/+5
2008-09-12* minor: Remove warningsJustin Clarke Casey2-26/+10
* leaving in the ones to do with ScriptBase since these actually indicate coding bugs that I don't have the time/brainpower to fix at the moment
2008-09-12add first round of folder testsSean Dague1-44/+98
2008-09-12reformat spacing on some property declarations. Take away the virtualSean Dague1-73/+33
attribute as that was a left over of an nhibernate approach that isn't used in the current nhibernate code anyway.
2008-09-12* Patch http://opensimulator.org/mantis/view.php?id=2158Justin Clarke Casey1-9/+90
* RemoteAdmin SaveXMLMethod * My tiny mind isn't quite sure how this is useful, but the load xml equivalent is already there, so what the hell :) * Thanks Olish.
2008-09-12* Make fix to MSSQLRegionData.cs in LoadLandObjects as recommended by ↵Justin Clarke Casey1-1/+1
Garrett Hussey in Re: [Opensim-dev] MSSQL runtime error in latest build.. * Thanks!
2008-09-12* Patch http://opensimulator.org/mantis/view.php?id=2167Justin Clarke Casey6-7/+30
* Force ClickAction persistence even if other object properties are not edited * Thanks nlin!
2008-09-12* Add userstore sql upgrade I carelessly forgot to check in a couple of ↵Justin Clarke Casey1-0/+5
revisions ago * Hopefully there wasn't a problem anyway, since the look at stuff isn't enabled yet
2008-09-12* Patch http://opensimulator.org/mantis/view.php?id=2163Justin Clarke Casey2-0/+12
* Add prim ClickAction persistence to SQLite * This will require a prebuild * Thanks nlin!
2008-09-12* Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey14-451/+515
* This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
2008-09-12remove hidden faces inside prim meshes to improve memory use and startup timeDahlia Trimble1-2/+6
2008-09-12because UUID supports equality, we can do a straight equals instead ofSean Dague1-3/+3
convert to string and match.
2008-09-12Note to self: VisualSVN not fully compatible with OpenSim prebuild :)Tedd Hansen16-1501/+0
2008-09-12use new style asserts. They are much easier to read.Sean Dague1-2/+2
2008-09-12Cut of remote server as AppDomains and even WCF can do it better (better ↵Tedd Hansen7-680/+0
means less code in this case)
2008-09-12* Fix a missing .UUID in llInstantMessageTeravus Ovares1-1/+1
2008-09-12move the actual [Test] methods for databases to OpenSim.Data.TestsSean Dague7-167/+308
classes. This did mean loosing 1 unit test that was actually testing an sqlite function directly instead of the interface.
2008-09-12change order in prebuild.xml so this works in nant on a cleanSean Dague1-1/+1
checkout.
2008-09-12be more clever and move the bulk of the db tests for inventory intoSean Dague2-140/+187
OpenSim.Data.Tests, then subclass with custom init bits for sqlite. As I've only been testing the plugin interfaces anyway, this should make it very easy to write only a little bit of code to use these tests for other databases. It will also give us the framework for definining the datastore behavior and making sure that all the databases do the same thing.
2008-09-12add the m_host.AddScriptLPS(1); line. I'm not actually sure what itSean Dague1-0/+2
does, but it seems every other function here has it, so it is probably needed.
2008-09-12From: Rob Smart <SMARTROB@uk.ibm.com>Sean Dague3-0/+197
Implement an osParseJSON method useful for handling simple JSON returns from http requests. This will only work in C# at this point.
2008-09-12Mantis#2165. Thank you kindly, CMickeyB for a patch that:Charles Krinke1-18/+40
patch is attached that replaces the o(n^2) algorithm currently used to build the inventory cache with an o(n) algorithm using hash tables. the patch also adds some additional error handling.
2008-09-12* Move the ResetChildPrimPhysics() calls to after physics have been applied ↵Justin Clarke Casey1-5/+5
to the parts rather than after each individual part * From looking at the code there shouldn't be any difference, and this appears to speed up prim loading and make a certain failure case (where prims seem to be going out of bounds on startup) less of a problem. * However, if I've been bad please revert this patch
2008-09-12* minor: various doc and tidy up, logging increase to make it clearer which ↵Justin Clarke Casey3-37/+80
prim is failing a border crossing
2008-09-12Revert 6242 because of a possible licensing issueMelanie Thielker1-146/+0
2008-09-12Add the UUIDs of the standard animations. Thanks, Ewe Loon!Melanie Thielker1-0/+146
2008-09-11more inventory folder testsSean Dague1-10/+55
2008-09-11add some folder create and list testsSean Dague1-1/+40
2008-09-11added simple add / exists folder checkSean Dague1-0/+41
2008-09-11* This updates the OGP module to support both the revision 2 and revision 3 ↵Teravus Ovares1-10/+64
of the OGP protocol. (Assuming I understood it correctly) * This also removes the host--> ip pre-resolve workaround.
2008-09-11add a few more SQLite Asset tests.Sean Dague1-3/+31
2008-09-11* Start loading prims after region module configuration rather than beforeJustin Clarke Casey2-4/+6
* In some circumstances, loading prims can invoke region modules
2008-09-11* Removed some legacy commentinglbsa711-44/+0
2008-09-11* Added small convenience function to recursively calculate total amounts of ↵lbsa711-0/+15
items loaded under library inventory node
2008-09-10added very basic stubs for User and Inventory db creates and emptySean Dague2-0/+146
calls to make sure they worked
2008-09-10fix typo in name of test dbSean Dague1-1/+1
2008-09-10add basic sniff tests for SQLite Asset store. Initializes a db,Sean Dague1-0/+91
stores an asset, fetches that asset, make sure it has the name we gave it. All simple stuff, but should catch the more egregious breaks.
2008-09-10add a simple update attribute test for SOG & SQLiteSean Dague1-2/+22
2008-09-10added in a few more testsSean Dague1-6/+40
2008-09-10the explicit log4net configure attempt was maybe breaking bamboo, getSean Dague1-4/+0
rid of that.
2008-09-10added the first couple of sqlite tests. we'll see how bambooSean Dague2-2/+53
handles them.