aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed a small off by one error in sending MapBlocksHomer Horwitz2008-10-021-1/+1
| | | | | | - Removed MapBlockData.Flags; it isn't used anywhere (maybe MapBlockData.RegionFlags replaced it?)
* - Added SendScriptTeleportRequest to IClientView and classes implementing it.Homer Horwitz2008-10-011-0/+12
| | | | | | - Implemented llMapDestination.
* * minor: oh, and comment out the now unused logger as wellJustin Clarke Casey2008-10-011-2/+2
|
* * minor: Comment out temporarily statistical counter I accidentally left in ↵Justin Clarke Casey2008-10-011-1/+1
| | | | from the last commit
* * Try bumping packet resend timeout up to 2 seconds instead of 1Justin Clarke Casey2008-10-011-9/+22
| | | | | | | | * This actually probably doesn't make a huge difference. We still end up resending a massive number of packets in quite a few situations, but it's not easy to consistently reproduce this. * Might really need some throttling of packet send to the client on the OpenSim end.
* * refactor: rename interface to put standard I prefix in frontJustin Clarke Casey2008-10-013-5/+5
|
* * Fix bug in LLPacketHandler where the tickcount when a packet was ↵Justin Clarke Casey2008-10-012-9/+21
| | | | | | | | approximately sent was not being stored in the ack record * This meant that acks were being sent out every 250ms when the ack timer fired, rather than when they had actually aged past m_ResendTimeout
* * minor: remove warningJustin Clarke Casey2008-09-291-5/+5
|
* Mantis#296. Thank you kindly, Idb for a patch that resolves:Charles Krinke2008-09-281-0/+9
| | | | | | | | | Estate/ Manager Owner Uses the Region/Estate Menu Region TAB, and uses "Teleport Home All Users..." (Action Button), the action will complete but no one will be teleported and all users still function in the region ok.
* Add some methods to allow modules so set client view optionsMelanie Thielker2008-09-282-0/+29
|
* Mantis #2288Melanie Thielker2008-09-281-4/+16
| | | | | | | | Correct a typo in namespace declaration Also adds a new flag to the PacketManager to force retention of packets marked reliable (default off)
* * Replace a generic error handler.Teravus Ovares2008-09-271-1/+1
|
* * Event queue is now polling.. Teravus Ovares2008-09-271-1/+2
| | | | | | * returns FAKEEVENT instead of the connection returning a 502. It doesn't like our 502's for some reason.. so, in leau of this.. send it a fake event. * Once again, this is still 'really early' code, so please don't blame us if you have no more threads left.
* * Patch from JHurlimanTeravus Ovares2008-09-264-81/+45
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* * minor: remove warningsJustin Clarke Casey2008-09-261-3/+3
|
* * Wind updates. Still random.. but in 4 directions instead of two!Teravus Ovares2008-09-261-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.
* Mantis#2017. Thank you kindly, Tyre, for a patch that solves:Charles Krinke2008-09-251-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.
* * Adds some WindTeravus Ovares2008-09-251-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.
* Convergence is almost complete. This brings the diff between the API to < 10kMelanie Thielker2008-09-251-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.
* cleanups, fixing REST appearance services.Dr Scofield2008-09-241-2/+0
|
* Update svn properties, formatting cleanup.Jeff Ames2008-09-231-1/+1
|
* Update the permissions system to handle scripts and notecards the wayMelanie Thielker2008-09-231-1/+0
| | | | | | it was meant to. No functional changes, just better code
* Move script and notecard open perms checks from ClientView to theMelanie Thielker2008-09-221-2/+22
| | | | | | perms module
* cleanups in inventory REST code. also, disables digest authenticationsDr Scofield2008-09-221-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.
* * Fix http://opensimulator.org/mantis/view.php?id=2189Justin Clarke Casey2008-09-211-0/+2
| | | | | | * Allow a grid mode region simulator to properly shutdown even if the grid service is offline
* * refactor: remove unnecessary packet null check in LLClientViewJustin Clarke Casey2008-09-202-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
* * Only allow logins on standalone when the sim has completed it's initial ↵Justin Clarke Casey2008-09-192-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
* code formatting cleanup. Dr Scofield2008-09-181-2/+2
|
* * This update makes configuring SSL a little easier on Windows XP. It also ↵Teravus Ovares2008-09-141-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
* * Converted a number of methods within the login processes from private to ↵Adam Frisby2008-09-141-3/+2
| | | | | | | | protected. * Made several methods virtual to allow derivative overrides. * Minor cleanups.
* * Minor fixes and cleanups around code being used for Rex Module work.Adam Frisby2008-09-142-19/+17
|
* Formatting cleanup.Jeff Ames2008-09-131-1/+1
|
* Mantis #2018Melanie Thielker2008-09-131-0/+15
| | | | | | | Read animation data from avataranimations.xml to allow default animations to be started and stopped by name from scripts.
* * Patch http://opensimulator.org/mantis/view.php?id=2167Justin Clarke Casey2008-09-121-7/+10
| | | | | | | * Force ClickAction persistence even if other object properties are not edited * Thanks nlin!
* Revert 6242 because of a possible licensing issueMelanie Thielker2008-09-121-146/+0
|
* Add the UUIDs of the standard animations. Thanks, Ewe Loon!Melanie Thielker2008-09-121-0/+146
|
* * Start loading prims after region module configuration rather than beforeJustin Clarke Casey2008-09-111-4/+1
| | | | | | * In some circumstances, loading prims can invoke region modules
* Update svn properties, minor formatting cleanup.Jeff Ames2008-09-101-1/+1
| | | | | Fix unreachable code due to typo in llDetectedGroup.
* Thanks, nlin, for a patch implementing persistence for "When Left Clicked"Mike Mazur2008-09-101-0/+14
| | | | | | object property. Fix issue 2149.
* * Adds OnGenericMessage and SendGenericMessage functionality to IClientAPI.Adam Frisby2008-09-091-0/+38
| | | | | * Please don't break the build. *fingers crossed*
* Update svn properties, formatting cleanup.Jeff Ames2008-09-092-16/+16
|
* * some if inversions and added {}'s for readabilitylbsa712008-09-081-12/+13
|
* Implement proper persistence of the following prim properties:Melanie Thielker2008-09-081-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.
* * Improve login failure handling.Justin Clarke Casey2008-09-071-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)
* * minor: Clean up of logging messages to make following the client login ↵Justin Clarke Casey2008-09-073-37/+93
| | | | | | | | process easier * documentation
* * minor: just minor doc and tidy upJustin Clarke Casey2008-09-071-3/+23
|
* Mantis #2133Melanie Thielker2008-09-061-1/+1
| | | | | | | Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-068-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.
* Rolling back #6139 because there is no consensus on it's application.Melanie Thielker2008-09-061-27/+1
| | | | | | Reverted pending further discussion.
* Mantis #624Melanie Thielker2008-09-061-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.