aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merged 3Di code that provides scene and avatar serialization, and plugin ↵Johan Berntsson2008-03-041-2/+8
| | | | support for region move/split/merge. See ThirdParty/3Di/README.txt. Unless the new modules are used there should be no noticeable changes when running OpenSim.
* * Renamed the Data Framework namespaceslbsa712008-03-035-5/+5
|
* Thank you very much, Ahzzmandius for:Charles Krinke2008-03-021-7/+1
| | | | | | | converts Parse calls to TryParse Replaces string.empty and lluuid.zero calls on user load to use real values from DB (related to user profile save/load work. Finer grained patching)
* Minor cleanup.Jeff Ames2008-02-201-16/+10
|
* * Make RegionProfileData.RequestSimProfileData staticJustin Clarke Casey2008-02-181-1/+9
| | | | | | * Minor documentation bits
* * Made new Framework.Constants class, added RegionSize member.Adam Frisby2008-02-141-2/+2
| | | | | | * Converted all instances of "256" spotted to use RegionSize instead. Some approximations used for border crossings (ie 255.9f) are still using that value, but should be updated to use something based on RegionSize. * Moving Terrain to a RegionModule, implemented ITerrainChannel and TerrainModule - nonfunctional, but will be soon.
* * Split out MSSQLManager Test/Init into each provider.lbsa712008-02-131-3/+0
| | | | | | | | | * Made regions table name configurable (MSSQL only) * Added a note in ini.example pointing out that the sql resources have to change if you change table names * Removed duplicate picker method from GridData interface [Provided by openlifegrid.com]
* Converted logging to use log4net.Jeff Ames2008-02-051-1/+1
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* Added copyright statements.Jeff Ames2008-02-055-7/+140
|
* First part of avatar persistence, currently only really works in standalone ↵MW2008-02-045-11/+32
| | | | | | | | | mode (with accounts_authenticate set to true), it also only currently has a mysql database connector. (sqlite one will follow soon). It also uses the tribalmedia database system, so this needs checking to see if the old problems with mono have been fixed. To use, see the appearance section in opensim.ini.example, set "persist = true", then add the correct connection string for your database.(see mysql-AvatarAppearance.sql in share folder for a example of the table mysql table structure). This could possible be used in a very small grid, but would mean each region server would need to connect to the same mysql database. But the work to move the code to one of the grid servers shouldn't be too much.
* Add last entry "owner_uuid" back into regions table definition.Charles Krinke2008-02-021-1/+19
|
* * Following on from sdague's r3144, commenting out other parts of TribalMediaJustin Clarke Casey2008-01-215-1/+12
| | | | | | * This should resolve the current build problem
* * More work on getting the database framework to actually worklbsa712008-01-165-14/+14
|
* Set svn:eol-style.Jeff Ames2008-01-151-17/+17
|
* * Renamed a bunch of Data baseclasses for clarity and readabilitylbsa712008-01-154-7/+7
| | | | | (Slowly getting there)
* * Some morw work on specializing the database framework for OpenSimlbsa712008-01-153-3/+21
|
* * Mother of all commits:Adam Frisby2008-01-153-19/+47
| | | | | | | * Cleaned up copyright notices in AssemblyInfo.cs's * Added Copyright headers to a bunch of files missing them * Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
* Set svn:eol-style.Jeff Ames2008-01-144-277/+277
|
* * Added specialization of DatabaseMapper, DataReader and ObjectFieldMapper ↵lbsa712008-01-144-0/+278
| | | | | | | | | to support LLVector3, LLQuaternion and LLUUID * Added PrimitiveBaseShapeTableMapper to show how it's done NOTE: Nothing actually works yet - this code should be considered more of educational value until it's all wired together
* * Optimized usingslbsa712007-12-275-6/+9
| | | | | | | * shortened references * Removed redundant 'this' * Normalized EOF
* Misc. cleanup:Jeff Ames2007-12-191-2/+2
| | | | | | | * added Util.Clip(value, min, max) * modified asset cache's numPackets calculation to use max packet size (600) instead of 1000 * removed a few magic numbers
* saved OpenSim source code from the giant rampaging unterminated copyright ↵Jeff Ames2007-12-105-10/+10
| | | | notice of doom
* * Removed references to "new LLUUID()", replaced with LLUUID.Zero.Adam Frisby2007-11-241-1/+1
|
* * Added AvatarPicker in Standalone mode. Works for finding avatar to ban, ↵Teravus Ovares2007-11-131-0/+12
| | | | | | | manually trying to add a friend (with the add button) or useful to those who are curious which usernames have visited your standalone sim. Important for future development :D. * Grid mode always returns 0 results until the Grid Communications portion is done.
* * Optimized usingslbsa712007-10-306-57/+73
| | | | | | * Shortened type references * Removed redundant 'this' qualifier
* Renamed SimProfileData to RegionProfileDataTleiades Hax2007-10-172-9/+9
|
* == The "right name and place" commit ==lbsa712007-10-053-548/+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
* Reverting back to 2017 since 2018 were causing Linux breakage; reopening ↵lbsa712007-09-271-24/+9
| | | | Tleiades patch 444 and 445.
* * Tleiades grid mode inventory (#444) - thanx Tleiades!lbsa712007-09-271-9/+24
| | | | | | | * updated to rev 1413 on libsecondlife.dll and libsecondlife.dll.config (#423)
* * Renamed methods on IUserDatalbsa712007-09-241-12/+12
|
* Hiding evidence that I once was a VB coder (thanks to refactoring). Renamed ↵Tedd Hansen2007-09-131-1/+0
| | | | member names to smallcapsy.
* Fixed DNS resolve bug for Grid mode on multi-Homer systems.Tedd Hansen2007-09-121-0/+1
|
* debug for mysql issueSean Dague2007-09-121-0/+1
|
* Fix for setting region through property. This should allowSean Dague2007-09-111-2/+2
| | | | | | mysql to work again in grid mode for user storage.
* mass update of urls in source code to new websiteSean Dague2007-09-108-8/+8
|
* some changes which get us closer to Sqlite storage for usersSean Dague2007-08-281-2/+8
|
* Ensure that UserProfileData doesn't pass down null values. Sean Dague2007-08-281-4/+7
| | | | | | These cause some issues with the ADO.NET mapping
* Taking Prims (SceneObjectGroups) in and out of inventory should now work and ↵MW2007-08-161-0/+6
| | | | 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).
* clear userAgent state on client shutdown, which fixes the issueSean Dague2007-07-311-0/+6
| | | | | | where you could only login once with a given id in standalone mode.
* Should now have version 0.1 of our new ruth default avatar. At the moment, ↵MW2007-07-271-1/+5
| | | | | | | | 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.
* Added the default shape to the OpenSim library. Now need to get the new ruth ↵MW2007-07-251-0/+8
| | | | into asset format and add that.
* Start of the OpenSim library , for now only contains a few textures. MW2007-07-251-1/+1
|
* * Some work in progress code: Inventory cache, start of inventory ↵MW2007-07-221-3/+10
| | | | | | | | | | | 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.
* Some work on Inventory (not yet finished or enabled)MW2007-07-191-0/+2
|
* changed to native line ending encodingSean Dague2007-07-169-1074/+1074
|
* More work on UserProfile and inventory cache (still currently not enabled).MW2007-07-111-3/+3
| | | | | Asset uploading over CAPS now works, and although inventory isn't really working yet, this should now at least enables texturing of prims.
* updated libsecondlife.dll to a 1.18 version (from the libsecondlife aditi ↵MW2007-07-111-0/+12
| | | | | | | | branch, so when they have a trunk version that is 1.18 ready, best to update again). Started some work on a userProfile/inventory cache.
* Gird mode in sugilite should now work in so far as you should be able to ↵MW2007-07-101-0/+10
| | | | | | | login and move between regions in the same instance. Moving to regions in a different instance of opensim still needs implementing (working on it now). Also trying to look at the map in grid mode will crash the server.
* * By popular demand, all generated build files are now deleted. Somebody ↵lbsa712007-07-082-171/+0
| | | | should make sure the wiki is updated.
* (no commit message)lbsa712007-07-082-21/+18
|