aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-10-24Drop some unnecessary ContainsKey() checking before Remove() in BaseHttpServer()Justin Clark-Casey (justincc)1-12/+2
Remove() presumably does this check anyway since it just returns false if the key is not in the collection.
2011-10-24Fix bugs in EventQueueGetModule.ClientClosed() and ↵Justin Clark-Casey (justincc)4-9/+31
BaseHttpServer.RemovePollServerHTTPHandler() that stopped existing code in ClientClosed() from actually tearing down the poll handler Actually doing the tear down appear to have no ill effects with region crossing and teleport.
2011-10-24separate out future common setup code from EventQueueTests.AddForClient()Justin Clark-Casey (justincc)1-8/+14
2011-10-24Add new EventQueueTests with basic test to check that adding a client ↵Justin Clark-Casey (justincc)3-2/+75
registers an http poll
2011-10-24Add optional getauthinfo and setauthinfo authentication service calls.Justin Clark-Casey (justincc)7-5/+177
These are disabled by default, as before. Please only turn these on in secure grids, since they allow the same facilities as the existing SetPassword call (also disabled by default) These facilities can be helpful when integrating external systems, in addition to the existing option of adapting an IAuthenticationService or using WebLoginKey
2011-10-23Comment out the uuid gatherer lines that I accidentally left in.Justin Clark-Casey (justincc)1-4/+4
2011-10-22Fix missing Busy-Mode ResponsePixel Tomsen1-0/+1
http://opensimulator.org/mantis/view.php?id=5748
2011-10-22Add case to Lightshare/WindlightBlueWall1-0/+3
Thanks thomax for a patch to add handling for Sun/Moon pos.
2011-10-22Get UUIDGatherer to scan notecards in the graph for asset uuids.Justin Clark-Casey (justincc)5-24/+68
This is to support npc baked texture saving in oars and iars. May address http://opensimulator.org/mantis/view.php?id=5743
2011-10-22redirect UserInventoryHelpers to use a different CreateNotecardAsset() so we ↵Justin Clark-Casey (justincc)2-12/+19
can comment out some inconsistency
2011-10-22correct misleading method doc on CreateNotecardAsset()Justin Clark-Casey (justincc)1-1/+1
2011-10-22in AssetHelpers, store the actual text passed in to the method, not the ↵Justin Clark-Casey (justincc)1-2/+2
string "data"
2011-10-22encode notecard assets in proper format for tests, rather than just using ↵Justin Clark-Casey (justincc)1-1/+6
whatever string is given
2011-10-22refactor: rename some AssetHelpers.CreateAsset() methods to ↵Justin Clark-Casey (justincc)4-10/+10
CreateNotecardAsset()
2011-10-21RemoteAdmin - Added optional terrain loading on region create using ↵Michelle Argus1-21/+41
parameter heightmap_file to specify the terrain file to be loaded
2011-10-21very minor removal of old commented out line of code in OdeSceneJustin Clark-Casey (justincc)1-5/+3
2011-10-20remove unnecessary null check on _collisionEventPrimJustin Clark-Casey (justincc)1-3/+0
2011-10-20Get OdeScene to use passed in time step rather than hard-coded 0.089Justin Clark-Casey (justincc)3-25/+32
However, I still don't recommend changing MinFrameTime from 0.089, high values do not work well and lower values don't seem to make much difference
2011-10-20Pass PhysicsScene.Simulate() only the MinFrameTime rather than the useless ↵Justin Clark-Casey (justincc)1-12/+4
Math.Max(SinceLastFrame.TotalSeconds, MinFrameTime) SinceLastFrame was calculating the interval between any sleep that had occurred to pad out the frame time and the start of the next frame. This would usually be below MinFrameTime but occasionally if the sleep was long it would be above, often due to the time required to update the watchdog. This doesn't appear to play much practical role right now. ODE was actually ignoring it entirely. Bullet might be helped slightly by receiving a non-varying value.
2011-10-20For now, stop passing timeStep into methods where it's not actually used.Justin Clark-Casey (justincc)2-13/+5
2011-10-19Change wording on asset requests.Justin Clark-Casey (justincc)1-2/+2
Not all 'notified missing' assets are a problem. Some are invalid references which happen to be buried in other text.
2011-10-19Removed redundant NotInTransit function from ScenePresence. ↵Dan Lake1-5/+0
IsInTransit=false does the same thing and NotInTransit was not used anywhere.
2011-10-19Moved HaveNeighbor utility function from ScenePresence to Scene. Fixed line ↵Dan Lake5-318/+318
endings from previous commit.
2011-10-19Renamed and rearranged AvatarFactoryModule to eliminate redundant lookups of ↵Dan Lake9-344/+319
scene presence by client ID.
2011-10-19Extend scripts stop/start/suspend/resume console commands to allow action on ↵Justin Clark-Casey (justincc)2-72/+100
a single script by giving the script item id (which can be found via scripts show). Not an ideal way to do this on a region with many scripts. Needs refinement later.
2011-10-19Add "scripts stop" and "scripts start" console commands.Justin Clark-Casey (justincc)1-2/+48
These will stop all running scripts and start all stopped scripts respectively. A stopped script does not save any events for later processing.
2011-10-19minor: improve command help on scripts suspend/resumeJustin Clark-Casey (justincc)1-2/+5
2011-10-19Fix resume scripts.Justin Clark-Casey (justincc)2-9/+33
On resume, we need to place requeue the script for event processing if there are any events on the queue. Also need to do this under m_Script lock in order to avoid a race
2011-10-19Add "scripts suspend" and "scripts resume" commands.Justin Clark-Casey (justincc)2-3/+53
These aim currently to suspend and resume all scripts. However, resume isn't currently working due to what looks like a bug in resume functionality itself.
2011-10-19on log and "show scripts" messages, show script item UUID rather than asset UUIDJustin Clark-Casey (justincc)1-4/+4
The item ID is the one required for any script manipulation on the command line, so I think it's somewhat more useful to show this bearing in mind the limited space available
2011-10-19add current script status to "scripts show" command (running, suspended, etc.)Justin Clark-Casey (justincc)3-7/+31
2011-10-19Add "show scripts" command to show all scripts currently known to the script ↵Justin Clark-Casey (justincc)2-2/+28
engine in the current region. Also added synonym of "scripts show"
2011-10-19Add option to allow remote http calls to setpassword in the ↵Justin Clark-Casey (justincc)2-23/+46
AuthenticationService. This is switched on by setting AllowSetPassword = true in the [AuthenticationService] section of Robust.ini or Robust.HG.ini Default is false as before.
2011-10-19Slightly change log message in LoadRegionsPluginJustin Clark-Casey (justincc)1-1/+1
2011-10-19Region-UUID - can not be zero-uuidPixel Tomsen1-1/+13
http://opensimulator.org/mantis/view.php?id=3426
2011-10-19Make ScopeID optional for http GetAccount and GetAccountsJustin Clark-Casey (justincc)1-11/+6
If not specified then it assumes UUID.Zero. as occurs elsewhere in the codebase
2011-10-19Make PrincipalID a synonym for UserID in GetUserAccountJustin Clark-Casey (justincc)1-0/+6
2011-10-19Get new NewUser and SetUserAccount calls to accept PrincipalID instead of ↵Justin Clark-Casey (justincc)1-3/+3
UserID for consistency with output
2011-10-19Allow an http call to set account details if AllowSetAccount = true in ↵Justin Clark-Casey (justincc)1-3/+59
[UserAccountService]. As before, default is false to not allow these calls.
2011-10-18Provide an option to allow remote calls to the CreateUser method on the ↵Justin Clark-Casey (justincc)3-7/+73
UserAccountService Default is false, as before. Enabling AllowCreateUser in [UserAccountService] for ROBUST allows avatars to be created via an http call, with viewer 2 appropriate bits and pieces. Only Ruths can be created at present. Please don't rely on the config since at some point CreateUser will be moved to a separate co-ordinating service.
2011-10-18Temporarily put in log lines to record time taken to set terrain in OdeScene.Justin Clark-Casey (justincc)1-0/+6
2011-10-18Store scene identifier passed in to OdeScene for later debug messagesJustin Clark-Casey (justincc)2-2/+10
2011-10-18Don't bother taking OdeLock during OdeScene construction, since there can be ↵Justin Clark-Casey (justincc)1-16/+13
no contention until the object is constructed.
2011-10-18Remove unnecessary lock of OdeLock in OdePrim.changeadd()Justin Clark-Casey (justincc)1-18/+13
This taint can only ever be processed from the OdeScene.Simulate() loop, which already locks OdeLock.
2011-10-18minor: method doc to explain a lock of OdeLockJustin Clark-Casey (justincc)2-1/+3
2011-10-18Remove the unused CollisionLocker from ODEJustin Clark-Casey (justincc)4-97/+81
Despite its name, this wasn't actually being used in any collision checking
2011-10-17Allow an avatar to be explicitly named to the "debug packet" commandJustin Clark-Casey (justincc)2-6/+11
2011-10-17refactor: Make IClientAPI.DebugPacketFormat a property rather than a setter ↵Justin Clark-Casey (justincc)6-28/+16
without a getter
2011-10-17Add avatar names to debug packet outputJustin Clark-Casey (justincc)1-2/+2
2011-10-17refactor: Use SOP.SitTargetAvatar instead of calling a special ↵Justin Clark-Casey (justincc)3-11/+10
GetAvatarOnSitTarget() which returned exactly the same thing