aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* First part of Scene refactoring:MW2007-11-031-367/+0
| | | | | | Started the move of some of the methods from scene into a inner class (currently called InnerScene.cs), the idea being that the code related to the 3d scene (primitive/entities/Avatars etc) will be in this inner class, then what is now Scene.cs will be left as a kind of wrapper class around it. And once the spilt is complete can be renamed to something like RegionInstance (or any name that sounds good and ids it as the Region layer class that "has" a scene). Added SceneCommunicationService which at the moment is a kind of high level wrapper around commsManager. The idea being that it has a higher level API for the Region/Scene to send messages to the other regions on the grid. a Example of the API is that instead of having sendXmessage methods, it has more functional level method like PassAvatarToNeighbour. Hopefully this will allow more freedom to do changes in communications that doesn't break other things.
* * Diuerse beavtificatemslbsa712007-11-011-5/+3
|
* Tevarus' patch for object flags & implemented Phantom editsdan miller2007-10-301-0/+16
|
* * Optimized usingslbsa712007-10-301-13/+9
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-291-1/+2
| | | | | | | 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.
* * Major structural change: Begun converting Events to use (caller, args) ↵Adam Frisby2007-10-191-1/+16
| | | | | | | | 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.
* * Instant Message functionality moved into a Region ModulesAdam Frisby2007-10-191-35/+1
| | | | | * You can now send instant messages to any user on the simulator, regardless of what region they are in.
* * Slowly but surely working my way towards Regionality...lbsa712007-09-211-5/+5
|
* * Continuing refactoring of presencelbsa712007-09-211-2/+2
| | | | | | | | * Deleted stub ScenePresence.Body.cs * Added stub Region classes The idea is to, at first, have every ScenePresence have one RegionPresence, moving code over to it until we can detach the two classes and not have a ScenePresence for every RegionPresence.
* * even more renaming and refactoring; the cleaning woman is on call.lbsa712007-09-201-2/+2
|
* * Some more presence refactoringlbsa712007-09-201-4/+4
|
* Rev 1971 : The Lbsa71 vintage commitlbsa712007-09-201-6/+5
| | | | | * Refactored to prepare for some serious restructuring
* * Rewired Touch to route to group/part (Still triggering EventManager as well)lbsa712007-09-201-0/+14
|
* * Modernized ScriptManager to new interface-based module calls.lbsa712007-09-191-60/+55
| | | | | * 'remove redundant this qualifier' ftw
* * Wired up chat so that channel goes into OnChatFromViewer. However:lbsa712007-09-141-2/+2
| | | | | | | * There's no libsl reply packet field for it, I guess other channels than 0 makes no sense sending back to clients. * We do not currently support objects listening, so there's really no way of actually using this feature. So; somebody please wire chat all the way to the scripts.
* mass update of urls in source code to new websiteSean Dague2007-09-101-1/+1
|
* Some work on Module loading/management.MW2007-09-041-49/+4
| | | | | | | | Some more modules templates classes (hoping that someone will pick some of these and work on implementing them). Early version of the "Dynamic Texture Module", although currently there are no render modules included (so not really functional without them). Added osSetDynamicTextureURL script function, for attaching a dynamic texture to a prim. Some work on the console command handling. Added "change-region <regionname>" and "exit-region" so that after the use of change-region, the commands entered will apply to that region only. Then use exit-region to return to the top level (so commands then function as they did before and either apply to all regions or to the first region) (Note: this hasn't been tested very much)
* Various small changes (some likely to be removed again soon)MW2007-08-291-0/+9
|
* Taken the old scripting engine out of Region.Environment and moved it into a ↵MW2007-08-281-10/+0
| | | | separate module: OpenSim.Region.ExtensionsScriptModule (named as such because the purpose of it is to script server extensions, rather than "user scripting" like Tedd's engine.)
* Start of trying to make Region/Scene more modular. MW2007-08-281-89/+3
| | | | | | | | | Added preliminary IRegionModule interface. Also have a work in progress way of Modules registering optional API methods (kind of like Apache optional functions). But there must be a cleaner/nicer way in c# of doing these than the current way. Added three work in progress modules: ChatModule (simple handles in world chat, but by moving this to a module, we could support other types of chat modules, ie like a irc - opensim bridge module. ) , AvatarProfilesModule and XferModule. Moved most of the code from Scene.ModifyTerrain() into the BasicTerrain library, as the start of trying to make that more modular. Stopped Child agents showing up as part of the "show users" command.
* A bit more work on prim building related code. Think most of the building ↵MW2007-08-211-8/+4
| | | | tools are now connected up and its now just a case of doing some bug fixing.
* Shift and Drag copying should now work correctly. [This was one of those ↵MW2007-08-211-6/+6
| | | | | | | | stupid little one line bugs that was so much fun to track down that I decided to spend a few hours on it) Linking groups should now work better than it did, but still a bit of work to do on getting the rotations of all the parts after linking right. Added part of dalien's #301 patch (xml loading/saving related parts with some small changes)
* Can now turn on/off server side permission checking (on prim editing etc) ↵MW2007-08-211-190/+1
| | | | | | | from the opensim.ini file. Just add a line to the Startup section like : serverside_object_permissions = true Changes /editing that are made to clothing/ body parts in your inventory should now be saved between logins/ restarts.
* The regionUUID is now being passed to the datastore calls.MW2007-08-201-1/+1
|
* Instant Messages between users in the same region should actually now work.MW2007-08-201-2/+2
|
* small clean up.MW2007-08-191-0/+14
|
* Sqlite datastore should now save the textures and extraparams data (used by ↵MW2007-08-191-1/+20
| | | | | | | | | | | | | sculpties) correctly. [Really need to add a ExtraParams field to the sqlite database though, but for now I have combined their data so that we don't lose backward compatibility, know a couple of people have been using the datastore already]. Now have a rough day/night cycle (the movement of the sun needs to be made smoother but for now it is better than we had I think). Added dalien's patch (issue 294) for saving and loading prims to a xml file (think he will be modifying these to be import/export functions and maybe writing a xml datastore for backups). Some preliminary work on task inventory (ie object's/prim's inventory). Added place holder data for AvatarProperties (ie a avatar's profile). Should we store this sort of data on the user server or have another server for it (a normal webserver should work). Added a few more method to IClientAPI. Sure there is something I'm forgeting.
* Had to rename Rotation in SceneObjectGroup to GroupRotation to stop conflict ↵MW2007-08-161-1/+2
| | | | | | | with Rotation in entitybase (couldn't override as they are different types (LL vs Axiom) and didn't want to add new). When you take prims into inventory (or delete them), they should now be removed from the prim datastore, so they no longer reappear in-world when you restart opensim.
* * Introduced IScriptHost as an interface to fetching object data from scripts.lbsa712007-08-161-3/+3
| | | | | | * This meant introducing AbsolutePosition on all objects (since SimChat wants that)
* Taking Prims (SceneObjectGroups) in and out of inventory should now work and ↵MW2007-08-161-25/+82
| | | | if left in inventory will still be there after restarts. (as with the rest of inventory it will only fully work in standalone mode with account authentication turned on).
* The 'Party Party Groupie Groupie Life is a game' commit:lbsa712007-08-151-1/+1
| | | | | | | * Added prototypical MoneyBalance support * Finalized konceptual touch wiring * Turned SimpleApp into a tedious harvesting game.
* More work on inventory, can now create other inventory types, like Clothes ↵MW2007-08-151-26/+34
| | | | and body parts. [Note while you can edit these, at the moment your changes won't be saved between restarts. This will be fixed very soon.]
* * Permissions! - You can now only perform certain functions (such as editing ↵Adam Frisby2007-08-151-15/+27
| | | | | | | | | | | | | other peoples objects) if you have permission to do so. * Moved OnPermissionError to EventManager - now triggers a standard blue alert. * Terraforming now requires permission via the permissions manager. [Defaults to admin-only] * Permissions manager is now substantiated in Scene * Buttload of new permissions added. * Estate manager operations now require various levels of permission to operate * OGS1 now produces 'summary reports' for a commsManager of each scene it maintains connections for. Reduces grid network traffic for ping checks. * Added new "permissions true" / "permissions false" console command to enable or disable permissions.
* preliminary support for editing notecards and scripts. MW2007-08-141-9/+0
| | | | | Although there seems to sometimes be a problem of when you login again, old notecards and scripts will have their permissions messed up and you won't be able to even view their text. This seems to be related to the client's cache, and if you clear your client's cache, on the next login they should be fine again. [I have a couple of ideas about what might be causing this so hopefully will have it fixed soon.]
* Start of inventory items, when you upload a texture the data will now be ↵MW2007-08-141-1/+1
| | | | | | | stored in the inventory database and you will still have that texture in inventory on later logins (Again only in standalone mode with authentication.) Also there might be some problems if you upload textures in other regions to the start one (due to us not updating the CAPS url properly).
* added Sample OnObjectGrab event to SceneEventManager for script engines to ↵MW2007-08-131-0/+5
| | | | subscribe to.
* Few small fixesMW2007-08-101-1/+1
|
* Start of replacing the old SceneObject/Primitive classes with the new versions.MW2007-08-091-93/+91
| | | | | | PLEASE NOTE: that with this revision some prim related features may be broke for a while. (things like linking prims and the parcel prim count.) Also this revision may not work on mono, but that will be fixed soon.
* * encapsulated firstname/lastname on ScenePresencelbsa712007-08-061-2/+2
| | | | | | | * fixed 'users' console command * minor refactorings
* * Attempted to Fix an issue whereby X and Y coordinates on terrain brushes ↵Adam Frisby2007-08-011-6/+6
| | | | were reversed.
* Deleting objects should now work. But beware they aren't send to your trash ↵MW2007-07-291-1/+37
| | | | folder or anything so there is at the moment no way to recover deleted objects.
* Should now have version 0.1 of our new ruth default avatar. At the moment, ↵MW2007-07-271-1/+1
| | | | | | | | you only see your own avatar correctly, all other user's avatars show up as the old ruth. This will be fixed soon. We also need better clothing for the new ruth and to edit the body shape. To get this working you will need to delete your asset yap file and also in grid mode the user server needs to be updated.
* Start of the OpenSim library , for now only contains a few textures. MW2007-07-251-1/+1
|
* * Fixed an issue where Terrain brushes may not update correctly.Adam Frisby2007-07-251-1/+10
|
* * Users doing terraforming should see updates instantly now.Adam Frisby2007-07-241-2/+2
| | | | | * Other viewers in the sim will see updates no more than once every 5 seconds.
* * SendLayerData overload including coords now uses patch number rather than ↵Adam Frisby2007-07-241-6/+3
| | | | coords directly.
* * Some work in progress code: Inventory cache, start of inventory ↵MW2007-07-221-1/+71
| | | | | | | | | | | server/service, userprofile cache, inventory handling. (non of it is enabled yet (or at least it shouldn't be). * Fixed some of the problems with crossing regions when flying: you should no longer sink to ground level when crossing (should keep roughly your right height). Should no longer sometimes get sent back to the centre of the current region when attempting to border cross. But instead sometimes you will find you avatar stop at the edge of region and you will need to start moving again to retry the crossing (which should then work). This code is partly based on Babblefrog's issue #212 patch. [I think I have some ideas of how to solve the stopping at edges problem, just want to get the inventory code done first] * Capabilities code has now been moved to the OpenSim.Framework.Communications project as some of the caps code will be tightly tied to inventory/asset handling and it was causing a two way reference problem when it was in its own project/dll. This is a Big commit as I was going to keep my inventory work local until I had it in a working state, in case it brakes anything, but its getting harder to keep in sync with svn.
* * Renamed terrain functions to match OpenSim naming styles.Adam Frisby2007-07-211-6/+6
| | | | | * Added capability to support minimum/maximum terrain limits (from the last 'bake')
* * Assortment of Console changes - console messages are now grouped into ↵Adam Frisby2007-07-201-1/+1
| | | | modules (eg "client", "grid", "terrain", "storage", etc)
* Sculpted Prims should now work. MW2007-07-181-0/+16
|