aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implements 80% of object buy (prim vendor). You can't buy the object yet,Melanie Thielker2008-08-241-1/+48
| | | | | | | and the for sale setting doesn't survive a sim restart, but this is most of the plumbing.
* Mantis #2003 - thank you, SachaMagne, for a patch that implementsMelanie Thielker2008-08-201-0/+45
| | | | | | | | | | | the first part of gesture persistence. ---------------------------------------------------------- Attachments no longer vanish on walking crossing. Teleport is still problematic, but will now be blocked with message "Inconsistent attachment state" rather than losing the attachment. Detach to be able to TP in that case.
* Update svn properties, formatting cleanup.Jeff Ames2008-08-191-4/+4
|
* * It appears that sometimes some IClientAPI reference is not being released, ↵Justin Clarke Casey2008-08-181-5/+9
| | | | | | | | | resulting in continual execution of the CheckConnectivity timer method * For now, just turn off this timer when we close the connection * Also some minor help refactoring creeps in to this revision.
* Change LowpriorityTask to be ThrottleType.Task | ThrottleType.LowPriority to ↵Melanie Thielker2008-08-181-3/+3
| | | | make the flag nature of this value more clear.
* Formatting cleanup.Jeff Ames2008-08-181-33/+33
|
* * Insert a new 'set log level [level] command on the console'Justin Clarke Casey2008-08-161-1/+0
| | | | | | | | | * The primary immediate use is to provide a means of temporarily reducing log output on the console when executing console commands * Changing the log level on the console is not permanent and does not affect the log information being put into OpenSim.log * This could have been done by putting in a threshold level on the Console appeneder in OpenSim.exe.config and implementing config watching in the code. * But I think that it's a little more user friendly to make this doable via the console.
* Mantis#1970. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-161-20/+9
| | | | | | This patch improves fetching of inventory from several minutes to a few seconds.
* Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-161-0/+65
| | | | | | | | | | | | | | | | | | | | | | | Places touched: - Added two events for in-packets to LLCLientView: RegionHandleRequest and ParcelInfoRequest - Added sending of two out-packets to LLCLientView: RegionIDAndHandleReply and ParcelInfoReply. - Scene handles the RegionHandleRequest, LandManagementModule the ParcelInfoRequest - Added inter-region request for LandData by RegionHandle and local position. This was implemented as XML-RPC request. The returned LandData isn't complete, it only contains the data necessary for answering the ParcelInfoRequest - Added new CAPS (0009) for RemoteParcelRequest and some methods for LandData handling to LandManagementModule - Added methods for fake parcelID creation and parsing to Util - Fixed missing implementation of interface methods. - Added new file: OpenSim/Framework/Communications/Capabilities/LLSDRemoteParcelResponse.cs NOTE: This is part of the patch, too. Due to the many places touched, I would consider this patch as experimental.
* Update svn properties, minor formatting cleanup.Jeff Ames2008-08-161-1/+1
|
* Plumb the user flags all the way through to the profile. userFlags inMelanie Thielker2008-08-151-3/+3
| | | | | | | | the database is now intepreted as follows: low byte = user flags. Next byte, low nibble: Deternines the text (Resident, Lifetime, etc) shown. No customn text support yet.
* Fix up master avatar handling for estate owners. Introduces a newMelanie Thielker2008-08-151-1/+6
| | | | | | | | | hierarchical rights structure. MasterAvatar: Owner of the region server (may be null), net gods (users with GodLevel 200), Estate owner (from database). Look at Opensim.ini.example to enable net gods. Estate owner will default to master avatar.
* Update svn properties, formatting cleanup, fix a couple compiler warnings.Jeff Ames2008-08-151-1/+1
|
* Make the estate owner work. Changes permissions checks to allow theMelanie Thielker2008-08-141-16/+15
| | | | | | | estate owner user the ability to add and remove estate managers, and have EM rights outside of that.
* Mantis #1946Melanie Thielker2008-08-141-1/+1
| | | | | | | Thank you, HomerHorwitz, for a patch that corrects and improves TP to landmark and home position handling.
* * minor: make it clear on the console when a client is being logged out ↵Justin Clarke Casey2008-08-131-9/+12
| | | | because that client has not responded to pings
* Fix data format for last commitMelanie Thielker2008-08-121-1/+1
|
* Minor patch: fix an instance where the estate name, as displayed on theMelanie Thielker2008-08-121-3/+5
| | | | | | | Covenant page of the estate dialog, could be shown as the master avatar's name, or even as Test User
* * Stop warnings about non existent scene presences/entities being removed on ↵Justin Clarke Casey2008-08-121-5/+13
| | | | | | | | | client log off * This is being done by preventing close from being called twice on child agent closure (nres which would have been thrown are being swallowed). * However, it should be possible to do much better cleanup on this code in the future
* * Remove warningsJustin Clarke Casey2008-08-091-1/+1
|
* De-coupling the IClientAPI interface and ClientManager class from theMike Mazur2008-08-081-4/+7
| | | | | | | libsl/libomv Packet, as other client stacks could use other data types to pass packets around. Starting with InPacket() here, more to come.
* Patch #9158Melanie Thielker2008-08-071-45/+7
| | | | | | | Refactor packet sending into LLPacketHandler. Change packet sequencing and ack lists to ensure packet sequences conform to wire order.
* Minor formatting cleanup.Jeff Ames2008-08-071-8/+8
|
* * Fix probable cause of one of the bugs seen in the osgrid office hours todayJustin Clarke Casey2008-08-051-3/+4
| | | | | | * If a text string is too long we actually need to truncate to 254 chars rather than 255, since the Helpers.StringToField conversion will stick a \0 on the end
* Estate series, patch 9 (#9157)Melanie Thielker2008-08-011-3/+4
| | | | | | | | | Adds the new access semantics and the new flag (allow only age verified) Plumbs in the abuse email address from sim to viewer. The other way around, libomv appears to be lacking support for the data field in the packet. Includes a migration, run prebuild!
* * start tracking viewer session threadsJustin Clarke Casey2008-08-011-3/+4
|
* * minor: log message twiddlingJustin Clarke Casey2008-08-011-6/+4
|
* Thank you, HomerHorwitz, for a patch that implements ↵Melanie Thielker2008-07-311-0/+30
| | | | | | | | llSetCameraParams/llClearCameraParams. Fixes Mantis #1867
* Prevents Mantis #1829Melanie Thielker2008-07-271-0/+2
| | | | | | Add array size check to packet from viewer to prevent OOB exception
* renaming the increasingly ill-named ChatFromViewerArgs to OSChatMessageDr Scofield2008-07-251-5/+5
|
* Add GetGroupPowers() and a dictionary to hold them to ClientView andMelanie Thielker2008-07-251-0/+8
| | | | | | IClientAPI. No user functionality
* * minor: eliminate warnings from LindenUDPJustin Clarke Casey2008-07-241-2/+2
|
* refactor TaskInventoryItem Mask -> Permissions to be consistant with how thingsSean Dague2008-07-231-6/+6
| | | | | | are stored in the db.
* refactored LandData to use properties, and cleaned up the naming onSean Dague2008-07-231-37/+37
| | | | | | | the properties a bit to be more consistant with other objects (having things like .Name .Description, etc).
* Update svn properties. Formatting cleanup. Remove a compiler warning.Jeff Ames2008-07-231-14/+14
|
* Changed it so the avatar's rotation is now sent as part of a full avatar ↵MW2008-07-231-1/+6
| | | | | | | update. This should fix the wrong rotation on existing sitting avatar when logging in bug.
* Refactor the packet scheduling out of ClientView. Add intelligentMelanie Thielker2008-07-221-526/+41
| | | | | | | | | | resending, timeouts, packet discarding. Add notification event for packet discarding. Add priority scheduling for packet queues. Add outgoing duplicate detection facility. Correct packet sequencing. Make provisions for automatic server side throttle adjustments (comes in next installment)
* added experimental packet tracker (LLPacketTracker.cs), which can be told to ↵MW2008-07-211-40/+75
| | | | | | | | track a packet and if it hasn't been acked within a set time, trigger a IClientAPI event, that the application/scene can handle. Currently only terrain packet tracking is finished, Tracking for initial Prim packets (first full update for a prim) is being worked on. Future improvements would be to make it a more generic packet tracker with callback delegates instead of events. Add a test event handler (which would fire after a minute if a terrain packet hadn't been acked) to scene to handle the OnUnackedTerrain event, which currently just resends the terrain patch. The idea of this packet tracking is for the region level application to be able to know if the client stack gave up on sending a packet.
* Patch #9151Melanie Thielker2008-07-181-22/+42
| | | | | | Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans.
* Patch #9150Melanie Thielker2008-07-141-15/+15
| | | | | | Patch 7 of the region patches. Finish off the region parts of the estate dialog. Full user functionality. Terrain textures, heights, water, avatar counts, prim bonus, debug settings and region toggles can now be set from the dialog on a per-region basis. Estate stuff defaults to sane values where there are no defaults, to estate_settings.xml otherwise. Sun still b0rked :(
* Mantis#1638. Thank you kindly, Salahzar for a patch that:Charles Krinke2008-07-131-1/+3
| | | | | | Addresses an unused field in the asset server but never get filled up. It also makes working the recent items tab in inventory :))))
* Patch #9145 (Mantis #1723)Melanie Thielker2008-07-121-1/+5
| | | | | | Allows direct viewing of library scripts from inventory again
* Patches #9143 and #9144 (Mantis #1723)Melanie Thielker2008-07-121-0/+59
| | | | | | | | | | Changes the permissions module to make scripts permissive only when intended Adds security checks to asset transfers to prevent hacked clients fron requesting script sources. Adds security checks to llClientView to verify all aspects of ownership and permissions for inventory based script retrieval.
* Mantis#1005. Thank you kindly, Mircea for a two patches that:Charles Krinke2008-07-111-0/+5
| | | | | Addresses both locale issues and setting the waterHeight correctly.
* corrected the params types on IClientAPI.SendParcelMediaCommand. the command ↵MW2008-07-091-2/+2
| | | | parameter should be set to the the ParcelMediaCommandEnum value. While flags seems to need to be set to (uint)(1<<[value of the command enum])
* * Added experimental SendParcelMediaCommand and SendParcelMediaUpdate to ↵lbsa712008-07-081-0/+32
| | | | IClientAPI. These methods have not been tested, but feel free to start wiring them to llParcelMediaCommandList.
* * Changed casing of some archaic methods to conform with code standardslbsa712008-07-081-10/+10
|
* * Moved script packet handlers from 'unimplemented' to 'Script Packets'lbsa712008-07-081-173/+180
|
* mini-warnings-safari, plus cleanup of IUserServices method naming.Dr Scofield2008-07-041-11/+11
|
* * On client login, send only one terrain patch at a time (with pauses) ↵Justin Clarke Casey2008-07-031-9/+25
| | | | | | | | | instead of 4 at a time * Certain terrains which are fine went patches are sent singly cause a libsecondlife failure when patches are sent in batches * See http://opensimulator.org/mantis/view.php?id=1662 for more details