aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region (follow)
Commit message (Collapse)AuthorAgeFilesLines
* I'm the stupidest stupid in the whole world. :)Tedd Hansen2008-02-252-22/+23
| | | | | Fixed a bug in new Prim where I actually ADDED new values to old values instead of directly assigning them... Now that was a waste of time! :P
* Update svn properties.Jeff Ames2008-02-251-2216/+2216
|
* Added limits to Prim.Position.X/Y/Z (0-255) so that your prims won't wander ↵Tedd Hansen2008-02-241-0/+12
| | | | off into eternity
* Fixed startup logo size to match a Win CMD window.Tedd Hansen2008-02-242-21/+163
| | | | | | | | Fixed bugs in new OOP commands. Prim.Rotation.X += 45; Prim.Position.X += 10; Now how do I find the prim I asked to += 10 every 1 second???
* Ok, so NOW scripts work. New patch to break them coming soon.Tedd Hansen2008-02-243-4/+6
|
* By now you all have learned that when I'm committing scripting usually ↵Tedd Hansen2008-02-246-2278/+2284
| | | | | | | doesn't work, so no big surprise. :) Modified baseclass for compiled script to incorp new OSSL commands class and renamed it to follow standards and all that. Scripts may work again. :)
* Forgot to change what class compiled scripts must inherit from to get their ↵Tedd Hansen2008-02-241-3/+3
| | | | commands :)
* Implemented object oriented Prim.Position, Prim.Rotation and Prim.Text.Tedd Hansen2008-02-241-9/+20
| | | | | | Example: Prim.Position.X += 10;
* eolTedd Hansen2008-02-243-165/+165
|
* Changed so "BuiltIn_Commands" given to scripts is easily extendable. Added ↵Tedd Hansen2008-02-247-7/+170
| | | | new OSSL_BuilIn_Commands class where we can start adding our own modular commands.
* * Adds unit test glue to the OdePlugin.Teravus Ovares2008-02-241-0/+99
| | | | | | | * Adds one unit test. CreateAndDropPhysicalCube. * More unit tests will be done * Let me know if this breaks Linux build..
* * Made Physics updates a teensy bit more responsive. A previous CPU ↵Teravus Ovares2008-02-231-1/+5
| | | | optimization of mine slowed the speed of updates using the 'poll' method in certain circumstances.
* * One more fix to the selected featureTeravus Ovares2008-02-231-1/+1
| | | | | | * Don't act immediately on a physical prim unless it's moving. * This helps when you're trying to make a box stack and you select the bottom most box.
* * Added Support within the ODEPlugin for Selected. Which means that;Teravus Ovares2008-02-2310-40/+310
| | | | | | | | * When you select a physical prim, it stops while you've got it selected. * When you move or alter a prim in some manner, it doesn't become collidable until you de-select it * When you select a prim, it doesn't become temporarily 'phantom' until you make some change to it while it's selected. (this prevents accidental selections in prim floor from causing it to go phantom on you(but don't move it or you'll fall)) * There's one major difference, and that's a physical object won't stop if you don't have permission to edit it. This prevents people who don't have edit permissions on a prim from stopping it while it's moving.
* Fix for error message during startup (shared thread started processing ↵Tedd Hansen2008-02-222-1/+4
| | | | region queue before queue objects were fully operational)
* ScriptEngine works again (startup-nully-error gone)Tedd Hansen2008-02-224-19/+18
|
* One more: Async LSL command thread is also shared now.Tedd Hansen2008-02-224-248/+275
|
* * Converted the last of the events to the private delegate instance method ↵Teravus Ovares2008-02-224-37/+69
| | | | to avoid race conditions.
* * Downgrade texture exception to a warning.Justin Clarke Casey2008-02-221-4/+5
|
* Bugfixes - Scripting works againTedd Hansen2008-02-222-2/+17
|
* * Implement packet queue statisticsJustin Clarke Casey2008-02-222-3/+36
| | | | | | | | | * This will show the packets waiting in each queue for each client logged into a region server * These are displayed using 'show stats' on the region command line * This is in pursuit of a memory leak. * This will require a prebuild
* Some misplaced code made scripts never start :)Tedd Hansen2008-02-221-14/+13
|
* Better timing of MaintenanceThread's tasks (uses less CPU)Tedd Hansen2008-02-221-20/+39
| | | | | | Updated OpenSim.ini.example
* * Moved all events except gridcomms and regioncomms over to Event Delegate ↵Teravus Ovares2008-02-225-9/+21
| | | | instances to prevent event race conditions
* * Moved the EventManager over to delegate instances to prevent race conditions.Teravus Ovares2008-02-221-49/+104
|
* fixed it so that the different types of trees now work (show up in the ↵MW2008-02-221-1/+5
| | | | clients), problem is that we don't seem to be persisting PrimitiveBaseShape.State in the datastore, so after restart of server, they all turn back into pine trees.
* Bugfixes - wasn't counting threads right++Tedd Hansen2008-02-223-17/+17
|
* Minor annoying Exception-bug fixedTedd Hansen2008-02-222-2/+3
|
* Execution threads are now shared between regions too. Default thread count ↵Tedd Hansen2008-02-223-242/+229
| | | | | | | regardless of number of regions is now 3. This will save you around 33 threads for a normal 3x3 region server. But, this is totally completely untested. So it probably won't work for another patch or five.
* Maintenance thread in charge of loading/unloading of scripts. 1 thread less ↵Tedd Hansen2008-02-222-17/+28
| | | | | | | | per region. Total so far: 2 threads less per region Note: Currently causes delay in load/unload of scripts
* Now last commit will compile too... The features just keep on coming!Tedd Hansen2008-02-223-6/+12
|
* From this commit and a few hours into the future ScriptEngine will be unstable:Tedd Hansen2008-02-225-79/+87
| | | | | | | | * Speeding up ScriptEngine shutdown * Sharing threads so that minimum total thread count for any amount of regions will be 2. (1 maintenance, 1 script execution) You can choose more script exec threads if you want of course. In this commit: Sharing maintenance thread between all regions.
* * Relative large ClientView refactoring of packet Events into .Net ↵Teravus Ovares2008-02-221-256/+686
| | | | recommended format.
* Fixes to ScriptEngine thread cleanup on destructorTedd Hansen2008-02-214-17/+14
|
* * Fixed an issue where the client thread was aborted before the UDP server ↵Teravus Ovares2008-02-211-4/+11
| | | | | | | sends a message back to ClientView to close it a second time. (yes we call close twice because there are times when the client closes with a logout and disconnects immediately which causes the UDP server to send a close request to the client thread) * This update might make things better, it might expose another issue.
* * A few additional null checks in the Physics Scene and PhysicsActor so we ↵Teravus Ovares2008-02-212-11/+6
| | | | don't try to enumerate dead null ODECharacter objects when things get *really* slow.
* ScriptEngine changes in locking. Another step in direction of shared threads.Tedd Hansen2008-02-212-24/+22
|
* "threads" command now works. I've added manual tracking of threads (only if ↵Tedd Hansen2008-02-2110-7/+38
| | | | compiled in DEBUG mode)... Its ugly and even requires a separate thread to track the treads, but it will be very valuable in debugging.
* Remove a couple compiler warnings.Jeff Ames2008-02-212-5/+5
|
* * Properly guard against the possibility that CopyInventoryItem doesn't get ↵Justin Clarke Casey2008-02-201-5/+16
| | | | an asset back from the cache
* * Eliminate AssetCache.CopyAsset()Justin Clarke Casey2008-02-201-32/+26
| | | | | | | * Resolve a bad logic bug in AssetCache.GetAsset() * This may make some asset related things work better (possibly getting main map images will now be improved).
* Treads command lists threads, but not thread name (yet)Tedd Hansen2008-02-201-7/+9
|
* * Only count download requests for assets which are not already waiting for ↵Justin Clarke Casey2008-02-204-15/+16
| | | | | | | | | data from the asset server * This should stop the constant increase in the download requests statistics * If you see stat numbers for download requests which are far from what you'd expect, please report
* div+Tedd Hansen2008-02-202-1/+14
| | | | | threads console command will list all threads. This + yesterdays naming threads patch will give a good overview of what threads we have running.
* * Found the land bug, yayTeravus Ovares2008-02-202-5/+17
|
* Minor cleanup.Jeff Ames2008-02-20119-266/+188
|
* * Fixed a long standing race condition in physics events. Could this be ↵Teravus Ovares2008-02-201-3/+3
| | | | the source of the null on multicast_void: error?
* llSetTimerEvent updated to use ticks instead of DateTime for internal timing.Tedd Hansen2008-02-203-24/+41
|
* * Report 'asset not found' situations back to UserTextureDownloadServiceJustin Clarke Casey2008-02-203-7/+26
| | | | | | | * This fixes some of the 'runaway downloads' problem but not all of it * Also fix up logging messages so texture requests are reported as such rather than as assets
* llSetTimerEvent was setting seconds as milliseconds causing major problems ↵Tedd Hansen2008-02-202-2/+2
| | | | in timed scripts...