aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples (follow)
Commit message (Collapse)AuthorAgeFilesLines
* == 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
|
* * Yet some more connectivity restructuringlbsa712007-09-181-0/+17
| | | | | | | | | | | * We now have CloseAllAgents( circuit ) and CloseAllCircuits( agentId ) for great justice ( but alas, still only closing on one single scene - be brave! ) * Login and ConnectionClosed now eventified and moveified awayified * Killed off unused NullClientAPI * Now the client is almost only responsible for its own closing. ( I will get that scene out of there ) * Lookin' good!
* * Handlerized ViewerEffectlbsa712007-09-181-1/+2
| | | | | | | * Now there-is-only-client-manager * First step towards moving Logout and ConnectionClosed out of Client and into something else (which will let us get rid of ClientView reference to ClientManager * General posititvity, peace, love and understanding
* * Replaced usage of ClientView with IClientAPIlbsa712007-09-181-6/+9
| | | | | * Some propertification and hideousness of fields.
* fixing me some line endingsSean Dague2007-09-171-78/+78
|
* * Wired up chat so that channel goes into OnChatFromViewer. However:lbsa712007-09-141-1/+1
| | | | | | | * 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.
* Added CLI "debug packet 0..255" to enable the in/out packet dumps with ↵Dalien Talbot2007-09-131-0/+1
| | | | various verbosity
* Little green men (aka dots on minimap). Thanks to bushing for Dalien Talbot2007-09-091-0/+1
| | | | | | pointing out that it is done by CoarseLocationUpdatePacket.
* Partial fix for the "avatars permanently facing east" - now the rotationDalien Talbot2007-09-081-1/+1
| | | | | | | | is set correctly, but only with the movement of the avatar. The in-place rotation updates need a little bit of more thought, and will be in a separate commit.
* Some work on Module loading/management.MW2007-09-042-6/+33
| | | | | | | | 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)
* Corrected the namespace in OpenSim.Region.Physics.Manager, so now namespace ↵MW2007-08-281-1/+1
| | | | should equal project and directory.
* Start of trying to make Region/Scene more modular. MW2007-08-282-3/+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.
* Deleted a few old files that are no longer used.MW2007-08-272-2/+0
| | | | | | Deleted the GridInterfaces projects, and for now moved the old local asset server into Framework.Communications, as we prepare to rewrite the asset cache and asset server. Deleted Framework.manager as I am sure this is no longer in use.
* Added OnRemoveScript(uint localID, LLUUID itemID) event , trigged when a ↵MW2007-08-221-0/+1
| | | | script in a primitive is deleted.
* Made SceneObjectGroup.GetChildPrim() public, for now so that script engine ↵MW2007-08-221-0/+1
| | | | can get ref to the SceneObjectPart/ IScriptHost.
* Start of Task Inventory (ie prim's inventory). For now, you can only move ↵MW2007-08-221-0/+1
| | | | scripts into a prim (from your user inventory) and although the script will now show up in the prims inventory, you can't make any changes to it (or delete it). Also a prim's inventory is currently not saved between restarts.
* Added OnRezScript event to Scene.EventManager.Which the script engine should ↵MW2007-08-211-0/+1
| | | | subscribe to. This is triggered whenever a script is moved into a primitive (and includes the localid of the prim and the script text as params) . Currently though the script item isn't deleted from a users inventory, nor does it actually show up in the objects inventory (this will be fixed soon.) So that means that it isn't currently possible to edit a script (or delete it) once it has been added to a primitive.
* Can now turn on/off server side permission checking (on prim editing etc) ↵MW2007-08-211-0/+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.
* Instant Messages between users in the same region should actually now work.MW2007-08-201-1/+1
|
* small clean up.MW2007-08-191-0/+2
|
* Sqlite datastore should now save the textures and extraparams data (used by ↵MW2007-08-191-0/+8
| | | | | | | | | | | | | 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/+1
| | | | | | | 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-162-3/+3
| | | | | | * This meant introducing AbsolutePosition on all objects (since SimChat wants that)
* Deleted old inventoryCache.csMW2007-08-161-1/+0
|
* Taking Prims (SceneObjectGroups) in and out of inventory should now work and ↵MW2007-08-161-0/+1
| | | | 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).
* Can now set the plugins for standalone mode's Inventory database (default ↵MW2007-08-161-1/+2
| | | | sqlite) and for its user database (default DB4o). Currently changing the user plugin to MySql should work (if you have MySql setup (should be same as for grid mode). There is also a MySql provider for the inventory but not 100% certain if that is finished and functional (will need to check with Adam on that).
* The 'Party Party Groupie Groupie Life is a game' commit:lbsa712007-08-153-21/+54
| | | | | | | * 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-0/+2
| | | | 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.]
* * We now have a field of spinning objects.lbsa712007-08-151-3/+7
|
* * Added more spinning parts to ComplexObject.lbsa712007-08-151-6/+13
| | | | | | * We now have CylinderShape * This commit dedicated to the birth of techno house.
* * Again, FileSystemObject reports filename.lbsa712007-08-152-7/+10
| | | | | | * SimpleApp now featuring spinning box with spinning parts. * Damn. That's cool.
* * Exploring Group/Part from an app perspective.lbsa712007-08-153-8/+55
|
* The Welcome message /message of the day shown in the client during login, ↵MW2007-08-131-1/+1
| | | | can now be set from the .INI file for standalone mode (change the standalone_welcome = "Welcome to OpenSim" line).
* Made account Authentication optional in "sandbox/standalone" mode. Just ↵MW2007-08-111-1/+1
| | | | change "standalone_authenticate = false" to be true in OpenSim.ini. Then as per grid mode, you can use the "create user" command to create new accounts.
* Few small fixesMW2007-08-102-4/+4
|
* Start of replacing the old SceneObject/Primitive classes with the new versions.MW2007-08-093-9/+9
| | | | | | 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.
* Making sure my local working copy is in sync with svn before I start the job ↵MW2007-08-091-2/+2
| | | | of enabling the new SceneObject classes.
* * Got SimpleApp working againlbsa712007-08-081-1/+4
| | | | | * Minor shape koncept experiments
* * Now we have boxes. Yay!lbsa712007-08-061-2/+1
| | | | | | * Removed unused SendPrimitiveToClient that didn't have rot.