aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Fixed a whole bunch of console messages.Adam Frisby2007-12-041-1/+1
|
* Fixed bug in Appearance update in AvatarFactoryModule.MW2007-12-031-15/+18
|
* Some refactoringMW2007-12-031-7/+9
|
* minor meaningless changesJeff Ames2007-12-031-25/+24
|
* Just for Cfk!MW2007-12-021-1/+1
|
* Added some error handling (and console output) to BaseHttpServer.MW2007-12-021-10/+10
| | | | | a few other bits of refactoring.
* Very partial Avatar Appearance (ie, clothes/body parts) "storage". In ↵MW2007-12-021-16/+83
| | | | | | | | standalone mode it will mean that when you log off and log back on ,as long as the region server hasn't been restarted , your avatar will start with wearing the clothes that it wore on log off. In grid mode its even more limited in that wearing/removing clothes/body parts are only stored in the region server instance you are one. so if you are in a different region to your login region (which are on different region server instances), and then change clothes, those changes won't be remembered. So as said, its very limited but is a small step towards having proper appearance persist. Just need to store this data out to a database.
* small bit of refactoringMW2007-12-011-1/+11
|
* Part 1 of a commit. This revision will not compile, part 2 will be added in ↵MW2007-12-011-0/+30
| | | | | | | | | | | a couple of minutes that should fix that. Some work towards persisting Avatar Appearance (what is being worn). Added OnAvatarNowWearing event to IClientAPI that is triggered by AgentIsNowWearing packets. stub code to subscribe to this event in AvatarFactoryModule. Todo: code needs to be added to AvatarFactoryModule to save the uuids to a database and then read them back when that modules TryGetIntialAvatarAppearance() method is called. Done some changes to Scene to make it easier to subclass it: including changed some private fields to protected and made some methods virtual.
* * 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.
* * Refactored IClientAPI.OutPacket to require a second mandatory parameter. ↵Teravus Ovares2007-11-181-3/+3
| | | | This parameter has an enum:int ThrottleOutPacketType and contains types; Resend, Land, Wind, Cloud, Task, Texture, and Asset.
* cleaned up some mono compiler warningsJeff Ames2007-11-183-4/+4
|
* Attempt to get World Map working in Grid mode, will need to be using the ↵MW2007-11-181-1/+1
| | | | | | | | | | grid asset server for it to work correctly and has only been quickly tested in a three region grid. Moved PermissionManager creation out of the Scene constructor and instead a PermissionManager is passed to the constructor as a param. So that we could create and use custom permissionsManagers. Added AllowMovement property to ScenePresence which can be used to stop movement of avatars (for example in a custom region that wanted avatars always in one place). Added PermissionManager call when copying objects, although currently the call will always return true so that it allows copying in places like Wright Plaza. A few other changes/fixes.
* More cleaning up when deleting regions from a instance. NOTE: ↵MW2007-11-161-0/+4
| | | | IGridServices.DeregisterRegion() method needs implementing for grid mode.
* 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.
* don't break if they haven't defined the Sun section of their configSean Dague2007-11-091-2/+10
|
* make Sun progression configurable for the Sim from OpenSim.iniSean Dague2007-11-091-2/+3
|
* converted hard-coded chat type values to ChatTypeEnumJeff Ames2007-11-081-7/+7
|
* get rid of the debug line, that's just going to drive everyone nutsSean Dague2007-11-071-1/+1
|
* move Sun into a Region Module, pass 1. Currently this works fine withSean Dague2007-11-071-0/+178
| | | | | | | | | a fixed 30 minute day and the sun going East -> West again. It gets rid of super noon as well. It's a bit debug heavy right now, which I'll clean up tomorrow. I also plan to make time progression configurable in OpenSim.ini, but that will be tomorrow.
* 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.
* Added support for OpenSim application plugins (as requested by Adam), which ↵MW2007-11-042-2/+2
| | | | | | | use Mono.addins for loading/management. (which is a pure .net solution so works on both Mono and MS .net, and is under the MIT license, will add the source code for the library later). I also suggest we look into switching to using Mono.addins for our Region module loading management. A little bit more refactoring of Scene.
* * Diuerse beavtificatemslbsa712007-11-012-2/+2
|
* made illogical bitwise operations logicalJeff Ames2007-10-311-1/+1
|
* Step one on the long march towards grid based inventory. Introduction of an ↵Tleiades Hax2007-10-302-2/+2
| | | | InevntoryServer
* * Optimized usingslbsa712007-10-3017-317/+328
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-2910-9/+11
| | | | | | | 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.
* Started the process of cleaning up AssetCache and moving most of the code ↵MW2007-10-294-14/+204
| | | | into modules. Have moved TextureRequest handling (from the client) to a module. But even though to start with I just did a little bit of cleaning up of the existing code, it doesn't seem to work as good as the old code so I need to spend more time on it. So for now am committing my changes but with them not in use. So for now all Texture and asset requests are still handled by the old code in AssetCache.
* normalized line endingsJeff Ames2007-10-291-57/+57
|
* * Added prototypical AvatarFactory module interface to load avatar parameterslbsa712007-10-262-0/+59
| | | | | | | * 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.
* fix line ending mixing. Probably should put someSean Dague2007-10-211-124/+124
| | | | | | | wiki descriptions up on line endings so we don't keep ending up in this place.
* * Fixed an issue whereby avatar chat distances were being calculated against ↵Adam Frisby2007-10-201-5/+7
| | | | | | | the region corner due to a zero vector. * Bonus Commit: Fixed the Raster class in libTerrain.
* * IRC ChatModule extension should now be more stable.Adam Frisby2007-10-191-5/+16
|
* * Whisper, Say and Shout distances are now configurable (what the hell!)Adam Frisby2007-10-191-4/+12
|
* * Cross-border region chat should now work as long as both regions are part ↵Adam Frisby2007-10-191-59/+59
| | | | of the same simulator.
* * ChatModule is now shared between all scenes. (May be buggy.)Adam Frisby2007-10-191-18/+24
|
* * Major structural change: Begun converting Events to use (caller, args) ↵Adam Frisby2007-10-192-23/+64
| | | | | | | | syntax to conform with .NET guidelines. * OnChatFromViewer has been converted as an example. * Bug: SimpleApp's NPC client does not implement a Scene property and will likely crash with a NullReferenceException when it attempts to chat.
* enable IRC bridge via runtime configurationSean Dague2007-10-191-36/+49
|