aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-05-27From: Chris Yeoh <cyeoh@au1.ibm.com>Dr Scofield1-1/+4
The attached patch implements llPassTouches. It has been added to the export/import XML along with the flag for AllowedInventoryDrop. The MySQL backend has been updated as well, though I haven't done one of those before so could do with a check. I added the migration mysql file as well. The other data backends need updating as well.
2009-05-25* Upped version number to 0.6.5lbsa711-2/+2
2009-05-25Revert "From: Chris Yeoh <cyeoh@au1.ibm.com>"Dr Scofield1-4/+1
This reverts r9666. for some reason the mysql update does not work.
2009-05-25From: Chris Yeoh <cyeoh@au1.ibm.com>Dr Scofield1-1/+4
The attached patch implements llPassTouches. It has been added to the export/import XML along with the flag for AllowedInventoryDrop. The MySQL backend has been updated as well, though I haven't done one of those before so could do with a check. I added the migration mysql file as well. The other data backends need updating as well.
2009-05-22From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield3-0/+69
Changes to support client-side image pre-caching in the region. This commit adds an additional calling sequence to the DynamicTexture data and URL calls. The new interface allows a dynamic image to be loaded into a specific object face (rather than the mandatory ALL_SIDES supported today. This is in part fulfilment of ticket #458.
2009-05-22cleaning out warnings.Dr Scofield3-11/+13
NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that?
2009-05-21normalize quats before applying llSetRot()Dahlia Trimble1-1/+3
2009-05-18From: Alan Webb <alan_webb> & Dr Scofield<drscofield@xyzzyxyzzy.net>Dr Scofield2-22/+22
Disable use of log4net in script domains to avoid mono 2.4 aborts.
2009-05-18From: Alan Webb <alan_webb@us.ibm.com>Dr Scofield1-2/+2
Fixes: [1] Sharing exception on remote OAR management [2] Occasional 505 error talking to Tomcat [3] Occasional mono aborts caused by mlog in the script engine's app domain (mono 2.4)
2009-05-15Heart surgery on asset service code bits. Affects OpenSim.ini configuration ↵diva2-8/+14
-- please see the example. Affects region servers only. This may break a lot of things, but it needs to go in. It was tested in standalone and the UCI grid, but it needs a lot more testing. Known problems: * HG asset transfers are borked for now * missing texture is missing * 3 unit tests commented out for now
2009-05-13Make the LSL HTTP server create and give out URLs to scriptsMelanie Thielker2-14026/+14346
2009-05-13Add most of the meat to the LSL HTTP serverMelanie Thielker1-1/+7
2009-05-13Plumb request and return URL functions.Melanie Thielker1-3/+10
Implements llRequestURL, llRequestSecureURL, llReleaseURL
2009-05-13Implement llAttachToAvatar()Melanie Thielker1-1/+27
2009-05-13Implement llDetachFromAvatar()Melanie Thielker1-1/+27
2009-05-13Add interface, stub implementation and Charles Krinke3-0/+14
script stub for llGetHTTPHeader().
2009-05-13Add interface, implementation stub andCharles Krinke3-0/+14
script stub for llGetFreeURLs().
2009-05-13Added interface, implementation stub andCharles Krinke1-0/+5
script stub for llReleaseURL().
2009-05-13Remove incorrect semicolonCharles Krinke2-1/+8
2009-05-13Add interface, stubbed implementation andCharles Krinke3-1/+14
script stub for llRequestSecureURL().
2009-05-13Added interface, stub implementation and scriptCharles Krinke3-0/+11
stub for llRequestURL().
2009-05-13Add interface, stub and bare implmentation for llHTTPResponse().Charles Krinke3-0/+16
2009-05-12Thank you kindly, Patnad, for a patch that:Charles Krinke1-0/+2
This is to handle the changes in the v1.23 viewer of LL regarding the adult rating. With this patch a region can be changed to the adult rating from LL viewer v1.23 and above.
2009-05-09Fixed handling of inventory a bitHomer Horwitz1-2/+2
- AssetType isn't InventoryType. Those enums contain different numbers. Use AssetType for the asset type, InventoryType for the inventory type. - The ToString method (or ToLower) of AssetType/InventoryType doesn't necessarily return the correct LLSD string. - Replaced several magic numbers by their corresponding enum. - Fixed the invType for gestures and animations in the library. This should fix Mantis #3610 and the non-terminating inventory loading
2009-04-27Thank you, Orion_Shamroy, for a patch to expand notecard readingMelanie Thielker3-31/+136
capabilities in OSSL. Fixes Mantis #3543
2009-04-27Thank you, Orion_Shamroy, for a patch that adds osGetNotecardLine andMelanie Thielker3-0/+93
osGetNumberOfNotecardLines Fixes Mantis #2942
2009-04-27Add copyright headers. Formatting cleanup.Jeff Ames1-20/+17
2009-04-26Thank you kindly, Ewe Loon, for a patch that solves:Charles Krinke1-0/+39
PRIM_TEXGEN not in llSetPrimitiveParams. Patch has been included to implement it.
2009-04-22cleaning up, fixing warningsDr Scofield1-6/+4
2009-04-22Fix loading notecards from LSL. The first time a notecard was accessed, theMelanie Thielker1-49/+21
ID returned from the call would differ from the one later sent via dataserver(), causing AOs to fail.
2009-04-20Prevent a null ref if a notecard is not foundMelanie Thielker1-0/+6
2009-04-19Terrain changes done via osTerrainSetHeight aren't shown immediately to the ↵Homer Horwitz3-36/+56
clients in that region. I decided against sending the terrain on every call to osTerrainSetHeight (which makes it abysmally slow), and added a osTerrainFlush instead, which should be called after all the terrain-changes have been done. Changed some return types to LSL types, too, and removed some end-of-line spaces.
2009-04-18Allow reading of notecards by asset ID.Melanie Thielker1-52/+108
Fixes Manthis #3420
2009-04-18Obtain the owner name for the X-SecondLife-Owner-Name header in ↵idb1-1/+7
llHTTPRequest when the owner is offline/not in the region. Fixes Mantis #3454
2009-04-17Correct detected rotation to return the same value as llGetRot in the object ↵idb1-1/+1
being detected. Fixes Mantis #3467
2009-04-17* Also use the profile cache for osKey2Name()Justin Clarke Casey1-4/+4
2009-04-17* Use cached user profiles in osAvatarName2Key()Justin Clarke Casey1-4/+5
2009-04-17* Moved the DefaultConfig settings into already-existing ConfigSettingslbsa711-1/+1
2009-04-17* Some more work on refactoring configs;lbsa711-1/+1
* Moved the constants out into a separate DefaultConfig * Pulled configMember up * Some minor CCC
2009-04-15Add the XML manifests needed to get the new style modules to load.Melanie Thielker2-0/+26
Scripting now works again
2009-04-15minor: Remove some mono compiler warnings. Uncomment code when it's ↵Justin Clarke Casey1-2/+2
actually being used.
2009-04-15Convert both script engines to new region module format. Add proper unloadMelanie Thielker6-16/+82
handling to XEngine. Add needed stubs to DotNetEngine.
2009-04-12Actually remove the script if it tries to remove itself.Melanie Thielker4-5/+38
Fixes Mantis #2929
2009-04-12Fix a regression where animations would only be sent if the avatar hasMelanie Thielker2-4/+72
attachments. Convert base types to LSL types for event marshalling through IScriptModule to avoid parameter errors.
2009-04-11Adding a script event, changed(CHANGED_ANIMATION)Melanie Thielker3-0/+19
This is sent to all root prims of all attachments of an avatar when the animation state changes. llGetAnimation() can thenbe used to find the new movement animation. This eliminates the need for fast timers in AOs
2009-04-10Make the scrpt engines ignore any script that begins with //MRM:Melanie Thielker2-0/+6
2009-04-10Introduce IXmlRpcRouter, an interface that allows registering XMLRPCMelanie Thielker4-0/+34
UUIDs with a central marshaller for grids, or publish the ULS for objects elsewhere.
2009-04-10Add events to IScriptEngine to notify scripting modules of the removalMelanie Thielker4-2/+29
of objects from the scene, and of scripts from objects. This facilitates the development of modules that can register prims with externall servers for inbound email and XMLRPC. Currently implemented in XEngine only. Also applying cmickeyb's compiler locking patch, since it seems risk-free.
2009-04-10Thank you, OwenOyen, for a patch that corrects the behavior of llRot2Euler.Melanie Thielker1-2/+2
Committed with comment changes. Fixes Mantis #3412
2009-04-10* Apply http://opensimulator.org/mantis/view.php?id=3432Justin Clarke Casey1-3/+5
* Make llGroundSlope() return correct results * Thanks aduffy70!