aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-19Thank you, Snowdrop, for a patch that makes the callback ID parameterMelanie Thielker1-1/+1
usable. Applied with formatting changes, please don't introduce K&R style indentations into OpenSim Fixes Mantis #3190
2009-02-17Re-add the objectID field to the anim pack, that was deemed unneccessaryMelanie Thielker1-1/+1
and dropped nonths ago, because it is required to get smooth region crossings with AO running. Without it, in some corner cases, anims will continue to run in an unstoppable state.
2009-02-12* optimized usings.lbsa711-2/+1
2009-02-11* Change SendBulkUpdateInventory from two methods to one which accepts an ↵Justin Clarke Casey1-5/+1
InventoryNode
2009-02-06This changeset is the step 1 of 2 in refactoringDr Scofield5-6/+6
OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
2009-01-12* Separate starting a client thread into a separate Start() method (which ↵Justin Clarke Casey1-0/+4
matches the existing Stop() and Restart() methods)
2009-01-09Finish dwell sending, adding the forgotten method body.Melanie Thielker1-1/+6
Add UserInfo and a dummy reply to enable Hippo Viewer users to disable IM logging (option was greyed out in OpenSim before)
2009-01-03Plumb the remaining dwell packetsMelanie Thielker1-0/+5
2008-12-25Plumb the profile reply packets for picks, classifieds and notesMelanie Thielker1-0/+17
2008-12-23Plumb in EventNotification* and EventGodDeleteMelanie Thielker1-0/+4
2008-12-23Plumb in the 4 missing classified events and the 3 packet methodsMelanie Thielker1-0/+13
2008-12-21* Re-implement packet tracking in IClientAPI so we can see what's going on ↵Teravus Ovares1-0/+1
in the client network in the simstats manager. This makes packets in per second, packets out per second, and unacked bytes work again in the simulator stats section.
2008-12-14Plumb the TP-Sending packetsMelanie Thielker1-0/+2
2008-12-12Add missing scene reference. Fixes a NRE. SimpleModule now works again (sort ↵Homer Horwitz1-1/+2
of).
2008-12-12Replace the throwing of a NonImplementedException in MyNpcCharacter, so thatHomer Horwitz1-1/+1
the SimpleModule doesn't prevent the start of the region server, if used. Note: This module doesn't do anything sensible; it only serves as an example.
2008-12-04* Put in the code necessary to allow inventory transfer of whole folders ↵Justin Clarke Casey1-0/+3
(and their contents) between agents, not just single items * However, this is not currently activated since it's not absolutely fully tested and there's a bug lurking in there to do with the sending of the BulkInventoryUpdate packets
2008-11-28* simplify AddNewClient since making this root without using MakeRootAgent() ↵Justin Clarke Casey1-1/+2
no longer sets everything up properly
2008-11-27Thank you kindly, Nlin for a patch that:Charles Krinke1-0/+10
Adds a new method to IClientAPI to allow adding message handlers for GenericMessages (of which "autopilot" is one). Part 2 adds a specific autopilot handler in ScenePresence.cs. 2) Removing unused variables and functions. 3) Simplifying the navigation logic in ScenePresence.cs. The original patch was somewhat complex because it included orientation logic for a future enhancement of orienting the avatar to point towards the direction being walked. Currently this isn't working, though, so I removed the orientation code, which leaves just the smaller and hopefully simpler-to-understand movement code.
2008-11-22First stage group permissions plumbingMelanie Thielker1-0/+5
2008-11-19Mantis#2638. Thank you kindly, Sacha Magne for a patch that:Charles Krinke1-0/+1
Implementing "Play sound inworld". Currently a WIP .
2008-11-16Remove a redundant parameterMelanie Thielker1-1/+1
2008-11-14* Implements terrain raw upload. You can now upload your .raw terrain files ↵Teravus Ovares1-0/+2
using the Estate Tools. * Could this be extended in the future to support .oar uploads too? Only time will tell!
2008-11-14More groups plumbingMelanie Thielker1-0/+12
2008-11-11Prevent pieces from other people's HUDs from displaying at the center ofMelanie Thielker1-2/+3
every user's HUD
2008-11-10* Commit allows downloading of the .raw terrain from the estate tools.Teravus Ovares1-0/+5
* 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-10* Extend basic scene test to retrieve the object from the scene and match uuidsJustin Clarke Casey1-9/+9
* Decouple sog and sop by removing the need to pass the sog to the sop when it is created - most of the code was doing this operation (and hence duplicating it) anyway * Remove unused constructors
2008-11-09Reintroduce transactionID to the parameter list for SendInstantMessage.Melanie Thielker1-1/+1
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 IClientIM to IClientCore interfacesAdam Frisby1-6/+5
* 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* refactor: cleanup AllocateLocalPrimId() a bit moreJustin Clarke Casey1-4/+2
2008-11-07* Rename PrimIDAllocate() to more effectively convey what it does, and put ↵Justin Clarke Casey1-2/+2
the verb at the front
2008-11-07* Stop requiring local ids in the SOG constructors.Justin Clarke Casey3-13/+13
* These are assigned when the object is attached to the scene
2008-11-07* Remove more UpdateParentIDs() calls that are now duplicatesJustin Clarke Casey1-2/+0
2008-11-07Attachments, attachments, and, did I say attachments?Melanie Thielker1-1/+1
Too many fixes to list.
2008-11-06* refactor: Attach a scene object to a scene separately from its constructionJustin Clarke Casey3-16/+14
2008-11-01Megapatch that fixes/adds: friend offer/deny/accept, friendship termination,Homer Horwitz1-0/+4
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-1/+5
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-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/+4
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-0/+16
2008-10-18Megapatch. :) Fix skull attachment editing. Streamline Object terse updates.Melanie Thielker1-7/+2
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-8/+7
* 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/+4
2008-10-15* refactor: move code concerned with creating a subsequent image packet to ↵Justin Clarke Casey1-0/+4
LLClientView
2008-10-15* refactor: rename SendImagePart to SendImageFirstPart since this is more ↵Justin Clarke Casey1-1/+1
descriptive of its actual function
2008-10-14* minor: change m_debug to m_debugPacketLevel since that's what it isJustin Clarke Casey1-1/+1
2008-10-14* refactor: rename SendKiPrimitive to SendKillObject since this appears more ↵Justin Clarke Casey2-3/+3
descriptive of what it actually does
2008-10-12Add EventInfoRequest and EventInfoReply packets.Homer Horwitz1-1/+5
Note: New file, run prebuild.
2008-10-11Plumb the remaining search packets and replies.Melanie Thielker1-7/+36