aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/ScenePresence.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fixes flying glitch (hang) when crossing region boundariesBrian McBee2007-08-021-4/+4
|
* Some more work on SceneObject/primitive rewrites (AllNewSceneObjectGroup2 ↵MW2007-08-011-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.
* Deleting objects should now work. But beware they aren't send to your trash ↵MW2007-07-291-1/+4
| | | | folder or anything so there is at the moment no way to recover deleted objects.
* fixed the problem with other avatar's clothes being white.MW2007-07-281-0/+1
|
* You should now see the correct Avatar for other users, including their ↵MW2007-07-281-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).
* A few changes so that the number of warnings is less but without deleting ↵MW2007-07-271-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.
* * Removing some housekeeping tagged elements.Adam Frisby2007-07-271-3/+13
| | | | | * 6 Compiler warnings left (total) - two legacy caps warnings, four unused ScenePresence events.
* * Started renaming world to Scenelbsa712007-07-261-11/+11
| | | | | | * Update and UpdateMovement now first stores array to avoid collection update exceptions * Ignored some bins
* * Some work in progress code: Inventory cache, start of inventory ↵MW2007-07-221-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.
* * Issue#209 - Terrain Hills Patch (Thanks Babblefrog)Adam Frisby2007-07-211-1/+1
| | | | | | * Issue#208 - Region crossing should be using External host (Thanks Babblefrog) * Issue#207 - Prebuild.xml contains path errors (Thanks Gareth)
* Some work on Inventory (not yet finished or enabled)MW2007-07-191-2/+4
|
* * Added housekeeping comments, see mailing list in just a moment...Adam Frisby2007-07-191-2/+2
|
* * Changed SimpleApp to use EventManager and Scene timerlbsa712007-07-171-4/+4
| | | | | * Refactored a lot of m_* and public -> wrappers
* changed to native line ending encodingSean Dague2007-07-161-623/+623
|
* It wasn't me who messed up flying when adding a test NPC class. (honestly!)MW2007-07-151-1/+1
|
* Hijacked simpleApp again (sorry lbsa71, guess I should create my own ↵MW2007-07-151-2/+5
| | | | simpleApp), to try out a basic test npc character(/class).
* Added AddPreCompiledScript method to ScriptManager.MW2007-07-141-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.
* *Moved the OnSignificantClientMovement event to ScenePresence.mingchen2007-07-131-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
* *Reworked parcel joining to work the same way as LL's method.mingchen2007-07-131-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.
* * I want to commit too!lbsa712007-07-131-1/+0
|
* *Parcel and estate support fully restored into Sugilitemingchen2007-07-121-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
* *Found and fixed bug that crashed viewer when logging in or viewing land ownersmingchen2007-07-121-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
* * Applying dalien's patches from bug#177 and #179Adam Frisby2007-07-111-7/+24
|
* Gird mode in sugilite should now work in so far as you should be able to ↵MW2007-07-101-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.
* Re-applied dalien patch (#175) and included bin\data with avataranimations.xmllbsa712007-07-091-4/+29
|
* Done a little bit of renaming in primitive.cs and on a few events in IClientAPI.MW2007-07-091-1/+1
| | | | | Disabled CAPS asset uploading as it seems it now crashes the server.
* * reverted rev 1200 waiting for info re animations.xml lbsa712007-07-081-29/+4
|
* Applied animations patch (#175) submitted by dalienlbsa712007-07-081-4/+29
|
* A bit more work on Building tools/support.MW2007-07-041-1/+1
| | | | | updated Axiom.MathLib.dll.
* Today's work on Building support/tools. Think I am slowly getting there. MW2007-07-031-0/+1
|
* * Optimized usings (the 'LL ate my scripts' commit)lbsa712007-07-031-9/+8
| | | | | * added some licensing info
* MAJOR IP RESTRUCTURINGlbsa712007-07-011-1/+1
| | | | | | * moving towards IPEndPoints all over the place * trying to make the internal/external division
* enabled physics plugin flying flags.MW2007-06-281-2/+1
|
* Applied ScenePresence movement patch from Darok.MW2007-06-281-28/+53
|
* *Moved all the classes into their own file from LLSDHelpers.csmingchen2007-06-271-0/+525
*Some folder renaming to follow project Name *Updated prebuild.xml