aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-09-26* Patch from JHurlimanTeravus Ovares4-81/+45
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-26* minor: remove warningsJustin Clarke Casey1-3/+3
2008-09-26* Wind updates. Still random.. but in 4 directions instead of two!Teravus Ovares1-23/+27
* It seems kind of silly to be building a 256x256 array just to use two 16 float blocks.. but for now the layerdata routine requires it so we'll go along with that. * We only fill a 32x16 area of the 256x256 float array with data. * We use patches 0,0 and 0,1 for the first and second patch to determine the direction and magnitude of the wind.
2008-09-25Mantis#2017. Thank you kindly, Tyre, for a patch that solves:Charles Krinke1-1/+1
Check the client dialog box (from top menu) WORLD / REGION ESTATE / REGION tab. The client dialog box seems to have a hard limit of about 32 characters per line available for displaying the region version number. Our regions are sending a string which is greater than the limit, causing the client to wrap the text and look ugly.
2008-09-25* Adds some WindTeravus Ovares1-1/+92
* A little wind wouldn't hurt anyone, right? This is the 'slightly breezy' setting.. hopefully you won't notice 'much' of a difference. * It turns out the terrain patch routine is similar enough to the wind version that it can be used to hack together a breeze generator with a few mods. * Not much configuration.. yet. You only get breeze updates in the general vicinity of your camera now to keep bandwidth usage down.. and we're not talking about 'much' movement at the moment. * initial version... could use improvement I'm sure.
2008-09-25Convergence is almost complete. This brings the diff between the API to < 10kMelanie Thielker1-1/+2
and makes it use a common set of types in both engine. Fixes the issues with running both engines and HTTP requests / listens / timers etc.. Also fixes a couple of minor Scene issues and a CTB by nullref.
2008-09-24cleanups, fixing REST appearance services.Dr Scofield1-2/+0
2008-09-23Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-09-23Update the permissions system to handle scripts and notecards the wayMelanie Thielker1-1/+0
it was meant to. No functional changes, just better code
2008-09-22Move script and notecard open perms checks from ClientView to theMelanie Thielker1-2/+22
perms module
2008-09-22cleanups in inventory REST code. also, disables digest authenticationsDr Scofield1-1/+2
for inventory REST calls for the time being, as firefox, curl, and also python's urllib2 cannot authenticate using digest auth. fix permission checking for prim inventory to be the same as for normal edit ops.
2008-09-21* Fix http://opensimulator.org/mantis/view.php?id=2189Justin Clarke Casey1-0/+2
* Allow a grid mode region simulator to properly shutdown even if the grid service is offline
2008-09-20* refactor: remove unnecessary packet null check in LLClientViewJustin Clarke Casey2-8/+8
* if a packet was really null it would be caught by the general exception handler at the top of the client thread, which would also provide more information and attempt a clean shutdown
2008-09-19* Only allow logins on standalone when the sim has completed it's initial ↵Justin Clarke Casey2-3/+1
startup (script startup doesn't count here) * There was a small window where region logins were allowed before modules were loaded - avatars logins that hit this window could have caused bad things to happen. * A similar change will follow for grid mode sometime soon
2008-09-18code formatting cleanup. Dr Scofield1-2/+2
2008-09-14* This update makes configuring SSL a little easier on Windows XP. It also ↵Teravus Ovares1-1/+6
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-14* Converted a number of methods within the login processes from private to ↵Adam Frisby1-3/+2
protected. * Made several methods virtual to allow derivative overrides. * Minor cleanups.
2008-09-14* Minor fixes and cleanups around code being used for Rex Module work.Adam Frisby2-19/+17
2008-09-13Formatting cleanup.Jeff Ames1-1/+1
2008-09-13Mantis #2018Melanie Thielker1-0/+15
Read animation data from avataranimations.xml to allow default animations to be started and stopped by name from scripts.
2008-09-12* Patch http://opensimulator.org/mantis/view.php?id=2167Justin Clarke Casey1-7/+10
* Force ClickAction persistence even if other object properties are not edited * Thanks nlin!
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-11* Start loading prims after region module configuration rather than beforeJustin Clarke Casey1-4/+1
* In some circumstances, loading prims can invoke region modules
2008-09-10Update svn properties, minor formatting cleanup.Jeff Ames1-1/+1
Fix unreachable code due to typo in llDetectedGroup.
2008-09-10Thanks, nlin, for a patch implementing persistence for "When Left Clicked"Mike Mazur1-0/+14
object property. Fix issue 2149.
2008-09-09* Adds OnGenericMessage and SendGenericMessage functionality to IClientAPI.Adam Frisby1-0/+38
* Please don't break the build. *fingers crossed*
2008-09-09Update svn properties, formatting cleanup.Jeff Ames2-16/+16
2008-09-08* some if inversions and added {}'s for readabilitylbsa711-12/+13
2008-09-08Implement proper persistence of the following prim properties:Melanie Thielker1-0/+7
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-07* Improve login failure handling.Justin Clarke Casey1-2/+0
* Now it should properly inform the user and stop a login if a region server could not be contacted in order to expect a user (the last commit didn't actually quite work correctly)
2008-09-07* minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey3-37/+93
process easier * documentation
2008-09-07* minor: just minor doc and tidy upJustin Clarke Casey1-3/+23
2008-09-06Mantis #2133Melanie Thielker1-1/+1
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 Ovares8-407/+403
* 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-06Rolling back #6139 because there is no consensus on it's application.Melanie Thielker1-27/+1
Reverted pending further discussion.
2008-09-06Mantis #624Melanie Thielker1-1/+27
Thank you, openlifegrid, for a patch to move new user connections to thread pool threads. Reworked by me to fit current trunk. I believe that that patch may be beneficial in reducing the cases in which regions become unresponsive and will no longer accept new logins.
2008-09-05Mantis#2104. Thank you kindly, Godfrey for a patch that:Charles Krinke1-3/+3
If the parcel pointed to by the landmark has nothing in the Description field (of the General tab in About Land...), a NullReferenceException is thrown and the client is logged out. I added a check to the calls to Helpers.StringToField() in OpenSim.Region.ClientStack.LindenUDP.SendParcelInfo to avoid this issue.
2008-09-03Mantis #2107Melanie Thielker1-6/+17
Thank you, lulurun, for a patch to fix a possible crash when a received packet contains a quaternion with all members zeroed.
2008-09-03Mantis#2106. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke1-3/+9
The attached patch fixes connectivety checking of root- and child-agents. If an agent's client isn't sending any packets for some time (not even to StartPingCheck packets), we assume that we lost connection and try to log them out.
2008-08-30* Committed patch in mantis 623Justin Clarke Casey1-14/+3
* Unpatched code certainly looks bizarre - attempts to add a new client if we encountered a failure in processing a packet. No apparant ill effects on a sniff test. * Thanks openlifegrid
2008-08-30* Apply patch in mantis 2083Justin Clarke Casey1-1/+1
* TimeStamp field of the AgentMovementCompletePacket in LLClientView.MoveAgentIntoRegion contained a fixed number. The attached patch changes this to a current timestamp. * Thanks HomerHorwitz
2008-08-28Update svn properties, formatting cleanup.Jeff Ames3-14/+11
2008-08-25Documentation, headers and all the normal stuffTeravus Ovares1-0/+32
2008-08-25* minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey1-1/+1
than displays information directly
2008-08-25* minor: Comment out the remaining unhandled packet messages in ↵Justin Clarke Casey1-12/+10
LLClientView, except for unidentified packets * These make it more difficult to read the logs, and I don't think they help all that much
2008-08-25* zap compilation warningsJustin Clarke Casey2-3/+3
2008-08-25* Deal with a WebException thrown if a grid server cannot be contacted for ↵Justin Clarke Casey1-1/+1
region information
2008-08-25Update svn properties.Jeff Ames1-42/+42
2008-08-25* This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares3-10/+86
currently on Forge in a nice, friendly modular format. * There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain.. * Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)