aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-04-06* Adds AutoOAR module, this will automatically OAR your regions every 20 ↵Adam Frisby2-0/+77
minutes to a directory called "autooar", if enabled. Default disabled. Use [autooar] Enabled=true in OpenSim.ini to enable. * Adds some MRM XMLDOC
2009-04-05Changed the asynchronous call to get inventory in HG, so that it properly ↵diva3-41/+68
reports problems. OGS1 should also be changed, but I'm leaving it as is for now. RestSessionObjectPosterResponse is fairly broken and should not be used. Minor changes in Get inventory item in HGAssetMapper.
2009-04-05unspecified sculpt stitching mode now defaults to plane instead of sphere. ↵Dahlia Trimble1-1/+3
Addresses Mantis #3403
2009-04-05Thanks StrawberryFride for a MSSQL patch to mirror r9011.Homer Horwitz1-0/+1
Fixes Mantis #3409
2009-04-05Ouch. Remove some test left over from r9013, which broke startupHomer Horwitz1-2/+1
2009-04-05- Add new RegionModulesControllerPlugin to the application modulesHomer Horwitz10-20/+493
- Change several classes to use the new plugin for handling of region-modules (NOTE: No regionmodule is using this yet) - Add necessary prebuild parts (don't forget to runprebuild) Attention: Work in progress. This shouldn't break anything, but you never know...
2009-04-05- Move IWindModule to OpenSim.Region.Framework.InterfacesHomer Horwitz3-1/+4
- Fix a dependency problem. Hopefully fixes Mantis #3395
2009-04-05Adding migrations for MySQL and SQLite for removing the "old" cloud image.Homer Horwitz2-0/+2
The new one already in the Library will be reinserted automatically. Fixes Mantis #964
2009-04-05Thanks BlueWall for a patch that adds Hypergrid dynamic linking to ↵diva2-0/+21
osTeleportAgent. Fixes mantis #3408.
2009-04-05Directory defaults for region xml files when creating a new region got ↵idb1-9/+3
changed/lost with svn 8550 when a check was added for the file name having .xml extension. The extension check has been moved slightly earlier and the original directory logic restored. Fixes Mantis #3386
2009-04-05* Fixing SVN propertiesTeravus Ovares6-4031/+4031
2009-04-05* Committing what I have on the BulletDotNETPlugin that I have so far. Teravus Ovares6-0/+4033
* It's not ready to try. It doesn't do what you expect in many ways. * It throws errors and prints jibberish on the console * Test it out only if you're brave and you've backed up first. * The opensim.ini line is physics = BulletDotNETPlugin
2009-04-05Added CreateObject(regionhandle, userID, itemID) to post objects that are to ↵diva12-78/+381
be fetched from the user's inventory server and rezzed in the region. Added all code necessary to fetch the item and the asset, and rez it inworld. The access to the item is uncap-ed and unverified -- I may place it later either under a cap or with auth verification. But in this model regions don't have the user's inventory, so they would have to guess the item IDs. Added safemode config to Standalone Hypergrid, similar effect to AllowRegionAccessToInventory in Inventory Server. Everyone should have these vars set to their default values except me!
2009-04-05* Fixed copyright headers on HyperGrid source files. (Now match the rest of ↵Adam Frisby18-417/+401
OpenSim, license text is unchanged) * Added Bitmap[,] to IParcel for MRM
2009-04-05* Minor cosmetic change to SEUser to get Bamboo to initiate another build. (grr)Adam Frisby2-2/+16
* Adds basic IParcel interface. Soon to live on World.Parcels{[id],[x,y]}
2009-04-05* Typo in constructor during class rename (whoops!)Adam Frisby1-1/+1
* OpenSim is now over 9000.
2009-04-05* Implements ISocialEntity - this represents the class of "user-like" ↵Adam Frisby3-1/+48
objects such as Users, Groups, etc. Destined to be used as the return value of any "Owner" properties. * Implements basic "SEUser" class which implements Avatar/Agent SE functions (primitive).
2009-04-04* Removes IsPhysical, IsPhantom from IObject, since this is now represented ↵Adam Frisby2-13/+0
in IObject.Physics.Enabled / IObject.Physics.Phantom instead.
2009-04-04Implements on IObjectPhysics:Adam Frisby1-21/+62
* SetMomentum * AddAngularForce * AddForce * FloatOnWater * Force * Acceleration * Torque * Velocity * RotationalVelocity * CenterOfMass * GeometricCenter * Buoyancy * Mass (Partial) * Density (Partial)
2009-04-04* Implements IObjectPhysics on SOPObject partially.Adam Frisby3-7/+116
* Eg, IObject.Physics.* is now valid syntax and compiles (but will throw NotSupported at runtime)
2009-04-04* Implements IObjectPhysics, this collects Physics attributes into one ↵Adam Frisby1-0/+32
interface, will be referenced on IObject as IObject.Physics.* * Eg; IObject.Physics.Torque = new Vector3(30.0,0.4,0.5); * Maps loosely to internal PhysicsActor class.
2009-04-04* More fiddling with MRM IPersistence, now stores <T> instead of Object.Adam Frisby1-4/+5
2009-04-04Give a meaningful message if terrain save fails because of a file IO error.idb1-0/+5
Fixes Mantis #3348
2009-04-04Thanks jonc, for a patch that adds rendering of classic clouds.Homer Horwitz9-5/+287
First part of Mantis #964, the necessary clouds image will follow separately.
2009-04-04DST setting wasn't transferred to client, leading to wrong time display.Homer Horwitz1-1/+1
2009-04-04Remove some Mono warnings.Homer Horwitz2-3/+3
2009-04-04Preliminary work to support ObjectSpin* packets when user invokes CTRL / ↵nlin2-4/+45
SHIFT / MOUSE DRAG on a physical object Addresses Mantis #3381
2009-04-04* Changed IPersistence interface so that passing the MRMBase is unessecary.Adam Frisby2-7/+5
2009-04-04* Renamed Heightmap.Height to Heightmap.Length to avoid confusion about axis.Adam Frisby3-3/+35
* Added XMLDOC to MRM API code, this means we have usable programming docs being produced here: http://docs.opensimulator.org/namespaceOpenSim_1_1Region_1_1OptionalModules_1_1Scripting_1_1Minimodule.html (eg IObject, IHeightmap, etc)
2009-04-04Add copyright headers, formatting cleanup.Jeff Ames10-19/+227
2009-04-04* Removes IObject.Position, IObject.Rotation from IObjectAdam Frisby2-6/+55
* Adds IObject.WorldPosition and IObject.OffsetPosition - this is equivilent to AbsolutePosition and OffsetPosition in SOP respectively. * Adds IObject.WorldRotation and IObject.OffsetRotation - as above.
2009-04-04* Drops Heightmap.Get/Heightmap.Set from IHeightmap interface.Adam Frisby2-5/+28
* Adds Heightmap[x,y] to interface. * MRM Scripts should utilize World.Heightmap[x,y] = 0.0; to replace set, and Val = World.Heightmap[x,y] to get.
2009-04-03* Proactively fixed bug-potential concerning the fact that m_httpServer ↵lbsa712-7/+1
property was differently referred to between RegionApplicationBase and all other grid services.
2009-04-03* Fixes issue where of you force your avatar against a region corner, it ↵Arthur Valadares1-6/+64
gets stuck and NonFinite Avatar messages floods console Addresses Mantis #3380
2009-04-03* refactor: Call StatsReporter methods directly rather than through Scene ↵Justin Clarke Casey5-44/+26
(as WebStatsModule was doing) * Assume that StatsReporter is always present (possibly as a no-op impl) rather than doing null checks
2009-04-03Added one more delegate to Caps, and a few guards, so that these objects can ↵diva2-14/+42
be used from more than just Scenes. Added the NewFileAgentInvengory cap to HGInventoryService.
2009-04-03- adding -logconfig option to allow configuration of log4net fromDr Scofield1-2/+14
log4net config file other then bin/OpenSim.exe.config - moving ArgvConfigSource initialization up to allow for configuration of XmlConfigurator.Configure()
2009-04-03* Implements MRM IObject.Say - this is equivilent to llSayAdam Frisby1-0/+8
Example: public override void Start() { Host.Object.Say("Hello World!"); }
2009-04-03* Implements Scene.SimChat(string,...) rather than byte[]. We should ↵Adam Frisby2-0/+21
probably mark byte[] as obsolete. * Implements SOPObject.Say for MRM. (Note, not IObject yet)
2009-04-03* MRM Scripts will now no longer disconnect the client if there was an error ↵Adam Frisby1-15/+27
in compilation or script initialisation. * Clarified some debug text for MRM Enabling
2009-04-03* Implements "ID" semi-global within MRM scripts. This is tied to the 'state ↵Adam Frisby5-7/+45
ID' for MRMs. * Implements IPersistence interface, allows simple KeyValue access for MRM scripts to a more permanent datastore.
2009-04-03fix an error in hollow cylinder face number calculationDahlia Trimble1-1/+2
2009-04-02Fix a nullref when compiling non-LSL scriptsMelanie Thielker1-5/+8
2009-04-02Correct llSetPrimitiveParams to check for a texture in inventory when ↵idb1-17/+17
setting the sculpt map. This Fixes Mantis #3331 Also corrected the capping calculation in llApplyImpulse and several integer "boolean" comparisons from "== 1" to "!= 0" for true
2009-04-02partial support for sculpted prim "inside out" settingDahlia Trimble1-11/+38
2009-04-01More refactoring. This time extracting the client-side of ↵diva2-533/+606
RESTInterregionComms into a RegionClient class.
2009-04-01One more bit of refactoring, so this can be used outside region code.diva1-42/+42
2009-04-01Refactoring, no functional changes. Moved ChildAgentDataUpdate data ↵diva4-732/+163
structures from OpenSim.Region.Framework.Scenes back to OpenSim.Framework, so they can be referenced more broadly. This involved having to move the small Animation data structure to OpenSim.Framework too.
2009-04-01* Upped trunk version number to 0.6.4 as we just tagged 0.6.4-releaselbsa7133-45/+45
2009-04-01* Committing patch in mantis 3376 [Patch] Fix a minor animation handling ↵Teravus Ovares1-20/+0
glitch in ScenePresence * .. * .. * err, okay, this was a stick-buggery April 1st joke by me. This removes it. Happy April 1st! * fixes mantis 3376