Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2008-09-06 | * refactor: Make SOG itself responsible for checking whether it's already ↵ | Justin Clarke Casey | 2 | -12/+10 | |
been deleted on an update request from the regular sweep | |||||
2008-09-06 | * minor: change hard tabs back to spaces in previous commit | Justin Clarke Casey | 2 | -3/+3 | |
* my excuse is that I hadn't used this monodevelop exe before... | |||||
2008-09-06 | * Fix mantis 2130 - nre occuring sometimes when the regular prim update ↵ | Justin Clarke Casey | 3 | -19/+7 | |
sweep occurs * Fold m_deleted and m_isDeleted together (ugh!) | |||||
2008-09-06 | * Remove lots of warnings from the CMS module | Justin Clarke Casey | 6 | -12/+12 | |
* Remove a few other miscellaneous warnings | |||||
2008-09-05 | Mantis#2093. Thank you kindly, Ewe Loon for a patch that: | Charles Krinke | 1 | -48/+48 | |
Solves SetPrimitiveParams, Revolutions not calculated properly. | |||||
2008-09-05 | Mantis#2126. Thank you kindly, Ralphos for a patch that addresses: | Charles Krinke | 2 | -8/+70 | |
Types extracted from a LSL_Types.list have to be down-cast initially to the exact type of value type object that the Object actually is. This would make for very cumbersome, ugly code when extracting list parameter items in ll functions where a few implicit conversions should be applied such as key -> LSLString and LSLInteger -> LSLFloat (but not LSLFloat -> LSLInteger). This patch adds a set of GetXXXItem member functions to the LLS_Type.list class, where XXX is the name of the LSL_Type to be extracted: LSLFLoat, LSLInteger etc. All take a single, int parameter that is the item number to be extracted. | |||||
2008-09-05 | Thank you kindly, KrTaylor for a patch that adds: | Charles Krinke | 1 | -3/+8 | |
llParseString functions throw exception when passed a list of variables and this patch adds logic to solve this to LSL_Api.cs | |||||
2008-09-05 | Mantis#2104. Thank you kindly, Godfrey for a patch that: | Charles Krinke | 1 | -3/+3 | |
If the parcel pointed to by the landmark has nothing in the Description field (of the General tab in About Land...), a NullReferenceException is thrown and the client is logged out. I added a check to the calls to Helpers.StringToField() in OpenSim.Region.ClientStack.LindenUDP.SendParcelInfo to avoid this issue. | |||||
2008-09-05 | * Adds configurable OGP Name prefix and suffix. See OpenSim.ini.example at ↵ | Teravus Ovares | 1 | -0/+7 | |
the bottom for details. Defaults to an empty string for prefix and '_EXTERNAL' for suffix | |||||
2008-09-05 | Replaced a lot of trig calls with lookup tables for common prim types in an ↵ | Dahlia Trimble | 1 | -43/+202 | |
attempt to improve meshing speed. Added a new between points interpolation method to improve accuracy of profile cuts in triangle and square profile prims. | |||||
2008-09-04 | added in find calls | Sean Dague | 1 | -2/+52 | |
added logging of exceptions, which we'll get quite a few of at this point most likely | |||||
2008-09-04 | remove calls | Sean Dague | 1 | -2/+33 | |
2008-09-04 | start in on an EntityList class so we can stop doing lots of manipulating | Sean Dague | 1 | -0/+81 | |
of Entities as a dictionary directly | |||||
2008-09-04 | fix some indenting | Sean Dague | 1 | -20/+20 | |
2008-09-04 | minor fixes | Sean Dague | 1 | -1/+0 | |
2008-09-04 | added rollback bit to the help menu | Sean Dague | 1 | -0/+1 | |
2008-09-04 | add some stubbing for ini.example for CMS module | Sean Dague | 1 | -4/+4 | |
2008-09-03 | Mantis #2111 | Melanie Thielker | 2 | -2/+26 | |
Eliminate gretuitious KillObject packets. KillObject is sent to the viewer for the root part only. Also prevents the full update on deselect that makes a deleted object reappear and stay visible until the background deleter got around to it. We still send 2 KillObject packets for the root prim, that could be avoided only at a cost in reliability. One packet seems an acceptable price to pay for consistency. | |||||
2008-09-03 | Mantis #2112 | Melanie Thielker | 2 | -8/+13 | |
Thannk you, ralphos, for a patch to clean up list item type handling and add a missing explicit cast in Shared/ | |||||
2008-09-03 | add standard copyright headers for the project | Sean Dague | 14 | -9/+387 | |
2008-09-03 | remove non code files | Sean Dague | 1 | -0/+0 | |
2008-09-03 | narrange to do basic cleanup of the CMS module | Sean Dague | 14 | -2284/+2620 | |
2008-09-03 | white space fixes | Sean Dague | 1 | -259/+259 | |
2008-09-03 | come up nicer on startup if the opensim.ini section isn't there | Sean Dague | 1 | -78/+78 | |
2008-09-03 | type change from ChatFromViewerArgs -> OSChatMessage to line up with trunk. | Sean Dague | 1 | -4/+4 | |
2008-09-03 | Merge branch 'cms' of http://pokgsa.ibm.com/~jbongio/public/opensim | Sean Dague | 16 | -0/+2914 | |
2008-09-03 | Mantis #2097 | Melanie Thielker | 1 | -3/+3 | |
Thank you, ralphos, for a patch that fixes an InvalidCastException in llSetPrimitveParams. | |||||
2008-09-03 | clean up and fixing a typo. | Dr Scofield | 2 | -2/+3 | |
2008-09-03 | Mantis #2107 | Melanie Thielker | 1 | -6/+17 | |
Thank you, lulurun, for a patch to fix a possible crash when a received packet contains a quaternion with all members zeroed. | |||||
2008-09-03 | Mantis #2109 | Melanie Thielker | 1 | -0/+2 | |
Prevent a null reference exception when reset is pressed on a script while it's being compiled. | |||||
2008-09-03 | Mantis#2106. Thank you kindly, HomerHorwitz for a patch that: | Charles Krinke | 1 | -3/+9 | |
The attached patch fixes connectivety checking of root- and child-agents. If an agent's client isn't sending any packets for some time (not even to StartPingCheck packets), we assume that we lost connection and try to log them out. | |||||
2008-09-03 | Mantis#2105. Thank you kindly, HomerHorwitz for a patch that addresses: | Charles Krinke | 2 | -8/+22 | |
Due to the many problems with not cleaned up child-agents, I thought it might make sense to be able to see them on the console. 'show users' on the region-server's console now outputs root- and child-agents (with "root" or "child" column) | |||||
2008-09-02 | a piece of LSL_API changes got checked in incorectly with 6091. This | Sean Dague | 1 | -1/+1 | |
fixes that, and should get us back to compile state. | |||||
2008-09-02 | Committing the missing resource file for MSSQL. Sorry... | Melanie Thielker | 1 | -1/+1 | |
2008-09-02 | Small fix to a cast in list parsing | Melanie Thielker | 1 | -1/+1 | |
2008-09-02 | fix: PostInitialise() not being called on script engines (nasty one that) | Dr Scofield | 6 | -78/+79 | |
cleanup: warnings, readability | |||||
2008-09-02 | Fix regex for string->int cast to accept leading spaces and a sign | Melanie Thielker | 1 | -1/+1 | |
2008-09-02 | First batch of the unit test changes for the new constants semantics | Melanie Thielker | 1 | -1/+1 | |
in XEngine. This turned out to be a lot of work to catch up. | |||||
2008-09-02 | Correct the representation of the automatic null string | Melanie Thielker | 1 | -1/+1 | |
2008-09-02 | Remove the ((bool)()) cast, since it can make c# barf | Melanie Thielker | 1 | -2/+2 | |
2008-09-02 | Change some chat output functions so that text is truncated at | Melanie Thielker | 4 | -7/+17 | |
1000 chars to avoid the exception thrown by libomv at 1100 chars. Change string->int conversion so it copes with non-numeric chars after the number and no longer uses a float to parse the value. | |||||
2008-09-02 | Y top shear accuracy improvements in circular path prim meshes | Dahlia Trimble | 1 | -3/+5 | |
2008-09-02 | Add an explicit cast to bool for the if expression so that any base types | Melanie Thielker | 1 | -2/+2 | |
that slip in will not cause it to break | |||||
2008-09-01 | Thank you, Ewe Loon, for a patch that fixes various aspects of | Melanie Thielker | 1 | -48/+48 | |
llSetPrimitiveParams and llSetLinkPrimitiveParams | |||||
2008-09-01 | This is an attempt to fix the handling of constants in LSL. | Melanie Thielker | 3 | -31/+34 | |
It wraps constants in new LSLType(x), so that lists with constant values are processed correctly. Contains changes to the lsl.parser.cs that are not (yet) reflected in opensim-libs, since this experimental patch affects XEngine only. Also contains nuts. | |||||
2008-09-01 | Another attempt at fixing XEngine llSetPrimitiveParams: Make it accept | Melanie Thielker | 2 | -26/+26 | |
LSLIntegers in lists, and attempt to address the scope issue on TRUE and FALSE with readonly static linkage | |||||
2008-09-01 | Mantis #2072 | Melanie Thielker | 1 | -1/+14 | |
Griefer protection! When running without serverside permissions, let only the owner edit attachments. Having everyone able to do it just isn't right. | |||||
2008-09-01 | compensates profile placement effects of Y hole size on X top shear for ↵ | Dahlia Trimble | 1 | -1/+2 | |
circular path prim meshes | |||||
2008-09-01 | Improvement in mesh accuracy in X Top Shear parameter for circular path prims | Dahlia Trimble | 1 | -1/+1 | |
2008-08-30 | * Pragma out deprecation warning and comment out to remove other warnings in ↵ | Justin Clarke Casey | 1 | -5/+7 | |
the OGP module * Thanks to Teravus for the heads up on this. |