aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-02-06Added colors back to console output.Jeff Ames1-10/+0
Fixed line duplication in console output.
2008-02-06Fixed regex in LSL2CSConverter so it will properly handle casting to ↵alondria1-2/+2
(string) part of vector (eg. vector.z) This fixes Mantis 388
2008-02-06Somehow llList2Float never made it into LSL_BaseClass and ↵alondria3-1/+6
LSL_BuiltIn_Commands_Interface - it is now (and foxes Mantis 395)
2008-02-05Converted logging to use log4net.Jeff Ames162-1923/+1828
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-05Cut down on the number of packets sent during terraforming. Terraforming ↵Brian McBee1-7/+15
should be much more responsive.
2008-02-05Added explicit Quaternion->string and list->string conversions.alondria3-2/+116
Some preliminary work on llSetStatus and llGetStatus.
2008-02-05Small refactoring on Terrain Update sending, so that other code can force ↵MW1-15/+20
terrain updates to be sent to clients.
2008-02-05some small changes, like adding a couple of extra methods to ↵MW4-0/+36
IInventoryServices so that a check can be done to see if a inventory set exists for a certain user.
2008-02-05* Fix Mantis 457Justin Clarke Casey1-6/+6
* Show stats, users, etc. should now work again on the region console.
2008-02-05Reverted MySQLDataStore.cs to not use static mutexes any more, patch didn't ↵Tedd Hansen2-38/+24
work anyway. Added js to OpenSim.ini.example.
2008-02-05* Refactored the sound calls to SceneObjectPart Teravus Ovares8-121/+449
* Fixed a few bugs * Wrote an example module to make certain event systems more mature.
2008-02-05Added copyright statements.Jeff Ames22-37/+634
2008-02-05* Fixing the console write on shutdown where the object is already disposed.Teravus Ovares1-46/+63
2008-02-04* Rebase all current servers on common abstract BaseOpenSimServer classJustin Clarke Casey9-189/+201
* The immediate upshot is that "show uptime" from the console will now show uptime on all server types (user, asset, grid, etc) * DEV: This refactoring is far from complete - only just enough to makes the "show uptime" command common accross the servers. More is needed, but in this case it's somewhat like eating cabbage, which I prefer not to do all at once
2008-02-04Change sim command from "stats" to "show stats" for consistencyJustin Clarke Casey1-14/+13
2008-02-04* Synchronize asset storage operations to mysql as well as readsJustin Clarke Casey1-31/+35
* This may help with asset server mysql problems, since both the previous osgrid failures occurred when both a read and write were attempted in the same second
2008-02-04A smidgen more error info for the asset serverJustin Clarke Casey1-4/+5
2008-02-04Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey13-74/+59
2008-02-04Patch from mikkopa/_someone Thanks! adds support for llPreloadSound, ↵Teravus Ovares4-6/+113
llTriggerSound, llPlaySound, llPreloadSound. * Time to make music boxes?
2008-02-04* Replacing missing break statement from DotNetEngine/Compiler/LSL/Compiler.csAdam Frisby1-0/+1
2008-02-04* Added JavaScript support to OpenSim scripting. Totally Untested. Enjoy. :)Adam Frisby1-2/+19
2008-02-04First part of avatar persistence, currently only really works in standalone ↵MW17-52/+354
mode (with accounts_authenticate set to true), it also only currently has a mysql database connector. (sqlite one will follow soon). It also uses the tribalmedia database system, so this needs checking to see if the old problems with mono have been fixed. To use, see the appearance section in opensim.ini.example, set "persist = true", then add the correct connection string for your database.(see mysql-AvatarAppearance.sql in share folder for a example of the table mysql table structure). This could possible be used in a very small grid, but would mean each region server would need to connect to the same mysql database. But the work to move the code to one of the grid servers shouldn't be too much.
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