aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-11-11Prevent pieces from other people's HUDs from displaying at the center ofMelanie Thielker1-2/+2
every user's HUD
2008-11-11Allow gods to terraform without limits. Respect the Allow Others ToMelanie Thielker1-1/+1
Terraform flag in land.
2008-11-10* Commit allows downloading of the .raw terrain from the estate tools.Teravus Ovares1-0/+6
* Implements the SendInitiateDownload method in IClientAPI * Uses the ITerrainModule Interface to write a terrain file to disk then uses a FileStream to read the binary file from the disk and put it in a byte array. and save to the xFer list. * It then tells the client to download the file and the client initiates an Xfer request.
2008-11-09Reintroduce transactionID to the parameter list for SendInstantMessage.Melanie Thielker1-2/+2
It is required by group IM and also for a proper implementation of item give, group notice attachments and offline IM.
2008-11-08* Added IClientChat to IClientCoreAdam Frisby1-86/+184
* Updated LLClientView * Removed defunct SendChatMessage(bytes[]...) method, see http://opensimulator.org/wiki/OpenSim_0.6_IClientAPI#Porting_Guide
2008-11-08* Added IClientIM to IClientCore interfacesAdam Frisby1-11/+11
* Changed SendInstantMessage, dropped fromAgentSession and imSessionID as security precaution, see http://opensimulator.org/wiki/OpenSim_0.6_IClientAPI#Porting_Guide for details on porting. * Removed unused usings from Framework.*
2008-11-07* Apply http://opensimulator.org/mantis/view.php?id=2582Justin Clarke Casey1-1/+1
* Send prim flags as booleans from LLClientView rather than in the native LL array * Thanks idb
2008-11-07Attachments, attachments, and, did I say attachments?Melanie Thielker1-2/+2
Too many fixes to list.
2008-11-01Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz1-0/+2
on-/offline updates, calling cards for friends. This adds methods in the DB layer and changes the MessagingServer, so a full update (incl. UGAIM) is necessary to get it working. Older regions shouldn't break, nor should older UGAIM break newer regions, but friends/presence will only work with all concerned parts (UGAIM, source region and destination region) at this revision (or later). I added the DB code for MSSQL, too, but couldn't test that. BEWARE: May contain bugs.
2008-10-29* Check in (disabled) results of not persisting avatar textures but rather ↵Justin Clarke Casey1-0/+6
sending ImageNotFound to clients if avatar textures are missing * Whilst this does automatically get the client to rebake, on crossing a region border the 'local' assets are left behind * There may be a cunning solution (such as squirting the assets on region crossing, or having them fetched from the original region) but instead I'm going to opt for the easy solution of keeping them in the asset database, for now
2008-10-28* minor: Add documentation to some of the appearance methods, change some ↵Justin Clarke Casey1-0/+12
logging messages
2008-10-26Committing a small fix for EventData along with more plumbing workMelanie Thielker1-1/+1
2008-10-25A few more bots to yesterday's plumbing: change instant message methodMelanie Thielker1-1/+1
signature
2008-10-24Plumb some moreMelanie Thielker1-0/+1
2008-10-21Pare the groups module down to basics. Adjust dependent files so that aMelanie Thielker1-1/+1
real groups module can even be implemented.
2008-10-19Added calling cards. Fixes Mantis#2409 and part of #1515.Homer Horwitz1-1/+12
2008-10-18Megapatch. :) Fix skull attachment editing. Streamline Object terse updates.Melanie Thielker1-4/+4
Add rezzing time to objects. Add Object return and traffic fields to land database. Add plumbing for auto return. Implement auto return. Contains a migration. May contain nuts.
2008-10-15* refactor: Remove OutPacket from the IClientAPIJustin Clarke Casey1-3/+1
* I believe this is reasonable since code outside the Linden client stack shouldn't be aware of the packet format being used * I would love to have made the method protected, but the LoadBalancerPlugin is still calling it and resolving that would require more work
2008-10-15* refactor: move viewer effect packet into LLClientViewJustin Clarke Casey1-0/+1
2008-10-15* refactor: move code concerned with creating a subsequent image packet to ↵Justin Clarke Casey1-0/+9
LLClientView
2008-10-15* refactor: rename SendImagePart to SendImageFirstPart since this is more ↵Justin Clarke Casey1-1/+9
descriptive of its actual function
2008-10-14* minor: change m_debug to m_debugPacketLevel since that's what it isJustin Clarke Casey1-2/+6
2008-10-14* refactor: rename SendKiPrimitive to SendKillObject since this appears more ↵Justin Clarke Casey1-1/+8
descriptive of what it actually does
2008-10-12Add EventInfoRequest and EventInfoReply packets.Homer Horwitz1-2/+4
Note: New file, run prebuild.
2008-10-11Add the 4 missing eventsMelanie Thielker1-0/+4
2008-10-11Plumb the remaining search packets and replies.Melanie Thielker1-0/+66
2008-10-10added a list of SurfaceTouchEventArgs to the IClientAPI.OnGrab event, for ↵MW1-1/+3
the new surface touch parameters in 1.21 viewers.
2008-10-10added a list of SurfaceTouchEventArgs to the IClientAPI.OnGrabUpdate event, ↵MW1-1/+1
for the new surface touch parameters in 1.21 viewers. TODO: add the touch args to OnGrabObject and OnDeGrabObject.
2008-10-10A bit more estate fudgingMelanie Thielker1-1/+1
2008-10-07* Apply http://opensimulator.org/mantis/view.php?id=1207Justin Clarke Casey1-1/+1
* Implmements llModifyLand() and a check for the "Allow others to terraform flag" * Thanks tglion!
2008-10-06* Stop the sim stats reporter reusing the same SimStatsPacket for all clientsJustin Clarke Casey1-1/+7
* I believe this was the cause of the remaining packet_out_of_order messages in the Linden client logs * There were race conditions where multiple clientstacks would overwrite each other's sequence numbers
2008-10-06Implement Parcel -> ForceOwnerToMe god mode packetMelanie Thielker1-0/+2
2008-10-06Revert r6697 patch as the build fails.Charles Krinke1-1/+1
2008-10-06Mantis#1207. Thank you, TGlion for a patch that addresses:Charles Krinke1-1/+1
Implementation of llModifyLand() and There is a bug on permission-check of land-terraforming: x an y-coordinates are interchanged on function-call ExternalChecksCanTerraformLand. Correct: x is west, and y is north. 2) Missing check of "Other allow to terraform-flag" (Parcel.ParcelFlags.AllowTerraform)
2008-10-06Implements ObjectOwner god mode packet (Set Owner To Me admin option)Melanie Thielker1-0/+2
2008-10-06* Green dots on the mainmap for avatar.Teravus Ovares1-0/+9
* Initial implementation * You'll only be able to seen green dots on regions on the map that have been updated.
2008-10-05Plumb in the DirPlacesReply packetMelanie Thielker1-0/+11
2008-10-04Plumb packet DirPlacesQuery for search moduleMelanie Thielker1-0/+3
2008-10-04Unclutter rezzing methods by removing the ad hoc permissions parameters.Melanie Thielker1-3/+1
Thise were client supplied untrusted values we never used anyway.
2008-10-04Add "Drop" functionality to pie menuMelanie Thielker1-0/+2
2008-10-03This changeset changes the way chat from client is routed: Dr Scofield1-1/+1
old way: each region module interested in chat from client had to - subscribe to scene.EventManager.OnNewClient - then in its OnNewClient delegate it would subscribe to client.OnChatFromViewer to capture chat messages coming new way: ChatModule is the only region module that uses the "old way" approach but is now forwarding all client chat via scene.EventManager.OnChatFromClient - each region module interested in chat from client now only subscribes to scene.EventManager.OnChatFromClient this not only simplifies code, but also allows us to substitute ChatModule with derived classes (ConciergeModule is going to be one example). Also, this changeset changes ChatFromViewer to ChatFromClient as it doesn't necessarily have to be a viewer that is a chat source. i've taken great care to only comment out those OnNewClient delegates that were only used for getting at the client chat --- hope it's not breaking anything.
2008-10-03Mantis #1360Melanie Thielker1-2/+3
Thank you, idb, for a patch to implement the packet and plumbing for the material settings.
2008-10-01- Added SendScriptTeleportRequest to IClientView and classes implementing it.Homer Horwitz1-0/+1
- Implemented llMapDestination.
2008-09-30* Fixed minor issue while building: If you do a raytraced object placement ↵Adam Frisby1-2/+1
and a target isn't found, the object is rezzed at 0,0,0 - instead now it will place according to the position sent by the client. * We may instead want to abort and send a "Cannot Rez Here" message?
2008-09-28Mantis#296. Thank you kindly, Idb for a patch that resolves:Charles Krinke1-0/+2
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.
2008-09-28Add some methods to allow modules so set client view optionsMelanie Thielker1-0/+2
2008-09-26* Patch from JHurlimanTeravus Ovares1-2/+1
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-26* Wind updates. Still random.. but in 4 directions instead of two!Teravus Ovares1-1/+1
* 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-25* Adds some WindTeravus Ovares1-0/+3
* 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-12* Patch http://opensimulator.org/mantis/view.php?id=2167Justin Clarke Casey1-0/+1
* Force ClickAction persistence even if other object properties are not edited * Thanks nlin!