aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add "Drop" functionality to pie menuMelanie Thielker2008-10-041-0/+1
|
* This changeset changes the way chat from client is routed: Dr Scofield2008-10-031-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Mantis #1360Melanie Thielker2008-10-031-2/+3
| | | | | | | Thank you, idb, for a patch to implement the packet and plumbing for the material settings.
* - Added SendScriptTeleportRequest to IClientView and classes implementing it.Homer Horwitz2008-10-011-0/+4
| | | | | | - Implemented llMapDestination.
* Mantis#296. Thank you kindly, Idb for a patch that resolves:Charles Krinke2008-09-281-0/+1
| | | | | | | | | 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-281-0/+9
|
* * Patch from JHurlimanTeravus Ovares2008-09-261-2/+1
| | | | | | | | | * Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
* * Wind updates. Still random.. but in 4 directions instead of two!Teravus Ovares2008-09-261-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.
* * Adds some WindTeravus Ovares2008-09-251-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.
* * Patch http://opensimulator.org/mantis/view.php?id=2167Justin Clarke Casey2008-09-121-0/+1
| | | | | | | * Force ClickAction persistence even if other object properties are not edited * Thanks nlin!
* Update svn properties, minor formatting cleanup.Jeff Ames2008-09-101-1/+1
| | | | | Fix unreachable code due to typo in llDetectedGroup.
* * Adds OnGenericMessage and SendGenericMessage functionality to IClientAPI.Adam Frisby2008-09-091-1/+7
| | | | | * Please don't break the build. *fingers crossed*
* Update svn properties, formatting cleanup.Jeff Ames2008-09-091-4/+4
|
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-102/+102
| | | | | | | * 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.
* Update svn properties, formatting cleanup.Jeff Ames2008-08-281-2/+2
|
* * This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares2008-08-251-0/+10
| | | | | | | | 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)
* Implements 80% of object buy (prim vendor). You can't buy the object yet,Melanie Thielker2008-08-241-1/+4
| | | | | | | 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/+10
| | | | | | | | | | | 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.
* Formatting cleanup.Jeff Ames2008-08-181-4/+4
|
* Mantis#1965. Thank you kindly, HomerHorwitz for a patch that:Charles Krinke2008-08-161-0/+12
| | | | | | | | | | | | | | | | | | | | | | | 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.
* Plumb the user flags all the way through to the profile. userFlags inMelanie Thielker2008-08-151-1/+1
| | | | | | | | 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.
* De-coupling the IClientAPI interface and ClientManager class from theMike Mazur2008-08-081-1/+1
| | | | | | | libsl/libomv Packet, as other client stacks could use other data types to pass packets around. Starting with InPacket() here, more to come.
* Minor formatting cleanup.Jeff Ames2008-08-071-4/+4
|
* Estate series, patch 9 (#9157)Melanie Thielker2008-08-011-1/+1
| | | | | | | | | 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!
* Thank you, HomerHorwitz, for a patch that implements ↵Melanie Thielker2008-07-311-0/+8
| | | | | | | | llSetCameraParams/llClearCameraParams. Fixes Mantis #1867
* renaming the increasingly ill-named ChatFromViewerArgs to OSChatMessageDr Scofield2008-07-251-2/+2
|
* Add GetGroupPowers() and a dictionary to hold them to ClientView andMelanie Thielker2008-07-251-0/+5
| | | | | | IClientAPI. No user functionality
* Changed it so the avatar's rotation is now sent as part of a full avatar ↵MW2008-07-231-1/+1
| | | | | | | 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-3/+11
| | | | | | | | | | 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-2/+7
| | | | | | | | 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-3/+4
| | | | | | 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.
* corrected the params types on IClientAPI.SendParcelMediaCommand. the command ↵MW2008-07-091-1/+1
| | | | 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-1/+11
| | | | 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
|
* properly explaining each #pragma warning disableDr Scofield2008-06-301-2/+3
| | | | | | massaging OSHttpRequestPump to not abort on exceptions...
* Mantis#1616. Applied Melanie's patch. This may or mayCharles Krinke2008-06-281-0/+6
| | | | | not break trunk.
* * Various documentation to some black magic parts of LLClientView Teravus Ovares2008-06-281-0/+4
| | | | | * Added IClientAPI.SendTexture stub.
* Mantis#1597. Thank you, Melanie for a patch that:Charles Krinke2008-06-261-0/+1
| | | | | | Adds handlers for the reclaim land functionality, plus all needed permissions checks.
* added the flag param to IClientAPI.SendMapBlockMW2008-06-251-1/+1
|
* * Adds Region ban capability to Regions. You access this by going to ↵Teravus Ovares2008-06-211-0/+5
| | | | | | | | 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.
* Mantis#1543. Thank you kindly, Jonc for a patch that:Charles Krinke2008-06-191-1/+3
| | | | | | Implements terrain bake from Region/Estate dialog and respects estate settings during terraforming
* * Refactors call to OutPacket out of AssetCache and into LLClientViewTeravus Ovares2008-06-181-0/+4
|
* *Parcel Prim Count Maximums moved to their own functions so modules can ↵mingchen2008-06-111-1/+1
| | | | override the default method of calculating how many prims a parcel can have.
* * This wraps the autopilot request to the client's sit response. An ↵Teravus Ovares2008-06-061-0/+1
| | | | | | | interesting, but successful way to do it. * This also takes care of a few error situations that were previously never seen.
* Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke2008-05-281-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.
* Thank you kindly, Melanie for a patch for script resetCharles Krinke2008-05-261-0/+2
| | | | | that creates the event handler chain ready to hook by script engines
* * Adds Top Colliders when using ODE. Access it from the estate tools/debug tab.Teravus Ovares2008-05-251-1/+5
|
* This enables return from the parcel object owner display.Teravus Ovares2008-05-241-0/+1
| | | | | 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.
* * Group type stuff. Nothing spectacular. two packets, sorta almost semi ↵Teravus Ovares2008-05-181-0/+7
| | | | half tiny amount implemented.
* * Tweaked patch mantis 1302 and committing it.Teravus Ovares2008-05-171-1/+16
|