aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/World (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Refactor the packet scheduling out of ClientView. Add intelligentMelanie Thielker2008-07-221-3/+11
| | | | | | | | | | resending, timeouts, packet discarding. Add notification event for packet discarding. Add priority scheduling for packet queues. Add outgoing duplicate detection facility. Correct packet sequencing. Make provisions for automatic server side throttle adjustments (comes in next installment)
* * Give new uuids to all the objects loaded in from an archive.Justin Clarke Casey2008-07-211-6/+6
| | | | | | | * This should allow multiple copies of an archive to be loaded into different regions on the same region server * This shouldn't affect existing operations.
* Mantis#1544. Thank you kindly, Jonc, for a patch that:Charles Krinke2008-07-211-2/+8
| | | | | | | | | | Terrain revert using the PaintBrushes appears to work OK, however when using 'apply to selection' the RevertArea FloodEffect calculates the revert height incorrectly unless the strength passed in from the viewer is 1.0 Attaching a patch to correctly reset the selected area to the heights in the revertmap.
* * minor: stick filename being loaded/saved from in save/load xml/oar ↵Justin Clarke Casey2008-07-211-3/+1
| | | | information messages
* * minor: change misleading 'all assets found' message to instead tell how ↵Justin Clarke Casey2008-07-214-23/+35
| | | | many were actually located
* added experimental packet tracker (LLPacketTracker.cs), which can be told to ↵MW2008-07-211-2/+7
| | | | | | | | track a packet and if it hasn't been acked within a set time, trigger a IClientAPI event, that the application/scene can handle. Currently only terrain packet tracking is finished, Tracking for initial Prim packets (first full update for a prim) is being worked on. Future improvements would be to make it a more generic packet tracker with callback delegates instead of events. Add a test event handler (which would fire after a minute if a terrain packet hadn't been acked) to scene to handle the OnUnackedTerrain event, which currently just resends the terrain patch. The idea of this packet tracking is for the region level application to be able to know if the client stack gave up on sending a packet.
* Fix prim link numbers (Mantis #1781)Melanie Thielker2008-07-191-4/+4
| | | | | | | | | | | Implements additional unlink modes (unlink root prim from link set, some multi-set operations). Linking (single and mutiple) fully implemented. Consistent numbering of links while in world. Link/delink with predictable link numbering. Correct link numbers in LSL. Not all multi-set ops implemented. Link numbers still change when taken and re-rezzed.
* Patch to fix saving of estate managers list loaded during migration.Melanie Thielker2008-07-181-1/+2
| | | | | | | No longer teleports an agent home unless their root agent is being banned. Visual blocking is still in effect.
* Patch adds bool IsManager(LLUUID) to IEstateModule.Melanie Thielker2008-07-181-0/+12
| | | | | | | | Returns true whenever the LLUUID references a user who is either an EM or the region owner. Please note that ownership is region-scoped, while EM is estate-scoped.
* * refactor: break out sog loading code into two parts so that ↵Justin Clarke Casey2008-07-184-23/+20
| | | | post-deserialization changes can be carried out before adding it to a scene
* Patch #9151Melanie Thielker2008-07-184-79/+180
| | | | | | Makes the estate dialog fully functional. Implements all client facing functionality. Moves estate data from estate_settings.xml, which is used to provide defaults, to the region data store. Creates one estate for each region, and places the region in it. Converts all region bans to estate bans.
* * On an archive load, make the master avatar the owner of all scene objects ↵Justin Clarke Casey2008-07-141-0/+11
| | | | for now
* * For now, when loading an archive all the existing scene objects get ↵Justin Clarke Casey2008-07-141-0/+5
| | | | deleted by default
* Patch #9150Melanie Thielker2008-07-142-9/+78
| | | | | | Patch 7 of the region patches. Finish off the region parts of the estate dialog. Full user functionality. Terrain textures, heights, water, avatar counts, prim bonus, debug settings and region toggles can now be set from the dialog on a per-region basis. Estate stuff defaults to sane values where there are no defaults, to estate_settings.xml otherwise. Sun still b0rked :(
* Patch #9149Melanie Thielker2008-07-142-49/+29
| | | | | | Make all of the toggles go live. Utilizes the new database table for almost everything. Remove lots of now unneeded settings from the EstateSettings class
* Patch #9147Melanie Thielker2008-07-143-66/+84
| | | | | | | Patch #4 of the region settings series. Partial functionality of the new storage system. More patches to follow.
* * Actually persist restored archives to the database - wasn't actually doing ↵Justin Clarke Casey2008-07-133-8/+19
| | | | | | | | this before (doh) * Not quite perfect yet
* * Elminate most of the debugging log output from the archive commandsJustin Clarke Casey2008-07-125-33/+35
|
* * On archive loading, tell the user how many objects we are ignoring because ↵Justin Clarke Casey2008-07-123-8/+19
| | | | | | | | they already exist in the scene * (ability to give objects new uuids will come later)
* * Make archive default tar file modes more permissiveJustin Clarke Casey2008-07-121-1/+1
|
* * Start compressing archivesJustin Clarke Casey2008-07-124-34/+30
|
* Patches #9143 and #9144 (Mantis #1723)Melanie Thielker2008-07-121-1/+1
| | | | | | | | | | Changes the permissions module to make scripts permissive only when intended Adds security checks to asset transfers to prevent hacked clients fron requesting script sources. Adds security checks to llClientView to verify all aspects of ownership and permissions for inventory based script retrieval.
* * Oops, turn off permissions debugging I stupidly hardcodedJustin Clarke Casey2008-07-111-1/+1
|
* * Put an info entry in the log if permissions are being bypassedJustin Clarke Casey2008-07-111-1/+10
| | | | | | * might help to diagnose mantis 1712
* corrected the params types on IClientAPI.SendParcelMediaCommand. the command ↵MW2008-07-091-1/+1
| | | | parameter should be set to the the ParcelMediaCommandEnum value. While flags seems to need to be set to (uint)(1<<[value of the command enum])
* * Don't fail the archive operation if exceptions are encountered while ↵Justin Clarke Casey2008-07-081-34/+42
| | | | analyzing prims
* * Added experimental SendParcelMediaCommand and SendParcelMediaUpdate to ↵lbsa712008-07-081-1/+11
| | | | IClientAPI. These methods have not been tested, but feel free to start wiring them to llParcelMediaCommandList.
* * Changed casing of some archaic methods to conform with code standardslbsa712008-07-084-25/+25
|
* * Start scripts loaded from an archiveJustin Clarke Casey2008-07-074-9/+24
|
* * switch terrain archiving to raw32 rather than png to avoid unnecessary ↵Justin Clarke Casey2008-07-071-1/+1
| | | | posterization. Thanks to Adam for the tip.
* * In archiver, scan scripts for embedded asset uuids and save these outJustin Clarke Casey2008-07-061-1/+39
|
* * refactor: archiver code clean up so that it's more readable for the next ↵Justin Clarke Casey2008-07-061-20/+43
| | | | functionality addition
* * extend archiving asset analysis to clothingJustin Clarke Casey2008-07-041-9/+9
|
* * On archiving, analyze body parts and save textures referenced from themJustin Clarke Casey2008-07-041-1/+20
|
* * refactor: break out archiver's combined sync-async asset request routine ↵Justin Clarke Casey2008-07-041-25/+37
| | | | ready for analysis of inventory item types other than objects
* * On client login, send only one terrain patch at a time (with pauses) ↵Justin Clarke Casey2008-07-032-4/+10
| | | | | | | | | instead of 4 at a time * Certain terrains which are fine went patches are sent singly cause a libsecondlife failure when patches are sent in batches * See http://opensimulator.org/mantis/view.php?id=1662 for more details
* *.Raw files should now be loadable using "terrain load-tile" functionalitymingchen2008-07-031-2/+61
|
* *Parcel Claim date is no longer Epoch (Jan 1, 1970). Now shows the actual ↵mingchen2008-07-031-1/+2
| | | | creation/reclaim/sale date.
* * Allow archiver to operate even if there are 0 scene objects to saveJustin Clarke Casey2008-07-022-18/+14
|
* * Start writing out control file in archive. Only contains version ↵Justin Clarke Casey2008-07-022-1/+36
| | | | information right now.
* * Twiddle with archive asset extensions yet againJustin Clarke Casey2008-07-022-45/+45
| | | | | | * Reintroducing asset type but this time in a long form, and with _ rather than .
* Added "save-prims-xml2 <PrimName> <FileName>", as we were lacking a method ↵MW2008-07-013-4/+21
| | | | to save a single primitive or small group of them. This command will save all prims in the current scene that name matches the "PrimName" parameter. The saved file is in standard xml2 format, so can be loaded using load-xml2
* properly explaining each #pragma warning disableDr Scofield2008-06-302-6/+11
| | | | | | massaging OSHttpRequestPump to not abort on exceptions...
* * Reload terrain from archive if there is oneJustin Clarke Casey2008-06-291-5/+31
|
* * Save terrain information in archiveJustin Clarke Casey2008-06-293-3/+32
| | | | | | | * Not yet reloading * Terrain saving will be optional a little further down the line
* * Allow terrains to be loaded and saved from streams as well as directly to ↵Justin Clarke Casey2008-06-2912-44/+264
| | | | | | | | and from files * Should be making use of this in the next revisions
* Mantis#1616. Applied Melanie's patch. This may or mayCharles Krinke2008-06-282-1/+8
| | | | | not break trunk.
* * Various documentation to some black magic parts of LLClientView Teravus Ovares2008-06-281-0/+4
| | | | | * Added IClientAPI.SendTexture stub.
* last round of warning squashing. calling it a day now.Dr Scofield2008-06-274-21/+25
|
* * Experiment with not bothering with a seperate assets metadata file - ↵Justin Clarke Casey2008-06-273-32/+69
| | | | | | | | extract necessary minimum metadata from asset filenames * Make all file extensions single - double extensions look ugly and probably aren't good for Windows