aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Avatar (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-05-28Formatting cleanup.Jeff Ames2-25/+25
2008-05-27fixes a CTB when IRCBridgeModule is not configured.Dr Scofield1-2/+2
2008-05-27cleaning up: coding style guidelines violation in RestPlugin.cs. Dr Scofield1-0/+23
adding support for enabled = true|false for IRCBridgeModule
2008-05-27I'm dropping the ISimChat interface as that has now been Dr Scofield2-3/+4
replaced by EventManager events. also, i've added instructions to README.txt about running runprebuild.sh and on how to report bugs. plus some minor fixes (dropping m_log statement left over from debugging llOwnerSay, nicer catch of exception in IRCBridgeModule
2008-05-26This cleans up a merge mess from the earlier checkin and implements ↵Dr Scofield2-35/+28
llOwnerSay() via the newly created Scene.SimBroadcast() call.
2008-05-26Adding OnChatBroadcast event logic to EventManager providing Dr Scofield2-108/+149
a clean interface for Sim broadcasts. Added SimBroadcast support to ChatModule. Removing all code from IRCBridgeModule dealing with agent/client directly. Cleaning up ChatModule. Polishing IRC messages, adding support for "/me" (both directions).
2008-05-25Update svn properties. Formatting cleanup.Jeff Ames4-20/+20
2008-05-23forgot to actually remove IRCBridgeModule.FindClientRegion()Dr Scofield1-32/+0
2008-05-23IRCBridgeModule (and ChatModule before the refactoring) didn't succeed in Dr Scofield2-3/+860
finding out which region a new avatar was logging in to; the same problem occurred when the client/avatar logged out. the reason was mani-fold: - Scene.AddNewClient(...) would call SubscribeToClientEvents(client) which would subscribe to all client events and then call TriggerOnNewClient(...) BEFORE the ScenePresence object had even been created and added. i've moved the TriggerOnNewClient() call to the end of Scene.AddNewClient() - Scene.AddNewClient(...) is called with child == true; a later call to ScenePresence.MakeRootAgent() will turn child to false. When OnNewClient is triggered, child is still true, causing IRCBridgeModule's FindClientRegion to ignore the ScenePresence of the new avatar. i've changed IRCBridgeModule to still use OnNewClient and also OnLogout and OnConnectionClosed but only to signal that the avatar has logged on (logged off respectively). to track whether an avatar has actually entered a region i've added EventManager.OnMakeRootAgent (complementing OnMakeChildAgent). also, i've cleaned up the internal IRCModule code a bit. currently it still uses IClientAPI.SendChatMessage() which replicates the code in ChatModule, that needs to be changed to use TriggerOnChatFromWorld().
2008-05-23i've refactored the ChatModule into two modules: ChatModule and IRCBridgeModule.Dr Scofield1-709/+37
ChatModule is now only doing in-world chat. IRCBridgeModule is only doing, well, bridging chat to/from IRC. Both modules are now using a new OnChatFromWorld event handler (which Scene.PacketHandler is feeding for chat from in-world instead of going via the Interface method). This refactoring will allow us to easily add other bridge modules (e.g., an XMPP bridge module). there is still a bug in IRCBridgeModule (inherited from the old ChatModule) where FindClientRegion does not really find the client region...
2008-05-23Thank you kindly, Melanie, for a patch which:Charles Krinke1-0/+4
Previously, upload charging was possible only for UPD uploads. This is because UDP uploads are charged by the viewer, while in CAPS, this was changed to be server side, so hackers couldn't avoid paying the upload charge. This patch adds a method to allow implementation of this serverside charge.
2008-05-22* Plug in stubbed out archiver moduleJustin Clarke Casey1-2/+2
2008-05-20i'm extending the RestStreamHandler.Handler(...) signature to actually Dr Scofield2-4/+8
provide OSHttpRequest and OSHttpResponse to our REST handler. also, this adds proper RestPlugin.IsGod() checking against the X-OpenSim-Godkey HTTP request header. last, i added XML doc comments to RestPlugin.cs
2008-05-18* Patch #1312 from Melanie - Abstracts Money Module to IMoneyModule.Adam Frisby1-9/+0
2008-05-18* Group type stuff. Nothing spectacular. two packets, sorta almost semi ↵Teravus Ovares1-9/+45
half tiny amount implemented.
2008-05-17Thank you very kindly, Melanie for: Charles Krinke1-2/+3
The money module witll register (claim) an interface slot, even when disabled. This patch fixes it so that it will not register to supply this interface unless it's activated.
2008-05-16Formatting cleanup.Jeff Ames6-22/+22
2008-05-14* Added standard copyright and removed un-necessary using of ↵Teravus Ovares1-1/+0
libsecondlife.Packets
2008-05-14* Adding the very bare minimum for the client to register user as having the ↵Teravus Ovares1-38/+9
group OpenSimulator Tester. This allows us to start examining and implementing the vary many unhandled group packets.
2008-05-14* Added 3 warnings in response to the warnings. Adam, read the warnings.Teravus Ovares1-0/+1
2008-05-14* Refactored OutPacket out of ScenePresence Teravus Ovares1-1/+1
* Down to 65 warnings.
2008-05-14* Removed 19 warningsTeravus Ovares2-3/+3
2008-05-14* Refactored OutPacket and FirstName/LastName out of Friends Module.Teravus Ovares1-27/+13
2008-05-14* Added the same catch on the 2nd place that objects fail to lock.Teravus Ovares1-0/+7
2008-05-14* Applying Melanie's FriendList related crash patch. She discovered that ↵Teravus Ovares1-1/+8
.NET throws a different error then mono does. Thanks Melanie!
2008-05-06* Cleaning up code, making it conform to OpenSim standards.Adam Frisby1-1/+1
2008-05-05* Unraveled the DEBUG_CHANNEL mystery.Teravus Ovares1-9/+21
* 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-03* Refactor: Renaming item and folder tree search methods to have Find*() ↵Justin Clarke Casey1-1/+1
prefixes
2008-05-03* For your fragging desire, damage enabled land works, but watch out!, life ↵Teravus Ovares1-3/+74
does not regenerate until you're dead!
2008-05-01* Rolled back a few changes.Adam Frisby6-92/+96
2008-05-01* Spring cleaning on Region.Environment. Adam Frisby6-96/+92
* Converted a large number of read-only fields to be actually, readonly. * Reformatted code sections. * Removed redundant code.
2008-05-01* Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby2-4/+4
with namespaces.
2008-05-01Update svn properties. Minor formatting cleanup.Jeff Ames10-4442/+4442
2008-04-30* Cruft removal step #1. Cleaning Modules directory.Adam Frisby9-1042/+1067
2008-04-30* Refactored Environment/Modules directory - modules now reside in their own ↵Adam Frisby10-0/+4426
directory with any associated module-specific classes. * Each module directory is currently inside one of the following category folders: Agent (Anything relating to do with Client<->Server communications.), Avatar (Anything to do with the avatar or presence inworld), Framework (Classes modules can use), Grid (Grid traffic, new OGS2 grid comms), Scripting (Scripting functions, etc), World (The enrivonment/scene, IE Sun/Tree modules.) * This should be moved into a seperate project file.