aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* * Hanling RequestGodlikePowers. On Request.. sends the sim owner's client ↵Teravus Ovares2007-11-241-0/+1
| | | | the appropriate messages to make it think it's got god status. Will be used for finding more unimplemented packets....
* * Added code to capture the draw distance setting from the client.Teravus Ovares2007-11-221-1/+4
| | | | | * Added a support function to InnerScene to calculate the distance between two vectors.
* * Did some initial work for prim crossing. Just glue so far.Teravus Ovares2007-11-212-3/+3
| | | | | * 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-1/+1
| | | | 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-182-3/+3
|
* first stab at implementation of CopyInventoryItemJeff Ames2007-11-181-0/+1
|
* Attempt to get World Map working in Grid mode, will need to be using the ↵MW2007-11-182-3/+4
| | | | | | | | | | 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.
* Added handler for MapNameRequest - OnMapNameRequestDalien Talbot2007-11-181-0/+1
|
* Added ClickAction property to SceneObjectPart (and the relevant changes in ↵MW2007-11-171-1/+1
| | | | IClientAPI so its used), so that the default click action (ie touch, sit, etc) can be set on a prim. Note: Sill need to handle the incoming packets that set this, from the client.
* *** BIG CHANGES : REGION STORAGE MOVED : UPDATE YOUR OpenSim.ini FROM ↵lbsa712007-11-151-2/+2
| | | | | | | | | | | OpenSim.ini.example ** * Now moved region storage from region to application, so we have one storage per application, instead of one per region. * Changed so that the region store providers use connectionstrings, not filenames * Removed various unfit fields and properties (call me Darwin)
* * Implemented the little friendly pop tooltip messages that appear when you ↵Teravus Ovares2007-11-151-0/+1
| | | | hover your mouse over prim with the object name, description, ownerid.. etc.
* * Added AvatarPicker in Standalone mode. Works for finding avatar to ban, ↵Teravus Ovares2007-11-131-0/+4
| | | | | | | manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D. * Grid mode always returns 0 results until the Grid Communications portion is done.
* first pass on unlinking of objects. From Jay Clarke (IBM)Sean Dague2007-11-131-0/+1
|
* Some work on cleanly removing Regions.MW2007-11-131-0/+5
|
* * Implemented Walk Vs Run in ODE. Also helps make the walk look smoother.Teravus Ovares2007-11-121-0/+1
| | | | | * All thanks to unimplemented packet listing :D
* Patch from Mathias Soeken (thanks Mathias!) to take care of the color Dalien Talbot2007-11-111-1/+1
| | | | | | | and alpha argument of the llSetText command.
* * adds flag in OpenSim.ini for disabling physical prim. Look at ↵Teravus Ovares2007-11-112-3/+3
| | | | OpenSim.ini.example in the bin folder for an example.
* * Moves the Meshmerizer to a separate pluginTeravus Ovares2007-11-101-2/+2
| | | | | | * Experimental. Linux Prebuild needs testing. * One more update after this to remove the ODEMeshing directory....
* * Added Rotational Velocity reporting for Client Interpolation to Terse UpdatesTeravus Ovares2007-11-081-1/+1
| | | | | * Added Angular Velocity reporting for smooth-ish rotations on object collisions
* add SendSunPos function to IClientAPI to let us pull all the sunSean Dague2007-11-071-0/+4
| | | | | | calculation logic into a module
* * Added better logging to AssetCachelbsa712007-11-061-1/+1
| | | | | | | * AssetCache now ignores duplicate uploads * some m_ refactoring * ignored some bins
* Fixed the MyNpcCharacter errorsMW2007-11-051-4/+4
|
* Applying Teravus patch # 557. Some glue code for the updating of prim's ↵MW2007-11-041-1/+5
| | | | velocity.
* First part of Scene refactoring:MW2007-11-032-3/+4
| | | | | | 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.
* some small changesMW2007-10-311-1/+2
|
* * Optimized usingslbsa712007-10-307-198/+342
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* as per the "Filesystem cleanup for OpenSim repository" mailing list thread. ↵MW2007-10-296-8/+8
| | | | | | | 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-291-0/+1
| | | | 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.
* Added preliminary support for sitting on primsJeff Ames2007-10-281-1/+3
|
* * Added prototypical AvatarFactory module interface to load avatar parameterslbsa712007-10-262-2/+2
| | | | | | | * Added dump_assets_to_file option to enable asset dumping for debug * normalized some namespaces * InventoryFolder renamed to InventoryFolderImpl to
* apply http://bug.opensecondlife.org/view.php?id=512 from chillkenSean Dague2007-10-251-1/+1
| | | | | | which cleans up the verbose logic
* * Major structural change: Begun converting Events to use (caller, args) ↵Adam Frisby2007-10-191-1/+9
| | | | | | | | 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.
* changes to pass nini config object to the modules that getSean Dague2007-10-191-2/+5
| | | | | | loaded so that they may read out any bits they are interested in
* * Total refactoring of Asset Server for massive winlbsa712007-10-191-2/+0
| | | | | | * There is now a AssetServerBase * lolcat in ur assets
* * Applied Chillken patch #419: consolidate_ports-r2096-3.patch - ↵lbsa712007-10-151-5/+3
| | | | consolidated port number defaults. Thankx Chillken!
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-156-0/+168
|
* * Now loading modules from ScriptEngines directory as well.lbsa712007-10-101-3/+1
|
* * Gave ModuleLoader some good lovin'lbsa712007-10-101-3/+5
| | | | | | | * Introduced ModuleLoader.PickupModules that currently picks up IRegionModule:s from /bin * Made LogBase thread-safe (or at least not thread-ignorant) * Ignored some genned files
* == The "right name and place" commit ==lbsa712007-10-051-1/+0
| | | | | | | | | * Moved InventoryData to Framework.Types/InventoryItemBase.cs * Moved UserData to Framework.Interfaces/IUserData.cs * Moved UserProfileData to Framework/Types/UserProfileData.cs * Deleted ass-backwards Framework dependency on Framework.Data (now it's the other way round) * Changed some namespaces to reflect file structure
* more refactoringMW2007-10-031-4/+9
|
* Some continuation of lbsa71's refactoring of the CommunicationsManager.MW2007-10-031-2/+2
|
* * Moved setup of LocalInventoryService and LocalUserServices to the app layerlbsa712007-10-021-2/+6
| | | | | | | * Killed off 'parent' relation from LocalUserServices to CommunicationsLocal * Deleted obsolete project InventoryServiceBase * Deleted superfluous createCol function
* * Encapsulated all CommunicationsManager serviceslbsa712007-09-242-2/+2
|
* * Purged 'Regions' code pending Agent layer grok.lbsa712007-09-231-11/+4
| | | | | | * Changed so prims aren't loaded until AFTER parcels. * The region startup flow is still an ungodly rats nest.
* * even more renaming and refactoring; the cleaning woman is on call.lbsa712007-09-201-2/+0
|
* Rev 1971 : The Lbsa71 vintage commitlbsa712007-09-201-3/+2
| | | | | * Refactored to prepare for some serious restructuring
* * moved SceneManager to RegionApplicationBaselbsa712007-09-202-4/+14
| | | | | | * Implemented SceneManager.StopScene() and Scene.Stop() * Some SimpleApping
* * Rewired Touch to route to group/part (Still triggering EventManager as well)lbsa712007-09-201-23/+0
|
* * Moved SendLogoutPacket back to IClientAPI.lbsa712007-09-181-3/+7
|
* * Now at least we're not creating physActors for child agents.lbsa712007-09-181-1/+1
|