| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
modules are technically active. Beta software, yada yada yada. Will disable one of them by the end of the day.
|
|
|
|
|
|
|
|
|
| |
* New method involves interfaces for
** Terrain Paint Brushes (ie raise brush, lower brush, etc)
** Terrain Flood Brushes (ie raise area, lower area, etc)
** Terrain Effects (ie erosion, etc) [= W.I.P, not committed]
* Provided sample implementation for Raise Paint and Raise Area brushes.
|
|
|
|
| |
to shared module fixed.
|
| |
|
|
|
|
| |
boundaries providing they are all located on the same simulator.
|
| |
|
|
|
|
| |
instance is required for the entire simulator, rather than one per region.
|
|
|
|
| |
Trunk. Enabled via [VoiceChat] enabled=true in OpenSim.ini
|
|
|
|
|
|
|
|
|
|
|
|
| |
an image
* This might stop some client's constant requests for unfound textures, which is a candidate for the memory leak
* If a texture is not found then the "Image not found" texture will now be displayed clientside
* If it works, this should resolve mantis 676
* Non texture image requests do not receive this packet yet
* This will require a prebuild
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
llSensor, llSensorRepeat, llSensorRemove, llDetectedName, llDetectedKey, llDetectedOwner, llDetectedType, llDetectedPos, llDetectedVel, llDetectedRot
Thank you very much kinoc! :)
|
|
|
|
| |
TextureSender
|
|
|
|
|
|
|
|
| |
* Moved Flush into Close since it's always done in that order.
* Minor renamings
* Reversed if for clarity
|
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
off into eternity
|
|
|
|
|
|
|
|
| |
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???
|
| |
|
|
|
|
|
|
|
| |
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. :)
|
|
|
|
| |
commands :)
|
|
|
|
|
|
| |
Example:
Prim.Position.X += 10;
|
| |
|
|
|
|
| |
new OSSL_BuilIn_Commands class where we can start adding our own modular commands.
|
|
|
|
|
|
|
| |
* Adds one unit test. CreateAndDropPhysicalCube.
* More unit tests will be done
* Let me know if this breaks Linux build..
|
|
|
|
| |
optimization of mine slowed the speed of updates using the 'poll' method in certain circumstances.
|
|
|
|
|
|
| |
* 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.
|
|
|
|
|
|
|
|
| |
* 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.
|
|
|
|
| |
region queue before queue objects were fully operational)
|
| |
|
| |
|
|
|
|
| |
to avoid race conditions.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
* 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
|
| |
|
|
|
|
|
|
| |
Updated OpenSim.ini.example
|
|
|
|
| |
instances to prevent event race conditions
|
| |
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
| |
per region.
Total so far: 2 threads less per region
Note: Currently causes delay in load/unload of scripts
|
| |
|
|
|
|
|
|
|
|
| |
* 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.
|
|
|
|
| |
recommended format.
|
| |
|
|
|
|
|
|
|
| |
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.
|