aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/ChatModule.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Refactored Environment/Modules directory - modules now reside in their own ↵Adam Frisby2008-04-301-831/+0
| | | | | | | | 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.
* * Optimised using statements and namespace references across entire project ↵Adam Frisby2008-04-211-6/+8
| | | | (this took a while to run).
* make it so the IRC bridge only relays channel 0 messagesSean Dague2008-04-141-7/+10
| | | | | | not all of them (like it was doing before)
* a few small changesMW2008-04-011-7/+7
|
* Formatting cleanup.Jeff Ames2008-03-181-22/+27
|
* Formatting cleanup.Jeff Ames2008-03-181-26/+25
|
* * Removed and sorted using clauses in a number of files.Adam Frisby2008-03-031-1/+0
| | | | | | | | | | * Cleaned up ITerrainChannel * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Paint Brushes * Implemented Raise, Lower, Smooth, Flatten, Noise Terrain Fill Brushes * Implemented Export functionality for RAW32 terrain loader * Implemented Import/Export for SLRAW terrain loader * Implemented Export for JPEG terrain loader
* Cleaned up a couple compiler warnings.Jeff Ames2008-02-291-41/+27
|
* * Caught HttpListenerException and swallowed if with outputlbsa712008-02-251-1/+0
| | | | | | | | * Moved Flush into Close since it's always done in that order. * Minor renamings * Reversed if for clarity
* "threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen2008-02-211-2/+10
| | | | compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
* Minor cleanup.Jeff Ames2008-02-201-1/+1
|
* Playing "Name that thread". Adding names and isbackground=true to all ↵Tedd Hansen2008-02-191-3/+18
| | | | threads so it will be easier to debug.
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-141-2/+2
| | | | | | * Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
* Converted logging to use log4net.Jeff Ames2008-02-051-53/+50
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Chat Message format patch from kinoc (#443) Thanks!Adam Frisby2008-02-041-2/+19
|
* Thank you very much, Kinoc for : Moved the Listener loop try/catch to a ↵Charles Krinke2008-02-021-8/+17
| | | | | | | better position. Uses the IRC nick as the default when user location cannot be determined.
* Thank you, Kinoc for the ChatModule.cs updates.Charles Krinke2008-02-011-75/+491
|
* revert last IRC bridge changes as this broke chat on my test environment.Sean Dague2008-01-311-80/+23
| | | | | | Going to sift through the diff later to sort out what the root cause is here.
* Thanks kinoc for your improved IRC Gateway patch as referenced in mantis ↵Teravus Ovares2008-01-291-23/+80
| | | | issue 390.
* * Optimized usingslbsa712007-12-271-5/+5
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* make it so prims don't relay into IRCSean Dague2007-12-171-4/+2
|
* ignore Primitive for the IRC relaySean Dague2007-12-171-1/+3
|
* Fix for #176 (... doesn't appear in chat bubbles). This also gets the viewer ↵Jeff Ames2007-12-131-46/+15
| | | | to handle starting/stopping of the typing animation.
* refactored ChatModule a bit.Jeff Ames2007-12-101-88/+46
| | | | | misc cleanup and code convention fixes.
* removed old debugging code from IM and chat modulesJeff Ames2007-12-091-4/+0
|
* Updates to LibSL revision 1498. Thanks Johan!Adam Johnson2007-12-071-1/+1
|
* removed some duplicate hard-coded port numbers. changed ports to uint.Jeff Ames2007-12-061-3/+3
|
* keeping opensim safe for children -- made some namespace references less ↵Jeff Ames2007-12-041-4/+2
| | | | explicit
* * Fixed a whole bunch of console messages.Adam Frisby2007-12-041-1/+1
|
* * Did some initial work for prim crossing. Just glue so far.Teravus Ovares2007-11-211-1/+1
| | | | | * Added the child_get_tasks OpenSim.ini flag for testing the UDP packet sending code and packet throttler. This flag gets purposely disabled in grid mode. This flag also has the consequence that you can see the prim in neighboring regions without going into them. Be warned, this causes tons of dropped packets.
* cleaned up some mono compiler warningsJeff Ames2007-11-181-2/+2
|
* enable typing animation for chat, maybeJeff Ames2007-11-121-53/+71
|
* Fixing null pointer exception from Mathias Soeken:Dalien Talbot2007-11-111-2/+2
| | | | | | | | | e.Scene is copied to locale variable scene and replaced when it is null, but in the LLVector3 constructor in the next line, e.Scene is used, so it can be null.
* Started to cleanup/close down childagent connections when a user teleports. ↵MW2007-11-051-48/+51
| | | | | | | As the client will not close old childagent connections without being told explicitly to do so by each region the connection is to. Currently only implemented in standalone mode. ( the TellRegionToCloseChildConnection( ) in OGS1GridServices.cs needs implementing for grid mode, and the inter region .net remoting added for the new messages). hopefully fixed the echo bug in chatmodule.
* * Diuerse beavtificatemslbsa712007-11-011-1/+1
|
* Step one on the long march towards grid based inventory. Introduction of an ↵Tleiades Hax2007-10-301-1/+1
| | | | InevntoryServer
* * Optimized usingslbsa712007-10-301-115/+151
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-291-1/+1
| | | | | | | Have flattened the OpenSim.Framework project/namespace. The problem is that the namespace is still wrong as its "OpenSim.Framework" while the directory is "OpenSim\Framework\General" , so we need to decide if we change the directory or correct the namespace. Note this has lead to a big flat project, but I think a lot of the files we most likely don't even use any longer. And others belong in other projects/namespaces anyway.
* * Added prototypical AvatarFactory module interface to load avatar parameterslbsa712007-10-261-0/+2
| | | | | | | * Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
* remove debug lineSean Dague2007-10-231-1/+1
|
* after a small misunderstanding with the match group numbersSean Dague2007-10-221-5/+8
| | | | | | | IRC relay mode now has much more sensible broadcast messages in world and ignores non PRIVMSG commands
* my confusion on matches vs. groups in regex. This should work a bit betterSean Dague2007-10-221-5/+5
|
* make for nicer IRC messages. No promiss that this works yet, butSean Dague2007-10-221-4/+25
| | | | | | it is a first attempt. Will tune shortly.
* make IRC uglier for a while to get a better handle on writing a parser for ↵Sean Dague2007-10-221-1/+1
| | | | the messages
* nice catch by chi11ken that I was setting the wrong propertySean Dague2007-10-221-6/+6
|
* revert r2162 as it completely clobbered all the work onSean Dague2007-10-221-167/+214
| | | | | | | the ChatModule by MW and myself. Couldn't find Adam online after that rev went in.
* * Major ass commit.Adam Frisby2007-10-221-214/+167
| | | | | | | * Sqlite Storage Engine now supports terrain -- however be aware that every terrain revision stored will at 512KB to your database file. At the moment it is storing every revision from the first. * Fixed an issue where by noverbose mode would display lots of useless junk. Noverbose mode is now quite usable. * Fixed a whole bunch of console message issues such as naming and categorisation
* attempt to fix the muliple repeat problem (that sdague is getting) in the ↵MW2007-10-221-5/+8
| | | | IRC chat bridge code.
* update so that distances aren't required in the config fileSean Dague2007-10-221-4/+7
|
* pull the IRC portions into their own class. There is stillSean Dague2007-10-221-165/+206
| | | | | | | | something odd going on with multi-regions here, which I'll have to ask Adam about tomorrow. This should make it easier to just enhance the IRC portion of chat though.