aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-06-26Mantis#1597. Thank you, Melanie for a patch that:Charles Krinke1-0/+2
Adds handlers for the reclaim land functionality, plus all needed permissions checks.
2008-06-25added the flag param to IClientAPI.SendMapBlockMW1-1/+1
2008-06-25first part of Requestmapblocks fixes: Adds uint flags param to the ↵MW1-1/+1
OnRequestMapBlocks event (and handler), as when a client sends a map block request it also sends what layer it wants it for 0,1,2. It will always send two requests, one of them being for layer 2 (the overlay layer) and the other one either 0 or 1 depending on the tab that is selected in the client worldmap window. We should also be sending what layer the reply is for in IClientAPI.SendMapBlock (current always set to 0). That will come in next part (most likely at the weekend).
2008-06-21* Adds Region ban capability to Regions. You access this by going to ↵Teravus Ovares1-0/+3
World->Region/Estate. Then on the Estate tab, at the lower right hand corner, clicking the 'Add' button and picking an avatar. * It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores.
2008-06-19Mantis#1543. Thank you kindly, Jonc for a patch that:Charles Krinke1-1/+3
Implements terrain bake from Region/Estate dialog and respects estate settings during terraforming
2008-06-18* Refactors call to OutPacket out of AssetCache and into LLClientViewTeravus Ovares1-0/+2
2008-06-11*Parcel Prim Count Maximums moved to their own functions so modules can ↵mingchen1-1/+1
override the default method of calculating how many prims a parcel can have.
2008-06-06* This wraps the autopilot request to the client's sit response. An ↵Teravus Ovares1-0/+1
interesting, but successful way to do it. * This also takes care of a few error situations that were previously never seen.
2008-05-28Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke1-1/+1
llLoopSound sends out one packet to clients in view, so it doesn't work anymore when clients enter later on, or the prim is modified in any way. Solution: Stored sound data on prim, send full update instead. llStartSound and llLoopSound now accept both LLUUIDs to a sound as well as object inventory sound names. llStopSound clears prim data and sends full update.
2008-05-26Thank you kindly, Melanie for a patch for script resetCharles Krinke1-0/+2
that creates the event handler chain ready to hook by script engines
2008-05-26This cleans up a merge mess from the earlier checkin and implements ↵Dr Scofield1-0/+13
llOwnerSay() via the newly created Scene.SimBroadcast() call.
2008-05-25* Adds Top Colliders when using ODE. Access it from the estate tools/debug tab.Teravus Ovares1-0/+6
2008-05-24This enables return from the parcel object owner display.Teravus Ovares1-0/+3
There's some oddness with the parcel counts, but if you can get past the oddness, you can return objects under an owner that you have permission to return.
2008-05-23Thank you kindly, Melanie, for:Charles Krinke1-1/+1
Nothing huge, but the new button code for producing a new script does well, but the script will not allow for name change once created. It reverts back to new script.
2008-05-18* Group type stuff. Nothing spectacular. two packets, sorta almost semi ↵Teravus Ovares1-1/+3
half tiny amount implemented.
2008-05-17* Tweaked patch mantis 1302 and committing it.Teravus Ovares1-2/+9
2008-05-16* Committing patch from mantis 0001297: [PATCH] Fix behavior of child prim ↵Teravus Ovares1-1/+1
inventories. Also enables 'New Script' button. from Melanie. Thanks Melanie!
2008-05-16Formatting cleanup.Jeff Ames1-17/+17
2008-05-14* Adding the very bare minimum for the client to register user as having the ↵Teravus Ovares1-0/+3
group OpenSimulator Tester. This allows us to start examining and implementing the vary many unhandled group packets.
2008-05-14* Refactored OutPacket out of ScenePresence Teravus Ovares1-3/+8
* Down to 65 warnings.
2008-05-14* Refactored OutPacket and FirstName/LastName out of Friends Module.Teravus Ovares1-2/+4
2008-05-13*Complete redo of the permissions modulemingchen1-0/+3
*Removed hardcoded permissions checks *Added permissions checks where needed
2008-05-12* Added some build warnings for Teravus. :)Adam Frisby1-1/+11
2008-05-12Formatting cleanup.Jeff Ames1-1/+1
2008-05-110001199: [PATCH] Add support for default animations Teravus Ovares1-0/+1
From Melanie... Thanks Melanie! .
2008-05-10* Refactored two more OutPackets. ObjectPropertiesFamily, and Object ↵Teravus Ovares1-0/+11
Properties.
2008-05-10* More OutPacket refactors.Teravus Ovares1-0/+3
* Added back a sleep to the kick routine so users get a 'you have been logged off message' when they get kicked from the simulator for various reasons (like 'the simulator is going down')
2008-05-10* Two more OutPacket refactors. TextureSender.Teravus Ovares1-0/+2
* The split image packet sender doesn't like to be refactored (images don't load after it's been refactored), so left that as is for the moment.
2008-05-10Refactored out a few warnings related to Adam's bane OutPacketTeravus Ovares1-0/+4
2008-05-08* Proper fix for 1191 - Missing TypeData in ViewerEffectEventHandlerArg.Adam Frisby1-0/+1
2008-05-08* Applying patch #1121 - Fixes for llListen() (Thanks Middlelink!)Adam Frisby1-0/+2
2008-05-07* Added Obsolete() tag to IClientAPI.OutPacket.Adam Frisby1-1/+1
* Increased compiler warnings by a whoppingly large number.
2008-05-07* Removes references to libsecondlife.Packets from IClientAPI. BAD ↵Adam Frisby1-7/+77
PROGRAMMERS. NAUGHTY. * Thanks to Andrew (DeepThink) for working on this one.
2008-05-07* Other then the prim update experiments that are going on now, ↵Teravus Ovares1-0/+4
llTakeControls works now along with the 'release controls button'. llReleaseControls() works mostly :D.
2008-05-07get all the right bits to SendPrimitiveToClient so we can actuallySean Dague1-8/+11
set vel, acc, and rvel in the packet (though this isn't done yet).
2008-05-07From: Alan M Webb <awebb@vnet.ibm.com>Justin Clarke Casey1-1/+1
The attached patch moves the sun module incrementally nearer where it needs to be. Default behavior, i.e. no overriding configuration is to match Second Life's diurnal/nocturnal rhythm. All designated values are now sent to the client.There remain a couple of unanswered questions about how this SHOULD be implemented though.
2008-05-06send actual velocity and angular velocity in terse updatesSean Dague1-1/+1
instead of hardcoding to zero when the primitive is non physical. llTargetOmega should work now.
2008-05-06*LLClientView is now pushed the EstateSettings instead of pulling it from ↵mingchen1-5/+52
the scene...more to standards *LandChannel no longer requires libsecondlife.Packets (it should have never needed it in the first place)
2008-05-06* Committing a bunch of work for control snatching. Not done yet. No ↵Teravus Ovares1-0/+3
visible features.
2008-05-05*Standardized the Land module by removing all references to ↵mingchen1-1/+26
libsecondlife.packets
2008-05-05* Unraveled the DEBUG_CHANNEL mystery.Teravus Ovares1-2/+10
* Moved script errors to the debug channel. * Typing '/2147483647 OK' results in a debug_channel message. * Expanded the available parameters that are send-able through IClientAPI
2008-05-04*Fixed a mistake in the EstateManagementModule that messed up the trunk.mingchen1-0/+1
2008-05-04*Fixed up EstateManagementModule to the module standard - no more packets ↵mingchen1-3/+41
allowed! *Started cleaning up the land module
2008-05-03* For your fragging desire, damage enabled land works, but watch out!, life ↵Teravus Ovares1-0/+1
does not regenerate until you're dead!
2008-05-02* Refactored ClientView into LLClientView. Removed all direct references to ↵Adam Frisby1-0/+6
UDPServer and replaced with IClientNetworkServer. * This should, in theory, let us make new servers with different protocols very easily (rather than the challenge we would have faced before). * BREAKS LoadBalancing module for the moment. * Commit 1/3 - Please dont attempt to update to this revision until all 3 are in.
2008-04-30* Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares1-3/+6
Thanks A_Biondi and Melanie! * This builds but might not work. JustinCC will examine.. it may work out of the box.
2008-04-29* Spring cleaning.Adam Frisby1-73/+83
* Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned.
2008-04-28* Added basic 3-5 level undo on prim position/rotation/scale.Teravus Ovares1-0/+2
* In the future this should be a config option... and, hopefully this tides the builders over for a little while.
2008-04-27* Single Attachments now work from inventory. You can attach from inventory ↵Teravus Ovares1-0/+1
and detach from inventory. * Detaching from right clicking in world, detaches to your inventory. * If you go up to a prim and attach it from in world, it appears in your inventory. * Attachment placement is saved when you detach them. * Choosing wear remembers your last attachment point from inventory. * Wrote a method to update an inventory item's asset and sends the updated inventory item to the Client * Wrote a recursive method to find the folder of a known existing inventory item. * Removed a block on physics object position on creation. This might crash a region or two, let us know via Mantis if your region crashes because of a physics out of bounds error. * Drop doesn't work. The menu item doesn't even come up. Don't know why :P.
2008-04-27* More attachment stuff, reworked some of the inventory routines to be what ↵Teravus Ovares1-2/+2
I need them to be for attachments.