aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/General (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Another attempt to fix the image sending bug (next week, I intend to rewrite ↵MW2007-08-263-2/+4
| | | | | | | | the assetcache and asset server). Attempt to fix bug # 326. (crashing when using save-xml and hollow prims) Attempt to fix bug # 328 (limit of 50 items in a folder)
* Added OnRemoveScript(uint localID, LLUUID itemID) event , trigged when a ↵MW2007-08-222-0/+3
| | | | script in a primitive is deleted.
* Made SceneObjectGroup.GetChildPrim() public, for now so that script engine ↵MW2007-08-222-0/+3
| | | | can get ref to the SceneObjectPart/ IScriptHost.
* Start of Task Inventory (ie prim's inventory). For now, you can only move ↵MW2007-08-222-0/+3
| | | | 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.
* Fix for un-encrypted master avatar password in user databaseBrian McBee2007-08-221-1/+2
|
* Added OnRezScript event to Scene.EventManager.Which the script engine should ↵MW2007-08-212-0/+3
| | | | 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-212-0/+3
| | | | | | | 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-203-4/+4
|
* small clean up.MW2007-08-192-0/+5
|
* Sqlite datastore should now save the textures and extraparams data (used by ↵MW2007-08-193-16/+32
| | | | | | | | | | | | | 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.
* *Moved network_servers_info.xml into OpenSim.ini under [Network]mingchen2007-08-171-61/+15
|
* Taking Prims (SceneObjectGroups) in and out of inventory should now work and ↵MW2007-08-162-1/+3
| | | | 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-152-0/+6
| | | | | | | * 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-152-0/+7
| | | | 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.]
* * Added more spinning parts to ComplexObject.lbsa712007-08-151-9/+24
| | | | | | * We now have CylinderShape * This commit dedicated to the birth of techno house.
* * Exploring Group/Part from an app perspective.lbsa712007-08-151-5/+41
|
* Temporary fix for the region crossing crash, Although we need to start to ↵MW2007-08-151-1/+24
| | | | change and improve how we handle caps.
* Few small fixesMW2007-08-102-6/+6
|
* Some cleaning up and removed a few old files no longer in use.MW2007-08-104-111/+73
| | | | | | | | | | | Temporary have had to rename the OpenSim.DataStore.MonoSqlite project to OpenSim.DataStore.MonoSqlite1, as I'm not sure what was done to stop the old project name being included in the VS2005 solution. Also some config changes: OpenSim now has a INI (OpenSim.ini) file that it will read some config settings from (if the ini file exists). Added Mono.Data.SqliteClient.dll so that we can use the same code for sqlite on Windows and mono/linux. (from what I can tell Mono class libraries have a MIT license so there should be no problems with us including this dll). So now to get the basic prim storage working , you need to first create the sqlite database file from the sqlite3-prims.sql in share directory. Then in the OpenSim.ini file, change the storage_plugin so it points to OpenSim.DataStore.MonoSqlite1.dll (storage_plugin = OpenSim.DataStore.MonoSqlite1.dll). Then in your region.xml files change the DataStore value so it is the name of your database file (at the moment you need a different sqlite3 database file for each region).
* Making sure my local working copy is in sync with svn before I start the job ↵MW2007-08-092-4/+4
| | | | of enabling the new SceneObject classes.
* * Got SimpleApp working againlbsa712007-08-081-41/+49
| | | | | * Minor shape koncept experiments
* a couple of changes in the new Sceneobject classes, just committing so ↵MW2007-08-071-0/+1
| | | | things are kept in sync.
* * yet another mini-shape-commitlbsa712007-08-061-0/+21
|
* * Now we have boxes. Yay!lbsa712007-08-063-9/+5
| | | | | | * Removed unused SendPrimitiveToClient that didn't have rot.
* * SimpleApp works again:lbsa712007-08-062-27/+32
| | | | | | | | | | | * NetworkServersInfo settable without config file * DefaultHomeLoc throws if getted before setted * Removed nonsensical sandbox distinction * Refactored default config file creation * Some more small refactorings on shapes
* * a very small first step with shape wrapperslbsa712007-08-031-37/+26
|
* Changes to prepare for future possible configuration of separate logdir, ↵Brian McBee2007-08-032-2/+38
| | | | configdir, datadir.
* More work on the AllNewSceneObject* classes.MW2007-08-031-2/+0
|
* *Estate settings are now saved in their own configuration file called ↵mingchen2007-08-033-46/+685
| | | | estate_settings.xml using the configuration system.
* * Workaround for Mono not correctly implementing the OperatingSystemVersion ↵Adam Frisby2007-08-011-2/+1
| | | | class.
* Some more work on SceneObject/primitive rewrites (AllNewSceneObjectGroup2 ↵MW2007-08-012-0/+4
| | | | | | | | /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.
* * Added GetLocalHost() to UtilAdam Frisby2007-07-302-1/+28
| | | | | * ExternalHostName supports "SYSTEMIP" again.
* mass update of files to have native line endingsSean Dague2007-07-306-722/+722
|
* added OnDisconnectUser event to required classesSean Dague2007-07-302-145/+148
|
* Deleting objects should now work. But beware they aren't send to your trash ↵MW2007-07-292-2/+2
| | | | folder or anything so there is at the moment no way to recover deleted objects.
* * Added new compatibility functions to UtilAdam Frisby2007-07-291-0/+55
| | | | | | * IsEnvironmentSupported() - returns whether the platform is supported, if not, an error message is specified (at the moment restricts 95/98/ME, Systems that lack HTTPD.SYS and versions of the .NET framework prior to 2.0) * GetFileName() - returns a system valid filename, on windows this places data in the Application Data directory, on UNIX, the folder in which the application is calling from.
* You should now see the correct Avatar for other users, including their ↵MW2007-07-282-0/+2
| | | | | | | clothes, although their still seems to be a few problems with the clothes, in that sometimes other avatar's default clothes are white. At last, removed the need for the avatar-texture.dat file. (Please never come back).
* Should now have version 0.1 of our new ruth default avatar. At the moment, ↵MW2007-07-271-2/+8
| | | | | | | | you only see your own avatar correctly, all other user's avatars show up as the old ruth. This will be fixed soon. We also need better clothing for the new ruth and to edit the body shape. To get this working you will need to delete your asset yap file and also in grid mode the user server needs to be updated.
* A few changes so that the number of warnings is less but without deleting ↵MW2007-07-272-2/+0
| | | | | | | | 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.
* More work on inventory and opensim library.MW2007-07-263-1/+14
| | | | | Fixed a number of bugs in the AssetCache related to asset downloading.
* * Started renaming world to Scenelbsa712007-07-262-2/+2
| | | | | | * Update and UpdateMovement now first stores array to avoid collection update exceptions * Ignored some bins
* Added the default shape to the OpenSim library. Now need to get the new ruth ↵MW2007-07-251-1/+1
| | | | into asset format and add that.
* * Users doing terraforming should see updates instantly now.Adam Frisby2007-07-241-1/+1
| | | | | * Other viewers in the sim will see updates no more than once every 5 seconds.
* *Added configuration plugin (OpenSim.Framework.Configuration.HTTP.dll) that ↵mingchen2007-07-232-2/+7
| | | | | | | | fetches a file from a remote server *Right now, values are not saved back to the remote server, but that will be changed *Removed some warnings from invalid references that were not used anyways
* * Some work in progress code: Inventory cache, start of inventory ↵MW2007-07-224-6/+24
| | | | | | | | | | | server/service, userprofile cache, inventory handling. (non of it is enabled yet (or at least it shouldn't be). * Fixed some of the problems with crossing regions when flying: you should no longer sink to ground level when crossing (should keep roughly your right height). Should no longer sometimes get sent back to the centre of the current region when attempting to border cross. But instead sometimes you will find you avatar stop at the edge of region and you will need to start moving again to retry the crossing (which should then work). This code is partly based on Babblefrog's issue #212 patch. [I think I have some ideas of how to solve the stopping at edges problem, just want to get the inventory code done first] * Capabilities code has now been moved to the OpenSim.Framework.Communications project as some of the caps code will be tightly tied to inventory/asset handling and it was causing a two way reference problem when it was in its own project/dll. This is a Big commit as I was going to keep my inventory work local until I had it in a working state, in case it brakes anything, but its getting harder to keep in sync with svn.
* Re-added the ability to set the database provider (dll) in the config file ↵MW2007-07-212-2/+12
| | | | for the userserver and gridserver.
* *Added ability to manually set the configuration plugin dll from ↵mingchen2007-07-201-1/+5
| | | | ConfigurationMember
* * Fixed an config issue (log not initialized in RegionInfo config)lbsa712007-07-201-0/+5
| | | | | * Added LineInfo stacktrace parser to LogBase (not used yet though)
* * Assortment of Console changes - console messages are now grouped into ↵Adam Frisby2007-07-201-1/+1
| | | | modules (eg "client", "grid", "terrain", "storage", etc)
* *Moved XmlConfiguration to its own projectmingchen2007-07-193-135/+43
| | | | | | *Made it possible to load a configuration interface by DLL *Deleted the 1024 config files until they are updated