aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Mantis#1428. Thank you kindly, fdg for a patch that solves:Charles Krinke2008-05-311-0/+5
| | | | | | | | When you copy an item in inventory and paste it, the name gets lost. Also when you use "Save as" in the Appearance Editing window the created item in inventory has always the name "New <item-type>", regardless of what you typed in as name.
* * Implements UserServer logoff in a few situationsTeravus Ovares2008-05-313-2/+46
| | | | | | | * User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
* * Refactor: Change multiple requests for a module interface to use a stored ↵Justin Clarke Casey2008-05-301-16/+12
| | | | reference instead.
* * Crudely migrate SceneXmlLoader into the Serializer moduleJustin Clarke Casey2008-05-302-249/+19
|
* while investigating why IRCBridgeModule.Close() was having no effect, iDr Scofield2008-05-302-1/+23
| | | | | | | | | | | | | | | | | | | noticed that Scene.Close() will only call Close on non-shared region modules. i've now added code to SceneManager.Close() to collect all shared region module from each scene before calling Scene.Close() on it and then, once, all Scenes are closed, go through the list of collected shared region modules and close them as well. SceneManager.Close() is only called when we initiate a shutdown --- i've verified that a Scene restart does not trigger the shutdown of shared modules :-) also, this adds a couple of bug fixes to the IRCBridgeModule (which after all didn't take kindly to being closed) as well as a check to InterregionModule's Close() call. finally, this fixes the RestPlugin's XmlWriter so that it no longer includes the "xsd=..." and "xsi=..." junk.
* * Fixed a dangling event hook that I added.Teravus Ovares2008-05-302-0/+49
| | | | | * Added a Non-finite avatar position reset. This will either handle the <0,0,0> avatar gracefully, or send the avatar to 127,127,127 if that also doesn't work. ( I've only been able to reproduce this error once on my development workstation )
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-301-1/+1
|
* Mantis#1416. Thank you very much, Melanie for a patch that:Charles Krinke2008-05-291-0/+12
| | | | | Createa a method to find out if a prim inventory contains scripts
* * Ruling out another potential cause of zombie-ismTeravus Ovares2008-05-291-0/+2
|
* * Fix string literal with URL + LLcommand();Teravus Ovares2008-05-292-2/+17
| | | | | | * Added 'detected around: value' when a x.Y detect occurs to help debug. * Fixed object text is too long to store to the database (wikilith)
* Mantis#1411. Thank you kindly for Dataserver.cs and a patchCharles Krinke2008-05-292-0/+10
| | | | | | that adds function stub to request region info by name and adds llRequestSimulatorData() and the dataserver event
* * Added a child agent check to the ChildAgentData Update to make sure that ↵Teravus Ovares2008-05-291-1/+5
| | | | you're a child agent before applying the changes from the grid comms. Doing this to rule it out as a source of a few bugs such as the Zombie bug and the Express Train to 0,0,0 bug.
* *Added a Few External Checks relating to scripts including the seperation of ↵mingchen2008-05-284-9/+107
| | | | runscript into 3 different situations (Rez, start stop)
* * Put in stubs for "load-oar" command, including ultra-primitive temporary ↵Justin Clarke Casey2008-05-281-3/+3
| | | | | | | | tar loading code * Currently as a test, this will successfully load only the first file of an opensim archive and do absolutely nothing with it
* Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke2008-05-281-1/+15
| | | | | | | | | llLoopSound sends out one packet to clients in view, so it doesn't work anymore when clients enter later on, or the prim is modified in any way. Solution: Stored sound data on prim, send full update instead. llStartSound and llLoopSound now accept both LLUUIDs to a sound as well as object inventory sound names. llStopSound clears prim data and sends full update.
* Formatting cleanup.Jeff Ames2008-05-286-61/+59
|
* Thank you kindly, Melanie for a patch that:Charles Krinke2008-05-281-0/+2
| | | | | When renaming items in task inventory, they become useless. Fix attached
* Thank you very much, ChrisIndigo for a patch that:Charles Krinke2008-05-281-9/+25
| | | | | | | | If a script updates an object to the same position or rotation offset, the object triggers an update and storage of the object. This become more prevalent in sensor and timer events which may be firing frequently.
* Thank you kindly, Melanie for a patch that adds a two-stageCharles Krinke2008-05-281-1/+7
| | | | | | | check. It seems there may be a race. For me, this patch, just as it is here, fixes it.
* Thank you kindly, Melanie for a patch for script resetCharles Krinke2008-05-263-0/+22
| | | | | that creates the event handler chain ready to hook by script engines
* This cleans up a merge mess from the earlier checkin and implements ↵Dr Scofield2008-05-262-18/+45
| | | | | | | | llOwnerSay() via the newly created Scene.SimBroadcast() call.
* Adding OnChatBroadcast event logic to EventManager providing Dr Scofield2008-05-261-0/+16
| | | | | | | | | | | | | a clean interface for Sim broadcasts. Added SimBroadcast support to ChatModule. Removing all code from IRCBridgeModule dealing with agent/client directly. Cleaning up ChatModule. Polishing IRC messages, adding support for "/me" (both directions).
* * Minor: method documentation fiddling in SceneObjectGroupJustin Clarke Casey2008-05-261-4/+6
|
* * Extract and boil down necessary texture UUIDs for an archive of the scene ↵Justin Clarke Casey2008-05-263-6/+17
| | | | | | | | prims * no user functionality yet
* * Refactor: Where possible, change visibility on InnerScene methods to ↵Justin Clarke Casey2008-05-262-89/+90
| | | | protected internal on the basis that they shouldn't be manipulated by outsiders
* * Refactor: remove code duplication between add ScenePresence methods in ↵Justin Clarke Casey2008-05-262-41/+4
| | | | InnerScene
* * Refactor: Separate out RemoveScenePresence and add into InnerScene to ↵Justin Clarke Casey2008-05-262-26/+40
| | | | match existing AddScenePresence
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-256-56/+53
|
* * A hacky Top Scripts display. It isn't accurate as far as ms accounting, ↵Teravus Ovares2008-05-254-0/+83
| | | | | | | however you can use it to help find out what scripts are causing your simulator to cry. * Access it from the Estate tools/Debug tab.
* Thank you very much, Melanie for a patch that:Charles Krinke2008-05-251-0/+6
| | | | | | | If the m_controllingClient member if a ScenePresence is null, that would cause a CTB. This patch fixes it.
* Thank you kindly, Tiffany for a patch that helps:Charles Krinke2008-05-252-6/+10
| | | | | | Drag copy a prim and the prim that is moved, persists. The prim that is created does not survive a restart.
* * phantom sculpties don't request the sculpt texture anymore.Teravus Ovares2008-05-252-3/+39
|
* * Disabling isSelected check on object persistence backup (at least ↵Justin Clarke Casey2008-05-252-22/+30
| | | | | | | | | temporarily), since it appears we sometimes either don't receive or don't register deselect packets when prims are shift copied. * A better long term solution may be to address the problem of why we're not always seeing the deselects
* * Refactor: Collapses parts of different code paths in scene used when ↵Justin Clarke Casey2008-05-254-40/+27
| | | | deleting and unlinking an object
* * Refactor: Collapse some multiple remove object pathsJustin Clarke Casey2008-05-243-55/+65
| | | | | | * Push some delete functionality into InnerScene to match what's already there for adding objects
* * Refactor: Remove some unused methods in Scene/InnerSceneJustin Clarke Casey2008-05-242-26/+0
|
* * Refactor: Change previous commits Object methods to SceneObject methods ↵Justin Clarke Casey2008-05-245-18/+19
| | | | instead, on the basis that this is less likely to cause confusion with c#'s base object type
* * Refactor: Renaming various *Entity*() methods to *Object*() methods on the ↵Justin Clarke Casey2008-05-245-17/+41
| | | | basis that they all take SOG parameters to improve code readability for now
* * Refactor: Push some dictionary initialization down from Scene into InnerSceneJustin Clarke Casey2008-05-242-10/+14
|
* * Refactor: Make some inner scene dictionaries internal rather than publicJustin Clarke Casey2008-05-241-2/+2
|
* * Fixes endless loop in the Land Module when selecting any object.Teravus Ovares2008-05-242-75/+104
| | | | | * Fixes returning objects when the object owner hasn't been in the simulator since the simulator started up last.
* * Get the xml2 entities serialization representation in the archiver moduleJustin Clarke Casey2008-05-242-4/+4
| | | | | | | * Not yet reusing serialization module - this will happen in the future * No user functionality yet
* This enables return from the parcel object owner display.Teravus Ovares2008-05-242-22/+30
| | | | | There's some oddness with the parcel counts, but if you can get past the oddness, you can return objects under an owner that you have permission to return.
* * Implements selected object return.Teravus Ovares2008-05-241-85/+267
| | | | | * If user is in the same sim with you, they'll get an inventory update, if not.... oh well, they'll have to clear their cache potentially before they'll see it.
* * an attempt to resolve the teleport + attachment = crashTeravus Ovares2008-05-241-4/+19
|
* IRCBridgeModule (and ChatModule before the refactoring) didn't succeed in Dr Scofield2008-05-233-3/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | finding out which region a new avatar was logging in to; the same problem occurred when the client/avatar logged out. the reason was mani-fold: - Scene.AddNewClient(...) would call SubscribeToClientEvents(client) which would subscribe to all client events and then call TriggerOnNewClient(...) BEFORE the ScenePresence object had even been created and added. i've moved the TriggerOnNewClient() call to the end of Scene.AddNewClient() - Scene.AddNewClient(...) is called with child == true; a later call to ScenePresence.MakeRootAgent() will turn child to false. When OnNewClient is triggered, child is still true, causing IRCBridgeModule's FindClientRegion to ignore the ScenePresence of the new avatar. i've changed IRCBridgeModule to still use OnNewClient and also OnLogout and OnConnectionClosed but only to signal that the avatar has logged on (logged off respectively). to track whether an avatar has actually entered a region i've added EventManager.OnMakeRootAgent (complementing OnMakeChildAgent). also, i've cleaned up the internal IRCModule code a bit. currently it still uses IClientAPI.SendChatMessage() which replicates the code in ChatModule, that needs to be changed to use TriggerOnChatFromWorld().
* *Refactor of the LandManagementModule that allows OpenSim to run without itmingchen2008-05-235-51/+100
|
* i've refactored the ChatModule into two modules: ChatModule and IRCBridgeModule.Dr Scofield2008-05-232-18/+33
| | | | | | | | | | | | | ChatModule is now only doing in-world chat. IRCBridgeModule is only doing, well, bridging chat to/from IRC. Both modules are now using a new OnChatFromWorld event handler (which Scene.PacketHandler is feeding for chat from in-world instead of going via the Interface method). This refactoring will allow us to easily add other bridge modules (e.g., an XMPP bridge module). there is still a bug in IRCBridgeModule (inherited from the old ChatModule) where FindClientRegion does not really find the client region...
* Thank you kindly, Melanie, for:Charles Krinke2008-05-233-31/+48
| | | | | | | Nothing huge, but the new button code for producing a new script does well, but the script will not allow for name change once created. It reverts back to new script.
* Thank you kindly, Melanie, for a patch which:Charles Krinke2008-05-232-1/+12
| | | | | | | | | Previously, upload charging was possible only for UPD uploads. This is because UDP uploads are charged by the viewer, while in CAPS, this was changed to be server side, so hackers couldn't avoid paying the upload charge. This patch adds a method to allow implementation of this serverside charge.