aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-08-28Corrected the namespace in OpenSim.Region.Physics.Manager, so now namespace ↵MW1-1/+1
should equal project and directory.
2007-08-28Start of trying to make Region/Scene more modular. MW1-2/+2
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.
2007-08-27Stopped EntityBase from implementing IScriptHost, as don't think it should, ↵MW1-0/+5
multiple objects are based on entitybase and they all don't want the baggage from IScriptHost. SceneObjectPart already implements it anyway. Added llGetOwner function, and tested the ll functions that I added in last commit.
2007-08-25Hopefully fixed the bugs in primitives rotation editingMW1-1/+2
2007-08-25updated to include saving of object flags.Sean Dague1-9/+14
People will need to blow away their databases after this point.
2007-08-24Scripts are now copied into a prim (ie new copy placed in the prim) rather ↵MW1-1/+1
than moved into there.
2007-08-23Added RemovePrim method to the physics plugins interface.MW1-0/+1
Implemented that method in ODE plugin. Hooked it up so when deleting/taking prims into your inventory they will be removed from physics engine. Enabled the other physics hook ups in Scene.cs (and also added registering prims with physics plugin when they are rezzed from Inventory.) So now to get the avatar to prim collision testing working, just change to use the ODE plugin (in the OpenSim.ini file, physics = OpenDynamicsEngine). Remember though ODE only really works (without problems) when running with a single region.
2007-08-23Added a PhysicsActor PhysActor member to SceneObjectPart, and made it so ↵MW1-0/+3
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.
2007-08-22Added OnRemoveScript(uint localID, LLUUID itemID) event , trigged when a ↵MW1-2/+20
script in a primitive is deleted.
2007-08-22Made SceneObjectGroup.GetChildPrim() public, for now so that script engine ↵MW1-1/+1
can get ref to the SceneObjectPart/ IScriptHost.
2007-08-22A little bit of cleaning up.MW1-2/+2
2007-08-22added ParentPartID to TaskInventoryItem class to make it easier to store ↵MW1-4/+4
them in database.
2007-08-22Fixed typo.MW1-1/+1
2007-08-22Start of Task Inventory (ie prim's inventory). For now, you can only move ↵MW1-45/+128
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.
2007-08-21Added OnRezScript event to Scene.EventManager.Which the script engine should ↵MW1-0/+9
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.
2007-08-21Shift and Drag copying should now work correctly. [This was one of those ↵MW1-5/+5
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)
2007-08-20Instant Messages between users in the same region should actually now work.MW1-6/+7
2007-08-19Sqlite datastore should now save the textures and extraparams data (used by ↵MW1-8/+93
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.
2007-08-17Pimped up Default.lsl. Now featuring a touch counter.Tedd Hansen1-0/+1
Changed "ObjectID" in ScriptEngine to IScriptHost reference. Events will now be queued based on IScriptHost reference instead of string ID of object. Removed "root" object reference in script.
2007-08-16* Now sending manager, host and root host to Script in constructor.lbsa711-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
2007-08-16* Introduced IScriptHost as an interface to fetching object data from scripts.lbsa711-9/+15
* This meant introducing AbsolutePosition on all objects (since SimChat wants that)
2007-08-15The 'Party Party Groupie Groupie Life is a game' commit:lbsa711-0/+4
* Added prototypical MoneyBalance support * Finalized konceptual touch wiring * Turned SimpleApp into a tedious harvesting game.
2007-08-15* Again, FileSystemObject reports filename.lbsa711-0/+1
* SimpleApp now featuring spinning box with spinning parts. * Damn. That's cool.
2007-08-15* Exploring Group/Part from an app perspective.lbsa711-0/+4
2007-08-13Added Scene.ConvertLocalIDToFullID() method. MW1-1/+5
2007-08-13Partial Linking of prim groups should work (its partial as currently only ↵MW1-0/+24
the root prim of the child group will actually get linked, working on linking the rest now). Multiple prim groups are now stored in the sqlite database and are reloaded correctly.
2007-08-10Made a few changes so that once we enable the sqlite data store (simple line ↵MW1-0/+8
change in OpenSimMain), then basic ( with a few limits at moment) prim database backup will work.
2007-08-09SceneObjects should now (hopefully) call datastore.StoreObject().MW1-0/+2
2007-08-09Deleted old LSLEngine files (those under Scene.Scripting)MW1-0/+1
2007-08-09Start of replacing the old SceneObject/Primitive classes with the new versions.MW1-8/+15
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.
2007-08-07Some more work on new Sceneobject. MW1-16/+36
2007-08-07* koncept bugfixlbsa711-0/+12
2007-08-07a couple of changes in the new Sceneobject classes, just committing so ↵MW1-7/+23
things are kept in sync.
2007-08-06* Now we have boxes. Yay!lbsa711-2/+2
* Removed unused SendPrimitiveToClient that didn't have rot.
2007-08-04clean up of startup config settings (command line args etc),MW1-9/+5
Now using the Nini configuration library (suggest we look into using this for the rest of our config handling, as it provides a standard interface for command line args, INI files, Xml files, .NET config files, and windows registry). One IMPORTANT change is that to TO START GRIDMODE , you need to now use -gridmode=true . Also need someone to test it under mono. (there is a dll that has been compiled under mono available, just hoping that we don't have to deal with separate dlls for windows and linux.
2007-08-03changed the properties so that most of them only take up one line per get/set.MW1-116/+33
2007-08-03* Changed some nameslbsa711-40/+40
2007-08-03Yet another commit related to the SceneObject rewrites.MW1-3/+1
2007-08-03and more work on those classes. Think they are just about ready to begin ↵MW1-2/+33
hooking them up.
2007-08-03Ditto...More work on the AllNewSceneObject* classes.MW1-1/+54
2007-08-03More work on the AllNewSceneObject* classes.MW1-0/+40
2007-08-02Some more work on SceneObject/ Primitive rewrites (slowly getting there)MW1-11/+92
2007-08-02Changed a couple of method in PermissionManager from private to protected to ↵MW1-1/+0
fix the error that ckrinke just reported
2007-08-01Little bit more work on AllNewSceneObjectPart2MW1-1/+36
2007-08-01few small changes.MW1-0/+17
Updated libsl to latest version.
2007-08-01Some more work on SceneObject/primitive rewrites (AllNewSceneObjectGroup2 ↵MW1-10/+99
/Part2). Updated the JavaVM to a later version I did (basically some clean up and a little bit more functional). Added SendLoadURL method to IClientAPI.
2007-07-30mass update of files to have native line endingsSean Dague1-216/+216
2007-07-27A few changes so that the number of warnings is less but without deleting ↵MW1-0/+7
everything. Like, I removed the Obsolete from the old caps method as at this time not all caps calls can use the new Caps stream method as it doesn't properly deal with LLSD Arrays. Now down to 3 warnings on the events in IClientAPI and for now I think we have to live with them as I think most of those events will be used.
2007-07-27* Removing some housekeeping tagged elements.Adam Frisby1-2/+0
* 6 Compiler warnings left (total) - two legacy caps warnings, four unused ScenePresence events.
2007-07-19* Added housekeeping comments, see mailing list in just a moment...Adam Frisby1-1/+1