aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/ScenePresence.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-08-24Fixed a problem where some prims didn't show up when you crossed or ↵MW1-0/+3
teleported into another region.
2007-08-21Hopefully fixed the problem of users avatars not always showing up when ↵MW1-6/+10
either you or another user has crossed from one region to another. (however a avatar's appearance isn't kept across regions, but we need to add that to inter-regions communications so for now people will have to put up with some other user's avatars appearing as the bald(ish) fat man
2007-08-20The regionUUID is now being passed to the datastore calls.MW1-0/+10
2007-08-19Sqlite datastore should now save the textures and extraparams data (used by ↵MW1-1/+2
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-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-12/+12
* This meant introducing AbsolutePosition on all objects (since SimChat wants that)
2007-08-15Temporary fix for the region crossing crash, Although we need to start to ↵MW1-1/+2
change and improve how we handle caps.
2007-08-10Some cleaning up and removed a few old files no longer in use.MW1-13/+2
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).
2007-08-10Made a few changes so that once we enable the sqlite data store (simple line ↵MW1-0/+1
change in OpenSimMain), then basic ( with a few limits at moment) prim database backup will work.
2007-08-09Making sure my local working copy is in sync with svn before I start the job ↵MW1-1/+4
of enabling the new SceneObject classes.
2007-08-09Transition between not flying / flying should be smootherBrian McBee1-1/+6
2007-08-08when teleporting to a non-adjacent region, client was not getting new neighboursBrian McBee1-1/+1
2007-08-06* encapsulated firstname/lastname on ScenePresencelbsa711-38/+48
* fixed 'users' console command * minor refactorings
2007-08-03OpenSim/Region/Environment/Scenes/ScenePresence.csBrian McBee1-4/+4
More tuning of regioncrossing variables. I made tolerances a little too tight with the last patch.
2007-08-03OpenSim/Region/Physics/BasicPhysicsPlugin/BasicPhysicsPlugin.cs, ↵Brian McBee1-9/+9
OpenSim/Region/Environment/Scenes/ScenePresence.cs Fix for array out-of-bounds error in basicphysics.
2007-08-02Fixes flying glitch (hang) when crossing region boundariesBrian McBee1-4/+4
2007-08-01Some more work on SceneObject/primitive rewrites (AllNewSceneObjectGroup2 ↵MW1-2/+5
/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-29Deleting objects should now work. But beware they aren't send to your trash ↵MW1-1/+4
folder or anything so there is at the moment no way to recover deleted objects.
2007-07-28fixed the problem with other avatar's clothes being white.MW1-0/+1
2007-07-28You should now see the correct Avatar for other users, including their ↵MW1-11/+48
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).
2007-07-27A few changes so that the number of warnings is less but without deleting ↵MW1-0/+5
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-3/+13
* 6 Compiler warnings left (total) - two legacy caps warnings, four unused ScenePresence events.
2007-07-26* Started renaming world to Scenelbsa711-11/+11
* Update and UpdateMovement now first stores array to avoid collection update exceptions * Ignored some bins
2007-07-22* Some work in progress code: Inventory cache, start of inventory ↵MW1-4/+6
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.
2007-07-21* Issue#209 - Terrain Hills Patch (Thanks Babblefrog)Adam Frisby1-1/+1
* Issue#208 - Region crossing should be using External host (Thanks Babblefrog) * Issue#207 - Prebuild.xml contains path errors (Thanks Gareth)
2007-07-19Some work on Inventory (not yet finished or enabled)MW1-2/+4
2007-07-19* Added housekeeping comments, see mailing list in just a moment...Adam Frisby1-2/+2
2007-07-17* Changed SimpleApp to use EventManager and Scene timerlbsa711-4/+4
* Refactored a lot of m_* and public -> wrappers
2007-07-16changed to native line ending encodingSean Dague1-623/+623
2007-07-15It wasn't me who messed up flying when adding a test NPC class. (honestly!)MW1-1/+1
2007-07-15Hijacked simpleApp again (sorry lbsa71, guess I should create my own ↵MW1-2/+5
simpleApp), to try out a basic test npc character(/class).
2007-07-14Added AddPreCompiledScript method to ScriptManager.MW1-4/+1
Done some work on lbsa71's simpleApp(hope he doesn't mind): now have the avatar showing up and the terrain and his pulsating box (well except its not a box, as there seems to be something wrong with our PrimitiveBaseShape..DefaultBox() settings). Also noticed a few other problems that I had to work around, so these need looking into.
2007-07-13*Moved the OnSignificantClientMovement event to ScenePresence.mingchen1-2/+9
*ParcelManager's resetSimParcels does not set any default values. *Updated ParcelData with correct defaults previously set in resetSimParcels *Region overrides are now sent to viewer instead of dummy'd
2007-07-13*Reworked parcel joining to work the same way as LL's method.mingchen1-2/+1
**Parcels within selection now join and not the two parcels selected at each corner *Created OnSignificantClientMovement event that is triggered when an avatar moves more than 2 meters.
2007-07-13* I want to commit too!lbsa711-1/+0
2007-07-12*Parcel and estate support fully restored into Sugilitemingchen1-1/+21
*Significant movement (currently set to 2 meters of movement for performance reasons, even though its speedy) and initial login now sends parcel updates
2007-07-12*Found and fixed bug that crashed viewer when logging in or viewing land ownersmingchen1-0/+1
*Reenabled estate manager; remember, the master avatar is the only one that can use this (by default: Test User with password 'test') *Still working on readding support for updating parcel information when logging in or moving into a new parcel
2007-07-11* Applying dalien's patches from bug#177 and #179Adam Frisby1-7/+24
2007-07-10Gird mode in sugilite should now work in so far as you should be able to ↵MW1-28/+34
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.
2007-07-09Re-applied dalien patch (#175) and included bin\data with avataranimations.xmllbsa711-4/+29
2007-07-09Done a little bit of renaming in primitive.cs and on a few events in IClientAPI.MW1-1/+1
Disabled CAPS asset uploading as it seems it now crashes the server.
2007-07-08* reverted rev 1200 waiting for info re animations.xml lbsa711-29/+4
2007-07-08Applied animations patch (#175) submitted by dalienlbsa711-4/+29
2007-07-04A bit more work on Building tools/support.MW1-1/+1
updated Axiom.MathLib.dll.
2007-07-03Today's work on Building support/tools. Think I am slowly getting there. MW1-0/+1
2007-07-03* Optimized usings (the 'LL ate my scripts' commit)lbsa711-9/+8
* added some licensing info
2007-07-01MAJOR IP RESTRUCTURINGlbsa711-1/+1
* moving towards IPEndPoints all over the place * trying to make the internal/external division
2007-06-28enabled physics plugin flying flags.MW1-2/+1
2007-06-28Applied ScenePresence movement patch from Darok.MW1-28/+53
2007-06-27*Moved all the classes into their own file from LLSDHelpers.csmingchen1-0/+0
*Some folder renaming to follow project Name *Updated prebuild.xml