aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-16* minor: oops, remove a warning I just inserted myself - naughty boyJustin Clarke Casey1-1/+1
2008-09-16* If an individual scene object throws an exception while storing, deal with ↵Justin Clarke Casey2-23/+33
this locally rather than letting it propogate up the stack * This will allow other scene objects to persist and stop the exception taking down the whole region server
2008-09-16Minor formatting cleanup.Jeff Ames2-2/+2
2008-09-16From: mike pitman <pitman@us.ibm.com>Dr Scofield7-8/+17
New patch (terrainedit2.patch) is attached that passes unit tests ( and in fact supplies the new unit test to pass..:) The previous failure was due to the change of the brush size to be linear instead of exponential, and the fact that the test parameters were assuming the exponentional brush size. This patch also removes dependency on 'duration' argument for adjustment step size. This should address the widely differing reports of instability with terrain editing. Note: 'doing this right' implies ultimately reading the parameters from the ini file, which this patch does not do.
2008-09-15* refactor: collapse UpdateUserProfileProperties() into existing ↵Justin Clarke Casey2-3/+4
UpdateUserProfile * the methods were identical except that the Properties one did a check for the user profile beforehand. However, every caller was doing this already anyway.
2008-09-15reverting r6302Dr Scofield3-6/+3
2008-09-15From: mike pitman <pitman@us.ibm.com>Dr Scofield3-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.
2008-09-14* Remove a hack I put into OGP so that I could test OGP over SSL with the ↵Teravus Ovares1-3/+1
SeedCap response not being SSL
2008-09-14* This update makes configuring SSL a little easier on Windows XP. It also ↵Teravus Ovares1-4/+53
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
2008-09-14Thank you kindly, CMickeyb for a patch that:Charles Krinke1-3/+8
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).
2008-09-14* Minor fixes and cleanups around code being used for Rex Module work.Adam Frisby1-8/+0
2008-09-13Formatting cleanup.Jeff Ames1-9/+16
2008-09-13Update svn properties. Minor formatting cleanup. Fix some minor typos. ↵Jeff Ames1-2/+2
Remove some old dead code.
2008-09-13Update avatar-position while avatar is sitting and the prim is moved (#2159).Homer Horwitz2-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).
2008-09-13Remove the cruft of accessing a private member of another module's classMelanie Thielker3-0/+16
from DataSnapshot and replace it with a best practices approach, making it much less dependent on the land module's internal structure and types.
2008-09-12Changed "show users" command to display only root agents, "show users full" toHomer Horwitz1-3/+3
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* Patch http://opensimulator.org/mantis/view.php?id=2167Justin Clarke Casey3-0/+18
* Force ClickAction persistence even if other object properties are not edited * Thanks nlin!
2008-09-12* Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey3-6/+14
* 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-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-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-10Revert the two debug log statements from r6212 as described in Mantis 2126.Charles Krinke1-14/+0
2008-09-10Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
Fix unreachable code due to typo in llDetectedGroup.
2008-09-10Thank you kindly, CMickeyB for a patch that adds aCharles Krinke1-0/+14
couple of debug statements for null items while we diagnose our interrmittent inventory issues. I looked at this and it seems helpful to others. We can back it later if desired.
2008-09-09From: alan_webb@us.ibm.comSean Dague1-1/+4
Make CHANGED constants consistent with LSL, and consistent across the code base
2008-09-09* Adds OnGenericMessage and SendGenericMessage functionality to IClientAPI.Adam Frisby1-1/+7
* Please don't break the build. *fingers crossed*
2008-09-09Preserve link numbers when items are taken into inventory and re-rezzed.Melanie Thielker1-1/+6
2008-09-09Update svn properties, formatting cleanup.Jeff Ames21-671/+678
2008-09-08Fix an inventory naming regressionMelanie Thielker1-5/+2
2008-09-08Remove casting nastiness in LSL_ApiMelanie Thielker1-0/+4
2008-09-08Correct state handling and state event masks. Prims will now showMelanie Thielker1-1/+5
touch, pay, etc script states correctly.
2008-09-08Fix component order on a quaternion for the sit target. This causedMelanie Thielker1-1/+1
sit positions to be upside down until the script was reset.
2008-09-08fix: warnings from libomvDr Scofield4-1/+13
2008-09-08Implement proper persistence of the following prim properties:Melanie Thielker2-3/+14
Floating text, Rotation, Texture animation, Particle System This will make "Eye Candy" scripts work without modification in XEngine. The use of the CHANGED_REGION_RESTART hack is no longer needed. Implemented in MySQL only, hovertext also in SQLite.
2008-09-07Mantis #2142Melanie Thielker1-1/+1
Thank you, HomerHorwitz, for a patch that fixes landmark teleport and about landmarks with the new OMV types.
2008-09-07* Fixes linking using the new types.Teravus Ovares1-1/+1
quaternions are not communicative!
2008-09-07* minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey1-6/+2
process easier * documentation
2008-09-06* This changes gridcomms types back to our home grown wholy controlled types. Teravus Ovares1-5/+5
* These are different types then the OMV types because changing them causes just about all grid comms to break. If these were the libOMV types, then libOMV couldn't change them ever again after that.. or we'd have a breakage whenever they changed them. * This might introduce a map issue. Still checking it out.
2008-09-06* Addresses the same issue as last commit on SceneObjectGroup border crossingsTeravus Ovares1-0/+8
2008-09-06* Fixes a few type changes that caused the XML Format to break.Teravus Ovares2-1/+7
* Testers, please try rezzing your inventory on this revision and sending me feedback in mantis. * Users, it's not time to update yet. The dust still hasn't settled.
2008-09-06Mantis #2133Melanie Thielker5-7/+7
Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares106-2607/+2445
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-09-06* Add SampleMoneyModule patch from mantis #2079Justin Clarke Casey1-11/+19
* Thanks noralbion
2008-09-06* refactor: Make SOG itself responsible for checking whether it's already ↵Justin Clarke Casey2-12/+10
been deleted on an update request from the regular sweep
2008-09-06* minor: change hard tabs back to spaces in previous commitJustin Clarke Casey2-3/+3
* my excuse is that I hadn't used this monodevelop exe before...
2008-09-06* Fix mantis 2130 - nre occuring sometimes when the regular prim update ↵Justin Clarke Casey3-19/+7
sweep occurs * Fold m_deleted and m_isDeleted together (ugh!)
2008-09-06* Remove lots of warnings from the CMS moduleJustin Clarke Casey6-12/+12
* Remove a few other miscellaneous warnings
2008-09-05* Adds configurable OGP Name prefix and suffix. See OpenSim.ini.example at ↵Teravus Ovares1-0/+7
the bottom for details. Defaults to an empty string for prefix and '_EXTERNAL' for suffix
2008-09-04added in find callsSean Dague1-2/+52
added logging of exceptions, which we'll get quite a few of at this point most likely