| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| | |
|
| |
| |
| |
| |
| |
| | |
for proper work of HG friends.
See http://opensimulator.org/mantis/view.php?id=5847
|
| |
| |
| |
| | |
location of the user's UAS. This corrects an earlier design which had some cases pointing to the profile server. WARNING: CONFIGURATION CHANGES in both the sims (*Common.ini) and the Robust configs (Robust.HG.ini). Please check diff of the example files, but basically all vars that were pointing to profile should point to the UAS instead and should be called HomeURI.
|
| |
| |
| |
| | |
separator
|
|/
|
|
| |
methods and expose on interface for external calls.
|
|
|
|
| |
rather than halting the IAR load with an exception.
|
|
|
|
|
|
| |
loading an archive. This does add an extra roundtrip to the asset
server if loading new assets but it protects against overwriting
(and potentially corrupting) existing assets.
|
| |
|
|
|
|
|
|
| |
commands.
Eliminate redundant one line methods
|
|
|
|
| |
This is so that we can inspect the image download queue (texture download via udp) for debugging purposes.
|
|
|
|
| |
Remove DEBUG option from OpenSim.ini.example as it is handled in the console now with "debug teleport"
|
|\ |
|
| | |
|
| | |
|
| |\ |
|
| | |\ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
a particular baked texture, if any.
This is for debugging to relate texture console entries back to particular users on the simulator end.
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Move setting from ini to existing facitilies - thanks justincc
toggle with console command: debug teleport
|
| |/
|/|
| |
| | |
avies always land in 0,0
|
|/
|
|
| |
(r/17672)
|
|
|
|
|
|
| |
Add configuration option - DEBUG to enable debugging methods. This is temporary for helping users testing teleport routing be able to report back the data with the test cases. We can remove when finished with this, or leave it if it proves to be useful.
Users: set DEBUG = true in OpenSim.ini to get more information from teleport routing. The default is false. It presently prints the TeleportFlags value.
|
|
|
|
| |
Switch to our TeleportFlags enum instead of LibOMV because we need to define a type for HG Logins. Also moved some debugging in ScenePresence into a function to make it simpler to enable/disable.
|
|
|
|
| |
Fix test to checking against bitfield instead of int
|
|
|
|
| |
Incoming HG owner/estate manager, etc. is routed according to the rules defined for teleports within the local grid. Left some commented debugging code inside so we can test other cases. Will remove when tings are settled in.
|
|
|
|
| |
Add some temporary debugging to the teleport routing to get a better view of what happens when HG jumps are made.
|
|
|
|
| |
Needed to breakout the ViaHGLogin check to it's own section. For some reason it would not factor in when combined with the other teleport flag types.
|
| |
|
| |
|
| |
|
|
|
|
| |
a good place to trigger a test on the opensimulator site
|
|\ |
|
| |
| |
| |
| | |
Route non-owner avatars according to land settings
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
other than falling again.
Addresses http://opensimulator.org/mantis/view.php?id=5839
|
| |
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| | |
parameter that have been used in different methods.
See http://opensimulator.org/mantis/view.php?id=5814
Thanks Michelle Argus!
|
|/
|
|
| |
owner, can be destroyed only by the owner and only the owner can save their appearance. Added "NPC" as a flag to llSensor to sense NPCs and exclude them from "AGENT" results.
|
| |
|
|
|
|
| |
in line with all the other ones that are there
|
| |
|
|
|
|
| |
formatting/doc changes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The original function suffered from unexpected results due to rounding
errors. An error of only 1 or 2 ulps would cause the code to not detect
a singularity at Y rotation +/- PI/2 and take the non-singularity code
path. The replacement code does not suffer from wildly inaccurate
results at the +/- PI/2 singularity. The check in the code for the
singularity isn't strictly needed, but gives more consistent results
At the singularity, the X and Z rotations add. The if check simply
forces the X rotation to be zero so the entirety of the X+Z rotation is
carried by Z.
Additionally, the test code has been updated to include test cases that
caused the old code to fail. The test algorithm is also updated to
perform a more meaningful test. The original code checked if the values
against expected values. This could fail at +/- PI rotations since a
rotation around an axis by PI causes the identical effect as a rotation
by -PI. The new test code checks that the returned angles can be used
to recreate a quaternion that causes the same rotation.
|
|
|
|
|
|
|
|
|
|
| |
FetchInventoryDescendents2 capability.
Not yet enabled by default. You can enable this by setting Cap_FetchInventory2 = "localhost" in the [ClientStack.LindenCaps] section of OpenSim.ini
Enabling both FetchInventory2 and FetchInventoryDescendents2 improves the situation with properly fetching attachments and hud objects
Probably because viewers are never expecting the odd situation where FetchInventoryDescendents2 is present but not FetchInventory2
However, for some reason attachments and hud objects occasionally fail to appear, though their status is correct in inventory
For attachments, focussing on the avatar makes them appear. Hud objects have to be reattached.
|