aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Added Full support for llSetTextureAnim. To ckrinke: Let the fountains ↵Teravus Ovares2008-02-023-6/+54
| | | | | | | | of Wright Plaza flow! * Fixed another bug in LibSL. This is the same version, as before just with a bug fix.
* fixed a timing bug in config re-read. Apparently there is 1000000000 ns in ↵Tedd Hansen2008-02-024-13/+34
| | | | one second...
* Added commands to change config file from console:Tedd Hansen2008-02-025-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.
* Updated svn properties.Jeff Ames2008-02-027-908/+908
|
* Hopefully fixed MySQL DB crash on startup issue (so we can remove 3 sec wait).Tedd Hansen2008-02-026-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.
* Last patch was a disaster... reset terrain whenever bug occurred. Trying ↵Tedd Hansen2008-02-021-65/+64
| | | | again with some modifications on Mutex.
* And one more patch before sleepTedd Hansen2008-02-021-28/+43
| | | | | This annoying sleep during startup-problem still sometimes causes exceptions, so added some retry...
* Re-enabled AllowedCompilers functionTedd Hansen2008-02-021-1/+1
| | | | | Added notice in OpenSim.ini that config refresh function is disabled
* Almost forgot to check in:Tedd Hansen2008-02-024-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 :))
* Note to self: Next time read debug-files on correct computer. It makes ↵Tedd Hansen2008-02-021-1/+1
| | | | bughunting SO much easier! *jeesh*
* Bugfixes. Now it even reads configuration before it uses it! ;)Tedd Hansen2008-02-025-18/+29
|
* Add last entry "owner_uuid" back into regions table definition.Charles Krinke2008-02-021-1/+19
|
* Temporarily disabled AllowedCompilers so all 3 compilers are allowed.Tedd Hansen2008-02-022-37/+31
| | | | | Fixed bug in how code is handled, hopefully we can now run all 3 languages? :)
* * Committing some untested stuff regarding texture animations. This won't ↵Teravus Ovares2008-02-025-5/+49
| | | | break anything, but the llSetTextureAnim function is completely untested.. (though it may be functional once the script engine works again)
* Added header/footer of scripts to make C# and VB scripts much easier to write.Tedd Hansen2008-02-022-8/+49
| | | | | Added some logging on what is happening during compile.
* Bugfix: LSL was mapped to VB.Net compiler ... that didn't work out so well :)Tedd Hansen2008-02-021-3/+3
|
* Added load/unload queue size limitTedd Hansen2008-02-025-21/+86
| | | | | | | Added option to share script load/unload thread between regions Added event execution queue size limit + some bugfixes from all the changes
* Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen2008-02-023-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
* Added OpenSim.32BitLaunch.exe that can be used on 64-bit systems to run ↵Tedd Hansen2008-02-027-32/+43
| | | | | | | OpenSim in 32-bit mode. Fixed ScriptEngine.Common startup problems.
* Thank you very much, Kinoc for : Moved the Listener loop try/catch to a ↵Charles Krinke2008-02-021-8/+17
| | | | | | | better position. Uses the IRC nick as the default when user location cannot be determined.
* Forgot to create an object before use. Now why can't .Net just do that ↵Tedd Hansen2008-02-021-7/+10
| | | | itself? :)
* Added some error checking to MaintenanceThread, no-crash (just log) loading ↵Tedd Hansen2008-02-022-28/+44
| | | | of script engines, and support to load multiple script engines
* Moved iniFilePath to a static and put it in OpenSim.Application.iniFilePath.Tedd Hansen2008-02-013-9/+18
| | | | | | Refreshing config based on this. Temporarily disabled feature to refresh config file while running.
* Bugfix, maybe it won't crash during startup and crash somewhere else instead? :)Tedd Hansen2008-02-011-1/+2
|
* SCRIPTING STILL BROKENTedd Hansen2008-02-0116-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
* SCRIPT SUPPORT IS STILL BROKEN.Tedd Hansen2008-02-014-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
* Thank you, Kinoc for the ChatModule.cs updates.Charles Krinke2008-02-011-75/+491
|
* Config option to set number of scripts per AppDomainTedd Hansen2008-02-012-2/+3
|
* Added config options:Tedd Hansen2008-02-012-2/+46
| | | | | | ScriptThreadPriority to set script thread priority DeactivateScriptOnTimeout to remove script if it is executing too long
* Removed "Loading inventory for Primitive" message.Tedd Hansen2008-02-012-2/+2
| | | | | Fixed small bug in thread counter.
* ExperimentalTedd Hansen2008-02-015-9/+67
| | | | | | Moved DotNetScriptEngine configuration to config file. Added option to share script execution threads between regions.
* Highly experimentalTedd Hansen2008-02-012-149/+300
| | | | | A separate thread is used to enforce max function (event) execution time for scripts.
* Fixed errors being thrown by invalid PSYS_SRC_TARGET_KEY's in ↵alondria2008-02-011-1/+9
| | | | | | | llParticleSystem - defaults to source prim (consistent with LL grid). Should fix mantis 427.
* Thanks to Hashbox for a patch to:alondria2008-02-013-2/+25
| | | | | | Implementing llStringTrim and hooking in osRegionNotice
* * ODE:Fix copy and paste bug in space calculation limitsTeravus Ovares2008-02-011-11/+7
|
* Temporary try catch around calculateSpaceForGeom() , to see if it gets past ↵MW2008-02-011-3/+10
| | | | mantis issue #435 (for now)
* * Committing random physics stuff to the SVN for use laterTeravus Ovares2008-02-011-0/+86
|
* * Added more supported feature to particlesystems. While this appears to ↵Teravus Ovares2008-02-013-5/+35
| | | | | | | | have a libsl update... it's really a fix to the libsl version we're already using because of a bug in the particlesystem implementation * Added two new simstat counters in the simstat enum for the RCCS. (I'll find something cool to put in them) * fixed a time waster in ODEPlugin.cs
* * Adding limited support for LLParticleSystem.Teravus Ovares2008-01-311-14/+38
| | | | | | | * We still need to set the 'default particle' texture as, a particle system with no texture set doesn't work. * The particle System Flags don't seem to be quite right yet as some flags don't seem to have an effect. So no alpha in/out, color change, affected by the wind, etc.. yet * Thanks to Alondria for some massive work here. This update just tweaks a few things that she did.
* revert last IRC bridge changes as this broke chat on my test environment.Sean Dague2008-01-311-80/+23
| | | | | | Going to sift through the diff later to sort out what the root cause is here.
* * setting some readonlieslbsa712008-01-313-3/+3
|
* Hit a dead end with llParticleSystem (libsecondlife issues) so no ↵alondria2008-01-313-25/+50
| | | | functionality added yet, but did not want to loose work.
* * Add asset/texture cache statistics to region server consoleJustin Clarke Casey2008-01-315-6/+164
| | | | | | | | | | | | | | | * You can type 'stats' at the REGION# prompt to get this information in grid or standalone mode * Don't take these numbers as gospel yet, since for some reason textures displayed from inventory which require downloading from the server are being recorded as assets rather than textures * But I don't have any reason to believe they aren't broadly accurate. * I've put these in so I can tell whether the high memory usage on regions is down to the asset/texture cache * This will require a prebuild * DEV: Only adds needed to be implemented since, as far as I can tell, assets cached are currently never released. For my part, seeing large cache memory numbers will provoke me to think about doing something about this. * DEV: Now switched to using a singleton to get the stats reporters rather than threading the object through various layers * DEV: Will refactor the other server stats reporters to do this in one of the next commits
* * Add 'asset not found' statistics to grid asset server statsJustin Clarke Casey2008-01-302-10/+35
|
* * Minor asset server message tweakJustin Clarke Casey2008-01-301-1/+2
|
* * Deal with asset requests with malformed guids to the asset server in more ↵Justin Clarke Casey2008-01-301-6/+13
| | | | | | | | user-friendly way than throwing an Exception * Compact status messages to reduce verbosity and be more informative
* * Print out exception information when a mysql asset fetch failsJustin Clarke Casey2008-01-301-16/+29
| | | | | | * Attempt reconnection on fetch and create exceptions.
* * Insert 'assets served per hour' speed to asset server statsJustin Clarke Casey2008-01-301-6/+15
|
* Updating ODE.NET as the version I used possibly caused the slowness.Teravus Ovares2008-01-301-0/+2
|
* * See if this helps Nebadon. Teravus Ovares2008-01-301-8/+3
|