aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* From: mike pitman <pitman@us.ibm.com>Dr Scofield2008-09-153-3/+6
| | | | | | | | | | | | | fixes the terrain spikes, and is the result of mostly a tuning operation on the smooth and flatten tools. I dug in and found that the spikes apparently result from smooth's overly aggressive iteration steps toward the average curvature, which leads to an instability that blows up the heights. I introduced a scaling factor to dampen the 'duration' parameter which tames progress and seems to keep things stable.
* * Remove a hack I put into OGP so that I could test OGP over SSL with the ↵Teravus Ovares2008-09-141-3/+1
| | | | SeedCap response not being SSL
* * Made Seed CAP response respect the SSL setting.Teravus Ovares2008-09-143-5/+82
|
* * This update makes configuring SSL a little easier on Windows XP. It also ↵Teravus Ovares2008-09-1411-7/+373
| | | | | | | | | makes it possible to run a HTTPS server on the region. It also has a junk Certification authority for test purposes. * There are still a lot of things that are hard coded to use http. They need to be fixed. * Also includes directions * A standard junk PEM file to append to app_settings/CA.pem in the client so SSL will work
* Added some further clipping to color- and alpha-values.Homer Horwitz2008-09-142-98/+102
|
* Mantis #2186Melanie Thielker2008-09-141-12/+12
| | | | | | Prevent illegal color values from being set.
* MessageServer gets the agent position (positionx/y/z) as float, not as int inHomer Horwitz2008-09-141-3/+3
| | | | | | the login_to_simulator message. Changed parsing accordingly (#2190).
* Mantis #2124Melanie Thielker2008-09-1425-1729/+2585
| | | | | | | Thank you, RuudL, for a patch that brings MSSQL up to the same implementation level as MySQL.
* * Converted a number of methods within the login processes from private to ↵Adam Frisby2008-09-145-26/+19
| | | | | | | | protected. * Made several methods virtual to allow derivative overrides. * Minor cleanups.
* Thank you kindly, CMickeyb for a patch that:Charles Krinke2008-09-142-3/+14
| | | | | | | | | Moved intialization of appearance from the SendInitialData event handler into CompleteMovement handler. That ensures that m_appearance is initialized before the inventory is retrieved (so there is a place to check on attachments).
* * Minor fixes and cleanups around code being used for Rex Module work.Adam Frisby2008-09-143-27/+17
|
* Mantis#2183. Thank you kindly, Ewe Loon for a patch that addresses:Charles Krinke2008-09-142-0/+26
| | | | | | | | | | | | | after using llTakeControls my sim receives about 200 messages per second, l of which get queued , this could be because there is no lag as the viewer and sim are on the same computer. The patch I have included checks to see if the "Changed" param is 0 then searches the EventQueue for Control messages being sent to the same localid, if it finds a message already in the Queue and Changed==0 then the new message is only notifing you the key is being held, since there is already a message the new one isnt needed so it isnt added to the queue.
* Fixed several cases of inverted colors and alpha in DNE and XEngine.Homer Horwitz2008-09-132-70/+70
| | | | | | Added clamping to 0.0 - 1.0 for R, G, B, and A.
* * Adds regiondata and estatedata persistence in Sqlite. This commit is ↵Teravus Ovares2008-09-131-0/+3
| | | | actually an assist. 99% of the work was already done by Melanie.
* Formatting cleanup.Jeff Ames2008-09-135-128/+135
|
* Fixing a bug in DNE which caused the face-colors to be inverted when set via ↵Homer Horwitz2008-09-131-9/+9
| | | | script.
* Update svn properties. Minor formatting cleanup. Fix some minor typos. ↵Jeff Ames2008-09-133-1010/+994
| | | | Remove some old dead code.
* Fix another missing UUID before a ToString().Homer Horwitz2008-09-131-1/+1
|
* * Fixes SQLite load crash. Teravus Ovares2008-09-131-2/+3
| | | | | | | * added primary key to regionsettings table in the cached table * initialized the data adapter. * Still untested fully, so watch out!
* Add region settings support to SQLite (untested!)Melanie Thielker2008-09-131-1/+183
|
* Mantis #2018Melanie Thielker2008-09-133-6/+15
| | | | | | | Read animation data from avataranimations.xml to allow default animations to be started and stopped by name from scripts.
* Update avatar-position while avatar is sitting and the prim is moved (#2159).Homer Horwitz2008-09-132-0/+16
| | | | | | | I decided to make ParentPosition a public property in ScenePresence, because that's exactly what happens (the parent position changes on prim move).
* Remove the cruft of accessing a private member of another module's classMelanie Thielker2008-09-134-17/+27
| | | | | | | from DataSnapshot and replace it with a best practices approach, making it much less dependent on the land module's internal structure and types.
* Fix a typo in the DataSnapshot moduleMelanie Thielker2008-09-131-1/+1
|
* Mantis #2182Melanie Thielker2008-09-131-1/+1
| | | | | | Thank you, tyre, for a patch that fixes the sender UUID in scripted IM
* Fix some string to float casting nastiness. The "train script" nowMelanie Thielker2008-09-132-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.
* Provide a GetApi method on the IScriptEngine to get a named API referenceMelanie Thielker2008-09-134-0/+18
| | | | | | | This allows cross-api method calls on the implementation and also allows "Meta APIs" that only provide common functionality to other APIs
* Change all LSL functions to return LSL types instead of base types.Melanie Thielker2008-09-132-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.
* Fix string parameters to functions taking lists as arguments. LSLMelanie Thielker2008-09-131-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.
* Circular path prim meshes are now joined where the path ends meet if they ↵Dahlia Trimble2008-09-132-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.
* wrap log4net configure in try block so that it will run if you don't have aSean Dague2008-09-131-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.
* 2 more InventoryItem tests, plus see if I can leave the log4netSean Dague2008-09-132-0/+26
| | | | | | configure in there to help me get debug messages while developing.
* Changed "show users" command to display only root agents, "show users full" toHomer Horwitz2008-09-127-20/+30
| | | | | | display root and child agents (mantis #2171).
* * Patch http://opensimulator.org/mantis/view.php?id=2172Justin Clarke Casey2008-09-122-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
* * minor: spelling mistake and message tidying on Migration messagesJustin Clarke Casey2008-09-121-5/+5
|
* * minor: Remove warningsJustin Clarke Casey2008-09-122-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
* add first round of folder testsSean Dague2008-09-121-44/+98
|
* reformat spacing on some property declarations. Take away the virtualSean Dague2008-09-121-73/+33
| | | | | | | attribute as that was a left over of an nhibernate approach that isn't used in the current nhibernate code anyway.
* * Patch http://opensimulator.org/mantis/view.php?id=2158Justin Clarke Casey2008-09-121-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.
* * Make fix to MSSQLRegionData.cs in LoadLandObjects as recommended by ↵Justin Clarke Casey2008-09-121-1/+1
| | | | | | | | Garrett Hussey in Re: [Opensim-dev] MSSQL runtime error in latest build.. * Thanks!
* * Patch http://opensimulator.org/mantis/view.php?id=2167Justin Clarke Casey2008-09-126-7/+30
| | | | | | | * Force ClickAction persistence even if other object properties are not edited * Thanks nlin!
* * Add userstore sql upgrade I carelessly forgot to check in a couple of ↵Justin Clarke Casey2008-09-121-0/+5
| | | | | | | | revisions ago * Hopefully there wasn't a problem anyway, since the look at stuff isn't enabled yet
* * Patch http://opensimulator.org/mantis/view.php?id=2163Justin Clarke Casey2008-09-122-0/+12
| | | | | | | | * Add prim ClickAction persistence to SQLite * This will require a prebuild * Thanks nlin!
* * Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey2008-09-1214-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.
* remove hidden faces inside prim meshes to improve memory use and startup timeDahlia Trimble2008-09-121-2/+6
|
* because UUID supports equality, we can do a straight equals instead ofSean Dague2008-09-121-3/+3
| | | | | | convert to string and match.
* Note to self: VisualSVN not fully compatible with OpenSim prebuild :)Tedd Hansen2008-09-1216-1501/+0
|
* use new style asserts. They are much easier to read.Sean Dague2008-09-121-2/+2
|
* Cut of remote server as AppDomains and even WCF can do it better (better ↵Tedd Hansen2008-09-128-752/+0
| | | | means less code in this case)
* * Fix a missing .UUID in llInstantMessageTeravus Ovares2008-09-121-1/+1
|