aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey2008-06-011-2/+2
| | | | | | | | must remember to nant clean * Hook all server startups into base opensim server startup method
* * Move log version printing up into BaseOpenSimServerJustin Clarke Casey2008-06-011-1/+3
|
* * Make version information common to all serversJustin Clarke Casey2008-05-311-1/+1
| | | | | | * Now all servers respond to the "show version" command on the console
* Mantis#1422. Thank you kindly, Xantor for a patch that :Charles Krinke2008-05-301-5/+16
| | | | | | | | | - volume doesn't change with a new llLoopSound(same sound, new volume); - SendFullUpdateToClients sends 0's in all sound related fields when there's no sound on the prim, thereby improving the amount of data being sent out on these prims (fixes zeropack) - Removed some code duplication between llStartSound, llLoopSound and llParticleSystem() calls
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-301-176/+134
|
* Mantis#1406. Thank you kindly, Xantor for a patch that:Charles Krinke2008-05-281-5/+13
| | | | | | | | | 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.
* * Implements duplicate packet tracking. This virtually eliminates object ↵Teravus Ovares2008-05-281-1/+64
| | | | | | | duplication causing 2-3 duplicates depending on the UDP connection quality. This also eliminates duplicated chat, etc. * It's verbose currently since this is new. You'll see: [CLIENT]: Warning Duplicate packet detected X Dropping. After this is sufficiently tested we'll remove that m_log.info line.
* Thank you kindly, Melanie for a patch for script resetCharles Krinke2008-05-261-0/+10
| | | | | that creates the event handler chain ready to hook by script engines
* * Extract and boil down necessary texture UUIDs for an archive of the scene ↵Justin Clarke Casey2008-05-261-1/+1
| | | | | | | | prims * no user functionality yet
* Update svn properties. Formatting cleanup.Jeff Ames2008-05-252-16/+13
|
* * A hacky Top Scripts display. It isn't accurate as far as ms accounting, ↵Teravus Ovares2008-05-251-0/+7
| | | | | | | 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.
* * Adds Top Colliders when using ODE. Access it from the estate tools/debug tab.Teravus Ovares2008-05-251-0/+56
|
* * Temporary fix for mantis 1374Justin Clarke Casey2008-05-241-1/+11
| | | | | | * If the agent throttle byte array is unexpectedly empty, then log a warning and drop the packet
* This enables return from the parcel object owner display.Teravus Ovares2008-05-241-0/+25
| | | | | 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-0/+1
| | | | | * 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.
* IRCBridgeModule (and ChatModule before the refactoring) didn't succeed in Dr Scofield2008-05-231-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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().
* Thank you kindly, Melanie, for:Charles Krinke2008-05-231-2/+22
| | | | | | | 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.
* change to how initial terrain data is sent. Instead of sending the 64 ↵MW2008-05-221-10/+46
| | | | | | | packets in rapid fire as quickly as possible. The terrain data sending is now done in a threadpool worker thread over ~10 seconds with a thread.sleep between each packet sending. this hasn't been tested thoroughly, so it might not actually help with the atom bomb terrain (missing patches) but its a simple thing to revert if it makes things worse for anyone. 10 seconds is roughly the time between the region handshake completing and you being in world where you can see your avatar. So normally the terrain still should have loaded by time you get in the region, although it is possible that sometimes you might see the very end of the terrain load just after you arrive.
* * Limiting the Quaternion reset to x=y=z=w=0Teravus Ovares2008-05-221-4/+4
|
* * Refactor: Move enhancement of version string with operating system ↵Justin Clarke Casey2008-05-221-2/+1
| | | | | | | | information from Scene to OpenSimMain * This also means the operating system info will show up in the region console (and hence the logs)
* IZ QUATERNION NORMALIZE TO 0? NOWAI! KTHXBYETeravus Ovares2008-05-211-0/+10
|
* Add copyright notices.Jeff Ames2008-05-201-0/+27
| | | | | Fix spelling typo (Thanks ChrisDown for pointing this out)
* * minor: Just a few documentation odds and endsJustin Clarke Casey2008-05-181-3/+0
|
* * Group type stuff. Nothing spectacular. two packets, sorta almost semi ↵Teravus Ovares2008-05-181-1/+54
| | | | half tiny amount implemented.
* * Tweaked patch mantis 1302 and committing it.Teravus Ovares2008-05-171-0/+23
|
* Formatting cleanup.Jeff Ames2008-05-171-19/+19
|
* * Committing patch from mantis 0001297: [PATCH] Fix behavior of child prim ↵Teravus Ovares2008-05-161-1/+20
| | | | inventories. Also enables 'New Script' button. from Melanie. Thanks Melanie!
* Formatting cleanup.Jeff Ames2008-05-165-157/+157
|
* Committing patch from Melanie. 0001290: [PATCH] implement permissions ↵Teravus Ovares2008-05-151-1/+1
| | | | | | | | propagation and script module hooks. Thanks Melanie! * Implements quite a few inventory related perms. * (from Teravus) Fixes Take Copy
* * Refactored IConfigSource into Physics plug-ins and Scene. We can get rid ↵Teravus Ovares2008-05-141-2/+3
| | | | | | | of some of the parameters we pass to it's constructor now like, 'm_allowPhysicalPrim', 'seeIntoOtherRegions', etc.. so on * The main purpose of this is to provide configuration options for ODE and other physics plug-ins that are advanced enough to be able to be configured.
* * Adding the very bare minimum for the client to register user as having the ↵Teravus Ovares2008-05-141-0/+24
| | | | group OpenSimulator Tester. This allows us to start examining and implementing the vary many unhandled group packets.
* More formatting cleanup.Jeff Ames2008-05-142-3/+6
|
* Formatting cleanup.Jeff Ames2008-05-142-10/+9
|
* * Refactored OutPacket out of ScenePresence Teravus Ovares2008-05-141-0/+33
| | | | | * Down to 65 warnings.
* * Refactored OutPacket and FirstName/LastName out of Friends Module.Teravus Ovares2008-05-141-0/+28
|
* *Complete redo of the permissions modulemingchen2008-05-131-34/+47
| | | | | | *Removed hardcoded permissions checks *Added permissions checks where needed
* * If a region running in grid mode fails to login to the grid service, ↵Justin Clarke Casey2008-05-121-5/+1
| | | | startup will now terminate instead of carrying on (and thus burying the error message)
* Formatting cleanup.Jeff Ames2008-05-121-3/+3
|
* 0001199: [PATCH] Add support for default animations Teravus Ovares2008-05-111-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From Melanie... Thanks Melanie! .
* * Mantis #1127 - Patch to implement depreciated patches. Thanks middlelink!Adam Frisby2008-05-111-4/+36
|
* * Refactored two more OutPackets. ObjectPropertiesFamily, and Object ↵Teravus Ovares2008-05-101-0/+73
| | | | Properties.
* * More OutPacket refactors.Teravus Ovares2008-05-101-0/+13
| | | | | * Added back a sleep to the kick routine so users get a 'you have been logged off message' when they get kicked from the simulator for various reasons (like 'the simulator is going down')
* * Two more OutPacket refactors. TextureSender.Teravus Ovares2008-05-101-0/+15
| | | | | * The split image packet sender doesn't like to be refactored (images don't load after it's been refactored), so left that as is for the moment.
* Refactored out a few warnings related to Adam's bane OutPacketTeravus Ovares2008-05-101-0/+28
|
* * Experiment in Zerocoding.Teravus Ovares2008-05-101-11/+27
|
* * remove 2 warnings.Teravus Ovares2008-05-081-1/+1
|
* *Added all the permission checks to the sceneexternalchecks and modified ↵mingchen2008-05-081-13/+13
| | | | | | | permission module to follow this. *This makes permission checking much more modular; allows restrictive and granting module to be made without modifying the existing permission module
* * Proper fix for 1191 - Missing TypeData in ViewerEffectEventHandlerArg.Adam Frisby2008-05-081-0/+1
|
* * You can haz more spring cleaning.Adam Frisby2008-05-081-0/+1
| | | | | * Eventually this codebase will be clean. >_>
* * Some refactorings.Adam Frisby2008-05-081-2/+1
| | | | | * Added shell of new Python scripting engine. Similar in design to the one used by Rex, but will be structured at a region rather than object level, also is a region module.