aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* * Just inserting some exploratory comments into inventory codeJustin Clarke Casey2008-03-182-0/+16
|
* Formatting cleanup.Jeff Ames2008-03-1813-325/+334
|
* * Applying Mantis Patch #518.2 - State not persisted in MySQL DataStoreAdam Frisby2008-03-181-0/+35
|
* Formatting cleanup. Minor refactoring.Jeff Ames2008-03-1817-279/+198
|
* * Applied Grumly57 patch for #781; Thanks, Grumly!lbsa712008-03-183-21/+21
|
* * Remove unused (and somewhat nonsensical) method in PhysicsActorJustin Clarke Casey2008-03-181-7/+0
| | | | | | * Thanks for DrScofld for drawing attention to this
* Patch from DrSchofld (IBM). In his own wordsJustin Clarke Casey2008-03-181-2/+2
| | | | | | | | structs (such as LLUUID) are considered values by mono. comparing them against null makes no sense and the mono compiler will flag that as evaluating to always false --- except if "cleverly" disguised. the attached patch fixes such an occurrence in OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/AsyncCommandPlugins/SensorRepeat.cs. [yes, i'm on a crusade against comparing structs against null, go ask jradford from libsl ;-)]
* Since we don't yet have a reliable way to release the lock that prevents a ↵Teravus Ovares2008-03-182-2/+2
| | | | | | | user from logging in a second time if they're already registered as logged in; * If a user logs in and they are noted as agentOnline. Set agentOnline = false and send a 'you're already logged in' message to the user asking them to wait 5 minutes. These 5 minutes are not enforced (because there's no foolproof interlock release yet without the grid operator getting a support call for every little sim crash). When the user gets the message, they can log-in immediately after it, but the user can expect weird results if they don't wait 5 minutes and log-in to the region they were in previously.
* * Added the ability to type the partial name of a region in the start ↵Teravus Ovares2008-03-1813-5/+338
| | | | | | | location box and go to that region if it's there. If no close match was found, it sends you home. This is tested on mySQL. There's untested code on grids that are based on sqlite and MSSQL. The SQL statements *should* be right, but your results may very. * Ex, if you want to go to Wright Plaza, you simply need to type Wright Plaza in the start location in the client when you log-in.
* Formatting cleanup.Jeff Ames2008-03-18558-15323/+14795
|
* Added copyright messages. Set svn:eol-style. Minor cleanup.Jeff Ames2008-03-189-77/+281
|
* Formatting cleanup.Jeff Ames2008-03-187-190/+117
|
* Building on Joha's update...Teravus Ovares2008-03-183-10/+60
| | | | | * Server now listens to the client's start location request for 'home' or 'last' and sends the user to the home location or the last location.
* Last position will be stored in the DB on logout, and the avatar can ↵Johan Berntsson2008-03-184-11/+115
| | | | continue from the same position in the next login (only with MySQL at the moment)
* * Move missing texture request forward so that we don't actually ask the ↵Justin Clarke Casey2008-03-171-21/+26
| | | | AssetCache for it if we know it's missing.
* * Inserting code to prepare to fix trash emptying and the edit texture ↵Justin Clarke Casey2008-03-171-58/+60
| | | | | | | | inventory (again) * Can't just do this fix since it stops subfolders working (though it appears subfolder renaming may be fubar at the moment)
* Merged changes in Prebuild trunk up to r258 into OpenSim's Prebuild.Jeff Ames2008-03-1761-1295/+5606
| | | | | | Hopefully this should make merging upstream easier. Building with NAnt should still work, but Visual Studio is untested.
* * More almost completely unproductive log message fiddlingJustin Clarke Casey2008-03-171-2/+2
|
* * Make it more obvious if local user services are being usedJustin Clarke Casey2008-03-172-5/+5
| | | | | | * Tell the log whether the sim is started in standalone or grid mode
* * DEV: Remove client's CAPS handlers object when they log outJustin Clarke Casey2008-03-171-1/+6
|
* Fix a few mono compiler warnings. Minor cleanup.Jeff Ames2008-03-173-5/+5
|
* * Reduce the annoyingness of clients that continually request unfound ↵Justin Clarke Casey2008-03-171-6/+34
| | | | | | | | | textures (probably for some good reason) by dropping all subsequent requests after the first reply. * Print out a console message every 20 tries rather than every single one. * This weakens the problem but does not eliminate it
* Replaced some magic PCode numbers with enum values.Jeff Ames2008-03-174-5/+9
|
* Replaced some Console.WriteLine calls with writes to log.Jeff Ames2008-03-174-22/+27
|
* * Remove uninformative exception traces from remoting errorsJustin Clarke Casey2008-03-171-79/+77
| | | | | | * Indulge in my fetish for console message conformity
* From: Alan M Webb <awebb@vnet.ibm.com>Sean Dague2008-03-176-93/+375
| | | | | | | | | | | | | | | | | | | | | | | | | Here's a diff of the changes I have made in support of the following LSL script functions. llSetScriptState llGetScriptState llCSV2List llListRandomize llList2ListStrided llListFindList llResetOtherScript llGetScriptName It was necessary to modify ExecutorBase in support of the ScriptState implementations. I also modified SceneObjectPart and SceneObjectPart.Inventory to corrects a quoting mismatch in the commentary that through off live parsing of the files. I also simplified the State definition at the start of BuiltinCommands.
* * Fixed prim creation in basic physics mode. ( BasicPhysics returns null ↵Teravus Ovares2008-03-161-3/+7
| | | | probably a lot more then it should? )
* Update svn:ignoreJeff Ames2008-03-160-0/+0
|
* Update svn properties.Jeff Ames2008-03-161-1623/+1623
|
* Thank you kindly, Grumly57 for:Charles Krinke2008-03-153-1/+1625
| | | | | | Added MSSQLDataStore.cs to OpenSim.Framework.Data.MSSQL and changed it to reflect the actual capabilites of MySQLDataStore.cs
* added some os helper functions for the texture drawing module. see ↵MW2008-03-153-0/+140
| | | | http://opensimulator.org/wiki/OSSL_TextureDrawing for function prototypes and example script. Will expand that page later.
* Part 2 of fixing inventory for client 1.19.1 (RC), inventory items should ↵MW2008-03-154-17/+126
| | | | | | | now show up. Most likely still some problems and most like needs some more work (and still a couple of things to finish off).
* Part 1 of making inventory work again in the 1.19.1 (RC) client. Implemented ↵MW2008-03-154-3/+129
| | | | | | | | | the FetchInventoryDescendents CAPS handler. But currently returning empty folder details. So this commit doesn't actually fix inventory in that client, it just stops the "loading" message being displayed forever next to a folder, and instead shows empty folders. Next part will be to fill in the details of the items in the folders.
* * Fix for Justincc's bug report #768 - Terrain looks rather phallic.Adam Frisby2008-03-141-3/+6
|
* * Remove stupid bug I just introduced where delinking would only delink one ↵Justin Clarke Casey2008-03-141-12/+1
| | | | | | | | prim at a time. * Teaches me not to say stuff like 'this is now working'
* * Minor - error message should be a warning. SpellingJustin Clarke Casey2008-03-142-2/+2
|
* * The rest of the fix necessary for mantis #766 - terse updates brokenJustin Clarke Casey2008-03-143-16/+43
| | | | | | | * Even very rapid linking/delinking should now behave normally. Terse updates still occur as before * Hopefully this ends the recent linking problems - please let us know if there are more
* Fix Mantis 636Sean Dague2008-03-143-3/+3
|
* * As yet incomplete fix for mantis #766 - terse updates brokenJustin Clarke Casey2008-03-143-3/+27
| | | | | | | * Currently, terse updates are back, and extremely rapid linking and delinking will only break occasionally * More work to do here
* * You can leave godmode if you want now.Teravus Ovares2008-03-145-7/+19
| | | | | * Fixed a compile error.
* * Added null root part guardlbsa712008-03-145-29/+25
| | | | | | * Normalized some UUID handling * Compacted a few Contains/Add into Set
* Attempt to fix mantis #741, could not replicate it myself. But the error ↵MW2008-03-141-130/+137
| | | | was suggesting that the SceneObjectPart was null, so added a null check, to make sure the sceneobject to be attached is found before attempting the attachment.
* addressing the request for msbuild support from mantis 723Sean Dague2008-03-142-2/+6
|
* attempt to try to fix mantis issue # 613, which seems to be a threading ↵MW2008-03-141-8/+8
| | | | issue. Queue is only threadsafe if its a public static member, which in this case it wasn't. And we were locking it during both enqueues and dequeues. So have added those locks to a syncObject. But it still needs testing on a high load region, as that seems to be when the exception happened.
* Update svn properties.Jeff Ames2008-03-145-265/+265
|
* * Fixed 'flatten area' brush, so it now has a 'force' instead of instantly ↵Adam Frisby2008-03-1410-213/+336
| | | | | | | | | | | flattening the selected area. * Noise, and Noise-Area brushes now use Perlin noise, more closely simulating the method LL uses officially. * TerrainModule has been cleaned up slightly. * TerrainUtil class has several new functions related to seeded noise generation. * Extracted ITerrainEffect, ITerrainFloodEffect, ITerrainLoader, ITerrainPaintableEffect, TerrainChannel to seperate files.
* * Added proper handling of llSetStatus(STATUS_PHYSICS,BOOL)Teravus Ovares2008-03-143-3/+70
|
* * Preliminary work with the ODEPlugin to collect collision data.Teravus Ovares2008-03-149-18/+196
|
* Update svn properties.Jeff Ames2008-03-147-969/+969
|
* some hackery with the VectorRenderModule to let you pass in a canvasSean Dague2008-03-131-2/+13
| | | | | | | size. Helps make the fonts crisp when using vector renderer as a text board.