Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2009-11-25 | minor: add doc to a few parcel methods | Justin Clark-Casey (justincc) | 5 | -7/+44 | |
2009-11-25 | Change osTeleportAgent parameters from long to int. That numerical range is | Melanie | 3 | -5/+5 | |
not even supported by the underlying type, so there is no need to ask for a type the script can not even supply. | |||||
2009-11-25 | Change osTeleportAgent parameters from long to int. That numerical range is | Melanie | 3 | -5/+5 | |
not even supported by the underlying type, so there is no need to ask for a type the script can not even supply. | |||||
2009-11-25 | Change chat config code so that enabled = false actually does disable the ↵ | Justin Clark-Casey (justincc) | 1 | -2/+3 | |
chat module | |||||
2009-11-25 | minor: remove some mono compiler warnings, add --merge load oar switch to ↵ | Justin Clark-Casey (justincc) | 3 | -3/+2 | |
help information | |||||
2009-11-25 | Implement oar merging | Justin Clark-Casey (justincc) | 1 | -6/+10 | |
An oar can now be merged with existing region contents by using the --merge option For example, load oar --merge my.oar Existing terrain, region settings and parcel data is left in place when an oar is merged. See http://opensimulator.org/wiki/OpenSim_Archives#Usage for more information | |||||
2009-11-25 | Add MIT/X11 licensed NDesk.Options (http://www.ndesk.org/Options) DLL to aid ↵ | Justin Clark-Casey (justincc) | 1 | -1/+9 | |
command line parsing | |||||
2009-11-25 | * Reverting last commit.. because it just made it worse. | Teravus Ovares (Dan Olivares) | 2 | -9/+0 | |
2009-11-25 | * Attempt number 1 to stop the repeating crouch animation that sometimes ↵ | Teravus Ovares (Dan Olivares) | 2 | -0/+9 | |
happens. * This tries to address it by correcting one potential bug where it never resets the falltimer. * This tries to address it by telling Physics that we're not flying this step.. instead of waiting until the next step when the next agent update comes along. | |||||
2009-11-24 | Append a prefix to the god avatar names appearing in chat whilst in god mode ↵ | CasperW | 1 | -3/+8 | |
(disabled by default, config entry admin_prefix) | |||||
2009-11-24 | Make load/save iar slightly better in the face of io failures by always ↵ | Justin Clark-Casey (justincc) | 2 | -63/+77 | |
attempting to close the streams | |||||
2009-11-24 | make save and load oar slightly more robust by always closing the archive ↵ | Justin Clark-Casey (justincc) | 3 | -13/+30 | |
streams even if there has been an error | |||||
2009-11-24 | minor: remove some mono compiler warnings | Justin Clark-Casey (justincc) | 1 | -1/+3 | |
2009-11-24 | pass all command parameters to load/save oar, not just the filename | Justin Clark-Casey (justincc) | 5 | -28/+49 | |
unfortunately, these commands cannot yet be properly relocated to the region modules due to deficiencies in the region module infrastructure | |||||
2009-11-24 | Removed some extra debug chatter | CasperW | 2 | -2/+1 | |
2009-11-24 | Drop all locking of part.TaskInventory in favour of a ReaderWriterLockSlim ↵ | CasperW | 7 | -476/+579 | |
lock handler. This gives us: - Faster prim inventory actions. Multiple threads can read at once. - Fixes the known prim inventory thread locks - In the event of a thread lock occurring, it will usually self heal after sixty seconds with an error message in the console | |||||
2009-11-24 | minor: remove experimental tags from load iar and save iar commands | Justin Clark-Casey (justincc) | 1 | -2/+2 | |
2009-11-23 | * This concludes the packet migrations from the big nasty switch into packet ↵ | Teravus Ovares (Dan Olivares) | 1 | -20/+1537 | |
handler delegates. | |||||
2009-11-23 | * Moved 60 more packet handlers to Packet Handler Delegates. | Teravus Ovares (Dan Olivares) | 1 | -21/+2055 | |
2009-11-23 | Swap the locking of m_EventQueue and m_Script to ease locks on script ↵ | CasperW | 1 | -115/+119 | |
inventory operations | |||||
2009-11-23 | Fixed nullrefs | CasperW | 2 | -21/+29 | |
2009-11-23 | Added some [DebuggerNonUserCode] modifiers to functions that throw ↵ | CasperW | 5 | -1/+15 | |
EventAbortException() to ease debugging on Visual Studio | |||||
2009-11-23 | * Resolves mantis 4390 http://opensimulator.org/mantis/view.php?id=4390 | Teravus Ovares (Dan Olivares) | 1 | -1/+1 | |
2009-11-23 | * Moved 40 more Packet handlers to the PacketDelegate and out of the 5000 ↵ | Teravus Ovares (Dan Olivares) | 1 | -6/+1104 | |
line switch. | |||||
2009-11-22 | * Adds a test for if the collision is at the bottom of the capsule on ↵ | Teravus Ovares (Dan Olivares) | 1 | -1/+12 | |
avatar. This prevents the 'double jump' capability that's been occurring for ages when avatar collide with prim on the side. | |||||
2009-11-23 | Formatting cleanup. | Jeff Ames | 30 | -98/+528 | |
2009-11-22 | * Added missing lock to m_forcelist when AddForce is called. When a user ↵ | Teravus Ovares (Dan Olivares) | 1 | -3/+26 | |
dragged a prim, in some cases, it would corrupt the datatype in memory and throw spurious IndexOutOfRangeExceptions. * Physics a situation that causes physics to spew redline messages to the console forever. | |||||
2009-11-22 | * This doesn't fix mantis 3522, but it should mitigate it. | Teravus Ovares (Dan Olivares) | 1 | -0/+43 | |
* If the start position is outside of the region on the X and Y, put the user in the center of the region and then damp the Z position at 720 if necessary. If the start position is not outside of the region on the X or Y, then don't check the Z. | |||||
2009-11-22 | * The client prevents the avatar from landing if the avatar is going above ↵ | Teravus Ovares (Dan Olivares) | 1 | -5/+10 | |
an unknown certain speed, so, add a speed check on the server. * This addresses the 'hump the prim' animation playing while you're moving forward full speed and pressing page down over a prim to land. | |||||
2009-11-22 | * Switched over 15 more packet types from the 5000 line switch to the Packet ↵ | Teravus Ovares (Dan Olivares) | 1 | -6/+293 | |
handler delegate | |||||
2009-11-22 | * Moved 13 more packet type handlers to PacketHandler Delegates.. and out ↵ | Teravus Ovares (Dan Olivares) | 1 | -6/+373 | |
of of that giant 5000 line switch, ProcessInPacket. | |||||
2009-11-22 | Add non-scripted sit, fix scripted sit. | KittoFlora | 1 | -30/+69 | |
2009-11-21 | * Comment out some example code for later. | Teravus Ovares (Dan Olivares) | 1 | -2/+2 | |
2009-11-21 | * Move a few of the ProcessInPacket switch case blocks into packet handler ↵ | Teravus Ovares (Dan Olivares) | 1 | -6/+103 | |
delegates | |||||
2009-11-21 | * This fixes landing on Prim and removes the hack from yesterday. Landing ↵ | Teravus Ovares (Dan Olivares) | 2 | -5/+5 | |
on prim should work fine again. | |||||
2009-11-21 | Minor packet ordering fix | CasperW | 2 | -11/+30 | |
2009-11-21 | Improved avatar responsiveness. | CasperW | 6 | -48/+163 | |
2009-11-21 | * Hack to get avatar to land on prim. This is a big nasty hack that tricks ↵ | Teravus Ovares (Dan Olivares) | 1 | -0/+2 | |
the client into thinking you're landing on the terrain. There are some visual artifacts when you land. It's only temporary until we figure out how this broke. | |||||
2009-11-21 | * Fixes the second of two terse update issues. Physical objects should react ↵ | Teravus Ovares (Dan Olivares) | 2 | -0/+4 | |
normally again. | |||||
2009-11-21 | * Fixes one of two terse update issues. There's still one left, but this ↵ | Teravus Ovares (Dan Olivares) | 2 | -1/+12 | |
one fixes the situation where the object on the server is moving but no updates are being sent. | |||||
2009-11-20 | Fix http://opensimulator.org/mantis/view.php?id=3874 - parenthesis in for ↵ | Justin Clark-Casey (justincc) | 2 | -2/+20 | |
statements cause script compile failures This fixes a problem in OpenSim where statements of the form for ((i = 0); (i < 10); (++i)) { ... } do not compile even though they are valid lsl. | |||||
2009-11-19 | Clean up messages in ODE | KittoFlora | 2 | -4/+4 | |
2009-11-18 | minor: tweak log message to say which region is being enabled for logins | Justin Clark-Casey (justincc) | 1 | -5/+6 | |
2009-11-17 | refactor: Eliminate redundant CreateSceneViewer call on ScenePresence ↵ | Justin Clark-Casey (justincc) | 1 | -4/+1 | |
constructors since this is also done on other called constructors | |||||
2009-11-17 | Add scene animator set up to apparantly uncalled no-arg ScenePresence ↵ | Justin Clark-Casey (justincc) | 1 | -1/+2 | |
constructor | |||||
2009-11-17 | refactor: move AvatarAnimations, BinBVHAnimation | Justin Clark-Casey (justincc) | 4 | -61/+62 | |
2009-11-17 | minor: remove mono compiler warning due to unreachable code in GroupsModule | Justin Clark-Casey (justincc) | 1 | -2/+2 | |
2009-11-17 | refactor: move AnimationSet | Justin Clark-Casey (justincc) | 2 | -2/+3 | |
2009-11-17 | refactor: move most animation methods from ScenePresence into a new ↵ | Justin Clark-Casey (justincc) | 7 | -406/+499 | |
ScenePresenceAnimator class | |||||
2009-11-16 | minor: very minor formatting change | Justin Clark-Casey (justincc) | 2 | -6/+1 | |