aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Applied patch #418 : copyright-r2012.patch - some errors, but got most thrulbsa712007-10-151-0/+28
|
* * Just extracted a standard ToXml() on SceneObjectGrouplbsa712007-10-121-4/+13
|
* Just trying out some thing with events, there changes/additions are likely ↵MW2007-10-121-0/+3
| | | | to be temporary.
* some refactoringMW2007-10-101-0/+39
|
* == 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
* Hollow prims (box only), thanks Gerard! Enjoydan miller2007-09-291-7/+22
|
* * Encapsulated all CommunicationsManager serviceslbsa712007-09-241-1/+1
|
* * 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-1/+1
|
* * Some more presence refactoringlbsa712007-09-201-1/+1
|
* Rev 1971 : The Lbsa71 vintage commitlbsa712007-09-201-3/+3
| | | | | * Refactored to prepare for some serious restructuring
* * Modernized ScriptManager to new interface-based module calls.lbsa712007-09-191-176/+226
| | | | | * 'remove redundant this qualifier' ftw
* Backup is now optional on classeslbsa712007-09-131-17/+44
| | | | | | | | * Removed unused BackUp method on EntityBase * Added overridable InSceneBackup property on SceneObjectGroup * Refactored out AttachToBackup and DetachFromBackup * Normalized namespace OpenSim.DataStore.MonoSqliteStorage to OpenSim.DataStore.MonoSqlite
* hooked up sdague new sqlite asset database provider to the old asset system. ↵MW2007-09-101-2/+3
| | | | | | | | So we can still use sqlite for assets while we wait for the rest of the new asset system to be wrote. Needs more testing, so if it causes problems will have to swap back to db4o.
* Added region console command "edit-scale". To use first use change-region to ↵MW2007-09-081-0/+1
| | | | set the active region as the one you want. Then use "edit-scale <primitivename> <xvalue> <yvalue> <zvalue>" so a example is "edit-scale myprimitive 30.0 25.0 35.0" [ Note the primitive name can't have spaces in it. Also if there is more than one primitive with that name in the region, then it will edit the first one it finds. Also it currently doesn't search through the sub primitives of linked groups. So the primitive needs to be either a single primitive object or the root prim of a group. ]
* added experimental method of trying to relieve missing prim problem (by ↵MW2007-09-061-0/+16
| | | | adding a limit of the number of prim update packets sent in each update loop).
* fixed mantis bug 375 (copy broken with physics/ODE enabled)dan miller2007-09-061-0/+11
|
* Attempt to cut down how often objects are backed up to the database.MW2007-08-291-2/+12
|
* 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-281-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-271-1/+1
| | | | | | 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.
* Hopefully fixed the bugs in primitives rotation editingMW2007-08-251-3/+5
|
* Had "using OpenSim.Physics.Manager;" defined twice in SceneObjectGroup.cs, ↵MW2007-08-241-1/+0
| | | | so removed one of them.
* Hopefully fixed mantis bug #318 (exception when a prim moves across a ↵MW2007-08-241-1/+20
| | | | border, for now have stopped prims moving beyond a regions area, will add sending prims from one region to another soon).
* Scripts are now copied into a prim (ie new copy placed in the prim) rather ↵MW2007-08-241-0/+27
| | | | than moved into there.
* Updated sqlite3.dll to version 3.4.2MW2007-08-241-0/+6
| | | | | | Fixed it so now when you move a script to a Prim or delete a script from a prim the change should show up in the prims inventory straight away (without having to close the edit window and reopen it). When linking prims, all parts except for the root part of the new group are removed from the physics engine, as currently we only really support root parts in the physics engine.
* Implemented Resize Method in OdePrim.MW2007-08-231-0/+19
| | | | | | | | attached the links to that from SceneObject, so now resizing works (as much as resizing currently works in opensim, fixing resizing in general is on my todo list for today). Rotation of a root prim also now updates the physics engine. So think there really is only deleteprim left, then it should be usable (Different shapes (other than boxes that it currently uses) can wait a little bit longer). [of course there are still the other issues of ODE not really working when there is more than one region in a instance of opensim].
* Added a PhysicsActor PhysActor member to SceneObjectPart, and made it so ↵MW2007-08-231-0/+5
| | | | | | | | this is set when registering the prims with the physics engine. Position changes of the prim is now updated straight away to physic engine. (note at the moment, only root prim is registered with physics engine. Think we need to decide how we are going to manage child prims and physics.) As before this is all currently disabled (in scene.cs) until its in a bit more working condition.
* Added danx0r's physics patch, although for now have disabled the lines in ↵MW2007-08-231-0/+1
| | | | Scene.cs, as any changes to prims (like size or position changes) are only updated to the physics engine when you restart opensim. Also prims aren't deleted from the physics engine. These shouldn't be hard to fix.
* Added OnRemoveScript(uint localID, LLUUID itemID) event , trigged when a ↵MW2007-08-221-0/+10
| | | | script in a primitive is deleted.
* Made SceneObjectGroup.GetChildPrim() public, for now so that script engine ↵MW2007-08-221-19/+19
| | | | can get ref to the SceneObjectPart/ IScriptHost.
* A little bit of cleaning up.MW2007-08-221-2/+2
|
* Fixed typo.MW2007-08-221-1/+1
|
* Start of Task Inventory (ie prim's inventory). For now, you can only move ↵MW2007-08-221-10/+29
| | | | 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.
* Old group is now deleted from datastore when you link groups/prims, so that ↵MW2007-08-211-3/+1
| | | | the new group can be stored correctly.
* Think linking prims should now work correctly (if its not then please ↵MW2007-08-211-1/+2
| | | | someone let me know) and the rotations are kept. [Now just need to fix the editing (rotation and position) of individual prims of a group]
* A bit more work on prim building related code. Think most of the building ↵MW2007-08-211-0/+3
| | | | 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/+44
| | | | | | | | 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)
* Added Property to SceneObjectGroup to allow the UUID of the region it is in ↵MW2007-08-201-0/+10
| | | | to be read.
* The regionUUID is now being passed to the datastore calls.MW2007-08-201-1/+15
|
* Sqlite datastore should now save the textures and extraparams data (used by ↵MW2007-08-191-7/+17
| | | | | | | | | | | | | 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.
* * Now sending manager, host and root host to Script in constructor.lbsa712007-08-161-0/+5
| | | | | | | | * Changed how Script accesses World * Implemented llSay, llWhisper and llShout * Added SetText() to IScriptHost, implemented llText * Minor renamings to conform with code conventions
* Had to rename Rotation in SceneObjectGroup to GroupRotation to stop conflict ↵MW2007-08-161-3/+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-13/+13
| | | | | | * 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-20/+84
| | | | 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-0/+23
| | | | | | | * 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-1/+0
| | | | 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.]
* * Again, FileSystemObject reports filename.lbsa712007-08-151-0/+6
| | | | | | * SimpleApp now featuring spinning box with spinning parts. * Damn. That's cool.
* * Exploring Group/Part from an app perspective.lbsa712007-08-151-1/+24
|
* Added Scene.ConvertLocalIDToFullID() method. MW2007-08-131-0/+10
|