aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-02-04* Whole buncha stuff.Adam Frisby7-9/+84
2008-02-04* Lowered maxchunk from 1500 bytes to 1250 bytes to make sure packets fit ↵Adam Frisby1-1/+1
below the average maximum MTU of 1500 bytes inc. header. Thanks Alex for reporting this.
2008-02-04* Default inventory permissions patch (#444), courtesy of alex_carnell -- ↵Adam Frisby1-0/+1
thanks!
2008-02-04* Chat Message format patch from kinoc (#443) Thanks!Adam Frisby1-2/+19
2008-02-03Thanks to Brianw for pointing out the definition of OwnerUUIDCharles Krinke1-1/+1
needed to be consistent with the definition of owner_uuid. They are both varchar(36) now.
2008-02-03Added llRot2Fwd, llRot2Left, and llRot2Up as well as explicit vector->string ↵alondria2-3/+8
casting. (Thanks to dalien on informing me how easy the math was for these).
2008-02-03Temporarily disabled shared threads because of a bug. Script were only ↵Tedd Hansen3-3/+5
working on 1 region. :) Using default warning level on C#/VB compile
2008-02-03* Adding the PhysicsCamperBot load testing app to the SVN in it's own ↵Teravus Ovares1-6/+33
folder. You'll have to build it separately to take advantage of it. *read the Readme file*. The bots created by this application roam around amusingly to simulate load. * Be smart, Don't use this on a public grid, lest you get banned permanently.
2008-02-02Implements LSL function llDialog().alondria5-2/+62
The ScriptDialogReply packet handler is a bit of a hack job. It is currently handled similar to ChatFromViewer, which will trigger the listen() event, however this is not exactly how LL's implementation works and will/can be fixed up later.
2008-02-02Added llParseString2List (and a few extra methods to LSL_Types.list).alondria4-5/+74
2008-02-02Turn on fastMode for map block queries to grid server if and only if grid is ↵Brian McBee1-0/+1
running MYSQL as the data source.
2008-02-02fix for error on null owner_uuid fieldBrian McBee1-1/+8
2008-02-02* Added a way to temporarily disable physics using the estate toolsTeravus Ovares2-2/+38
* Added a method for Tedd to hook to in scene to disable the Scripting engine that currently says, [TOTEDD] Here is the method to trigger disabling of the scripting engine.
2008-02-02Change casting slightly for reading owner_uuid from mysql.Charles Krinke1-2/+3
2008-02-02Thank you very much daTwitch for your first contribution to the C# simulator.Charles Krinke3-6/+65
This is the beginnings of support for storage of region owner in the MySQLManager table and the use of "owner_uuid".
2008-02-02* Fixed llSetTextureAnim to respect rate and Length and StartTeravus Ovares1-3/+3
2008-02-02In an attempt to solve multihomed UDP problem I seem to have bound UDP ↵Tedd Hansen3-6/+6
socket to external IP instead of internal :)
2008-02-02* Added Full support for llSetTextureAnim. To ckrinke: Let the fountains ↵Teravus Ovares3-6/+54
of Wright Plaza flow! * Fixed another bug in LibSL. This is the same version, as before just with a bug fix.
2008-02-02fixed a timing bug in config re-read. Apparently there is 1000000000 ns in ↵Tedd Hansen4-13/+34
one second...
2008-02-02Added commands to change config file from console:Tedd Hansen5-12/+83
CONFIG SET section key value value value CONFIG GET section key CONFIG SAVE (it saves, but does it save correctly?:) ScriptEngine will react correctly to any config change made while it is running.
2008-02-02Updated svn properties.Jeff Ames7-908/+908
2008-02-02Hopefully fixed MySQL DB crash on startup issue (so we can remove 3 sec wait).Tedd Hansen6-14/+78
Added option to try alternate UDP ports if the one configured is in use. UDP packets are now bound to the actual outside IP address and hopefully won't "randomly" select IP on multihomed systems.
2008-02-02Last patch was a disaster... reset terrain whenever bug occurred. Trying ↵Tedd Hansen1-65/+64
again with some modifications on Mutex.
2008-02-02And one more patch before sleepTedd Hansen1-28/+43
This annoying sleep during startup-problem still sometimes causes exceptions, so added some retry...
2008-02-02Re-enabled AllowedCompilers functionTedd Hansen1-1/+1
Added notice in OpenSim.ini that config refresh function is disabled
2008-02-02Almost forgot to check in:Tedd Hansen4-1/+110
OpenSim.32BitLaunch.exe is a 32-bit application that loads OpenSim.exe using .Net framework, hence it is JIT-compiled to 32-bit. Use this app to start OpenSim on 64-bit systems (works great on Vista 64 :))
2008-02-02Note to self: Next time read debug-files on correct computer. It makes ↵Tedd Hansen1-1/+1
bughunting SO much easier! *jeesh*
2008-02-02Bugfixes. Now it even reads configuration before it uses it! ;)Tedd Hansen5-18/+29
2008-02-02Add last entry "owner_uuid" back into regions table definition.Charles Krinke1-1/+19
2008-02-02Temporarily disabled AllowedCompilers so all 3 compilers are allowed.Tedd Hansen2-37/+31
Fixed bug in how code is handled, hopefully we can now run all 3 languages? :)
2008-02-02* Committing some untested stuff regarding texture animations. This won't ↵Teravus Ovares5-5/+49
break anything, but the llSetTextureAnim function is completely untested.. (though it may be functional once the script engine works again)
2008-02-02Added header/footer of scripts to make C# and VB scripts much easier to write.Tedd Hansen2-8/+49
Added some logging on what is happening during compile.
2008-02-02Bugfix: LSL was mapped to VB.Net compiler ... that didn't work out so well :)Tedd Hansen1-3/+3
2008-02-02Added load/unload queue size limitTedd Hansen5-21/+86
Added option to share script load/unload thread between regions Added event execution queue size limit + some bugfixes from all the changes
2008-02-02Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen3-37/+236
OpenSim in 32-bit mode. Added VISUAL BASIC.NET-support //cs, //lsl and //vb as first characters of script will determine what compiler is used. Compile warnings are no longer treated as errors. Script will still run. Added a few useless and useful config options: Write script source to harddisk for debug, Default compile language, Allowed compilers (languages), compile in release or debug mode, clean up old scripts on startup Loads of warnings for incorrect config
2008-02-02Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen7-32/+43
OpenSim in 32-bit mode. Fixed ScriptEngine.Common startup problems.
2008-02-02Thank you very much, Kinoc for : Moved the Listener loop try/catch to a ↵Charles Krinke1-8/+17
better position. Uses the IRC nick as the default when user location cannot be determined.
2008-02-02Forgot to create an object before use. Now why can't .Net just do that ↵Tedd Hansen1-7/+10
itself? :)
2008-02-02Added some error checking to MaintenanceThread, no-crash (just log) loading ↵Tedd Hansen2-28/+44
of script engines, and support to load multiple script engines
2008-02-01Moved iniFilePath to a static and put it in OpenSim.Application.iniFilePath.Tedd Hansen3-9/+18
Refreshing config based on this. Temporarily disabled feature to refresh config file while running.
2008-02-01Bugfix, maybe it won't crash during startup and crash somewhere else instead? :)Tedd Hansen1-1/+2
2008-02-01SCRIPTING STILL BROKENTedd Hansen16-402/+602
Added comments and regions, restructured code Changed a lot of AppDomain junk from console from using Console.Write to Log.Verbose and set it to #if DEBUG All modules should now refresh their configuration runtime Made all logging in ScriptEngine.Common get script name from actual engine Renamed LSLLongCmdHandler to AsyncLSLCommandManager Added auto-recover with 5 sec throttle for new MaintenanceThread
2008-02-01SCRIPT SUPPORT IS STILL BROKEN.Tedd Hansen4-189/+412
Bugfix: Scripts exceeding max and set to be killed were not killed, only removed. Added ability to re-read configuration while OpenSim is running All regions now sharing one MaintenanceThread New MaintenanceThread: - checks for script execution timeout - re-reads config - starts/stops threads if thread active count becomes too high/low compared to config Speed increase on event execution: - Reuse of try{}catch{} blocks - Time calculation on event execution
2008-02-01Thank you, Kinoc for the ChatModule.cs updates.Charles Krinke1-75/+491
2008-02-01Config option to set number of scripts per AppDomainTedd Hansen2-2/+3
2008-02-01Added config options:Tedd Hansen2-2/+46
ScriptThreadPriority to set script thread priority DeactivateScriptOnTimeout to remove script if it is executing too long
2008-02-01Removed "Loading inventory for Primitive" message.Tedd Hansen2-2/+2
Fixed small bug in thread counter.
2008-02-01ExperimentalTedd Hansen5-9/+67
Moved DotNetScriptEngine configuration to config file. Added option to share script execution threads between regions.
2008-02-01Highly experimentalTedd Hansen2-149/+300
A separate thread is used to enforce max function (event) execution time for scripts.
2008-02-01Fixed errors being thrown by invalid PSYS_SRC_TARGET_KEY's in ↵alondria1-1/+9
llParticleSystem - defaults to source prim (consistent with LL grid). Should fix mantis 427.