diff options
Diffstat (limited to 'OpenSim/Region/ClientStack')
15 files changed, 3455 insertions, 1114 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs index cc69645..f6146a9 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs | |||
@@ -26,6 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Timers; | ||
29 | using System.Collections; | 30 | using System.Collections; |
30 | using System.Collections.Generic; | 31 | using System.Collections.Generic; |
31 | using System.IO; | 32 | using System.IO; |
@@ -53,14 +54,16 @@ using OSDMap = OpenMetaverse.StructuredData.OSDMap; | |||
53 | namespace OpenSim.Region.ClientStack.Linden | 54 | namespace OpenSim.Region.ClientStack.Linden |
54 | { | 55 | { |
55 | public delegate void UpLoadedAsset( | 56 | public delegate void UpLoadedAsset( |
56 | string assetName, string description, UUID assetID, UUID inventoryItem, UUID parentFolder, | 57 | string assetName, string description, UUID assetID, UUID inventoryItem, UUID parentFolder, |
57 | byte[] data, string inventoryType, string assetType); | 58 | byte[] data, string inventoryType, string assetType, |
59 | int cost, UUID texturesFolder, int nreqtextures, int nreqmeshs, int nreqinstances, | ||
60 | bool IsAtestUpload, ref string error); | ||
58 | 61 | ||
59 | public delegate UUID UpdateItem(UUID itemID, byte[] data); | 62 | public delegate UUID UpdateItem(UUID itemID, byte[] data); |
60 | 63 | ||
61 | public delegate void UpdateTaskScript(UUID itemID, UUID primID, bool isScriptRunning, byte[] data, ref ArrayList errors); | 64 | public delegate void UpdateTaskScript(UUID itemID, UUID primID, bool isScriptRunning, byte[] data, ref ArrayList errors); |
62 | 65 | ||
63 | public delegate void NewInventoryItem(UUID userID, InventoryItemBase item); | 66 | public delegate void NewInventoryItem(UUID userID, InventoryItemBase item, uint cost); |
64 | 67 | ||
65 | public delegate void NewAsset(AssetBase asset); | 68 | public delegate void NewAsset(AssetBase asset); |
66 | 69 | ||
@@ -86,6 +89,7 @@ namespace OpenSim.Region.ClientStack.Linden | |||
86 | 89 | ||
87 | private Scene m_Scene; | 90 | private Scene m_Scene; |
88 | private Caps m_HostCapsObj; | 91 | private Caps m_HostCapsObj; |
92 | private ModelCost m_ModelCost; | ||
89 | 93 | ||
90 | private static readonly string m_requestPath = "0000/"; | 94 | private static readonly string m_requestPath = "0000/"; |
91 | // private static readonly string m_mapLayerPath = "0001/"; | 95 | // private static readonly string m_mapLayerPath = "0001/"; |
@@ -96,7 +100,10 @@ namespace OpenSim.Region.ClientStack.Linden | |||
96 | // private static readonly string m_fetchInventoryPath = "0006/"; | 100 | // private static readonly string m_fetchInventoryPath = "0006/"; |
97 | private static readonly string m_copyFromNotecardPath = "0007/"; | 101 | private static readonly string m_copyFromNotecardPath = "0007/"; |
98 | // private static readonly string m_remoteParcelRequestPath = "0009/";// This is in the LandManagementModule. | 102 | // private static readonly string m_remoteParcelRequestPath = "0009/";// This is in the LandManagementModule. |
99 | 103 | private static readonly string m_getObjectPhysicsDataPath = "0101/"; | |
104 | private static readonly string m_getObjectCostPath = "0102/"; | ||
105 | private static readonly string m_ResourceCostSelectedPath = "0103/"; | ||
106 | |||
100 | 107 | ||
101 | // These are callbacks which will be setup by the scene so that we can update scene data when we | 108 | // These are callbacks which will be setup by the scene so that we can update scene data when we |
102 | // receive capability calls | 109 | // receive capability calls |
@@ -111,12 +118,50 @@ namespace OpenSim.Region.ClientStack.Linden | |||
111 | private IAssetService m_assetService; | 118 | private IAssetService m_assetService; |
112 | private bool m_dumpAssetsToFile = false; | 119 | private bool m_dumpAssetsToFile = false; |
113 | private string m_regionName; | 120 | private string m_regionName; |
121 | |||
114 | private int m_levelUpload = 0; | 122 | private int m_levelUpload = 0; |
115 | 123 | ||
124 | private bool m_enableFreeTestUpload = false; // allows "TEST-" prefix hack | ||
125 | private bool m_ForceFreeTestUpload = false; // forces all uploads to be test | ||
126 | |||
127 | private bool m_enableModelUploadTextureToInventory = false; // place uploaded textures also in inventory | ||
128 | // may not be visible till relog | ||
129 | |||
130 | private bool m_RestrictFreeTestUploadPerms = false; // reduces also the permitions. Needs a creator defined!! | ||
131 | private UUID m_testAssetsCreatorID = UUID.Zero; | ||
132 | |||
133 | private float m_PrimScaleMin = 0.001f; | ||
134 | |||
135 | private enum FileAgentInventoryState : int | ||
136 | { | ||
137 | idle = 0, | ||
138 | processRequest = 1, | ||
139 | waitUpload = 2, | ||
140 | processUpload = 3 | ||
141 | } | ||
142 | private FileAgentInventoryState m_FileAgentInventoryState = FileAgentInventoryState.idle; | ||
143 | |||
116 | public BunchOfCaps(Scene scene, Caps caps) | 144 | public BunchOfCaps(Scene scene, Caps caps) |
117 | { | 145 | { |
118 | m_Scene = scene; | 146 | m_Scene = scene; |
119 | m_HostCapsObj = caps; | 147 | m_HostCapsObj = caps; |
148 | |||
149 | // create a model upload cost provider | ||
150 | m_ModelCost = new ModelCost(); | ||
151 | // tell it about scene object limits | ||
152 | m_ModelCost.NonPhysicalPrimScaleMax = m_Scene.m_maxNonphys; | ||
153 | m_ModelCost.PhysicalPrimScaleMax = m_Scene.m_maxPhys; | ||
154 | |||
155 | // m_ModelCost.ObjectLinkedPartsMax = ?? | ||
156 | // m_ModelCost.PrimScaleMin = ?? | ||
157 | |||
158 | m_PrimScaleMin = m_ModelCost.PrimScaleMin; | ||
159 | float modelTextureUploadFactor = m_ModelCost.ModelTextureCostFactor; | ||
160 | float modelUploadFactor = m_ModelCost.ModelMeshCostFactor; | ||
161 | float modelMinUploadCostFactor = m_ModelCost.ModelMinCostFactor; | ||
162 | float modelPrimCreationCost = m_ModelCost.primCreationCost; | ||
163 | float modelMeshByteCost = m_ModelCost.bytecost; | ||
164 | |||
120 | IConfigSource config = m_Scene.Config; | 165 | IConfigSource config = m_Scene.Config; |
121 | if (config != null) | 166 | if (config != null) |
122 | { | 167 | { |
@@ -131,6 +176,37 @@ namespace OpenSim.Region.ClientStack.Linden | |||
131 | { | 176 | { |
132 | m_persistBakedTextures = appearanceConfig.GetBoolean("PersistBakedTextures", m_persistBakedTextures); | 177 | m_persistBakedTextures = appearanceConfig.GetBoolean("PersistBakedTextures", m_persistBakedTextures); |
133 | } | 178 | } |
179 | // economy for model upload | ||
180 | IConfig EconomyConfig = config.Configs["Economy"]; | ||
181 | if (EconomyConfig != null) | ||
182 | { | ||
183 | modelUploadFactor = EconomyConfig.GetFloat("MeshModelUploadCostFactor", modelUploadFactor); | ||
184 | modelTextureUploadFactor = EconomyConfig.GetFloat("MeshModelUploadTextureCostFactor", modelTextureUploadFactor); | ||
185 | modelMinUploadCostFactor = EconomyConfig.GetFloat("MeshModelMinCostFactor", modelMinUploadCostFactor); | ||
186 | // next 2 are normalized so final cost is afected by modelUploadFactor above and normal cost | ||
187 | modelPrimCreationCost = EconomyConfig.GetFloat("ModelPrimCreationCost", modelPrimCreationCost); | ||
188 | modelMeshByteCost = EconomyConfig.GetFloat("ModelMeshByteCost", modelMeshByteCost); | ||
189 | |||
190 | m_enableModelUploadTextureToInventory = EconomyConfig.GetBoolean("MeshModelAllowTextureToInventory", m_enableModelUploadTextureToInventory); | ||
191 | |||
192 | m_RestrictFreeTestUploadPerms = EconomyConfig.GetBoolean("m_RestrictFreeTestUploadPerms", m_RestrictFreeTestUploadPerms); | ||
193 | m_enableFreeTestUpload = EconomyConfig.GetBoolean("AllowFreeTestUpload", m_enableFreeTestUpload); | ||
194 | m_ForceFreeTestUpload = EconomyConfig.GetBoolean("ForceFreeTestUpload", m_ForceFreeTestUpload); | ||
195 | string testcreator = EconomyConfig.GetString("TestAssetsCreatorID", ""); | ||
196 | if (testcreator != "") | ||
197 | { | ||
198 | UUID id; | ||
199 | UUID.TryParse(testcreator, out id); | ||
200 | if (id != null) | ||
201 | m_testAssetsCreatorID = id; | ||
202 | } | ||
203 | |||
204 | m_ModelCost.ModelMeshCostFactor = modelUploadFactor; | ||
205 | m_ModelCost.ModelTextureCostFactor = modelTextureUploadFactor; | ||
206 | m_ModelCost.ModelMinCostFactor = modelMinUploadCostFactor; | ||
207 | m_ModelCost.primCreationCost = modelPrimCreationCost; | ||
208 | m_ModelCost.bytecost = modelMeshByteCost; | ||
209 | } | ||
134 | } | 210 | } |
135 | 211 | ||
136 | m_assetService = m_Scene.AssetService; | 212 | m_assetService = m_Scene.AssetService; |
@@ -142,6 +218,8 @@ namespace OpenSim.Region.ClientStack.Linden | |||
142 | ItemUpdatedCall = m_Scene.CapsUpdateInventoryItemAsset; | 218 | ItemUpdatedCall = m_Scene.CapsUpdateInventoryItemAsset; |
143 | TaskScriptUpdatedCall = m_Scene.CapsUpdateTaskInventoryScriptAsset; | 219 | TaskScriptUpdatedCall = m_Scene.CapsUpdateTaskInventoryScriptAsset; |
144 | GetClient = m_Scene.SceneGraph.GetControllingClient; | 220 | GetClient = m_Scene.SceneGraph.GetControllingClient; |
221 | |||
222 | m_FileAgentInventoryState = FileAgentInventoryState.idle; | ||
145 | } | 223 | } |
146 | 224 | ||
147 | /// <summary> | 225 | /// <summary> |
@@ -187,7 +265,6 @@ namespace OpenSim.Region.ClientStack.Linden | |||
187 | { | 265 | { |
188 | try | 266 | try |
189 | { | 267 | { |
190 | // I don't think this one works... | ||
191 | m_HostCapsObj.RegisterHandler( | 268 | m_HostCapsObj.RegisterHandler( |
192 | "NewFileAgentInventory", | 269 | "NewFileAgentInventory", |
193 | new LLSDStreamhandler<LLSDAssetUploadRequest, LLSDAssetUploadResponse>( | 270 | new LLSDStreamhandler<LLSDAssetUploadRequest, LLSDAssetUploadResponse>( |
@@ -204,6 +281,12 @@ namespace OpenSim.Region.ClientStack.Linden | |||
204 | m_HostCapsObj.RegisterHandler("UpdateNotecardAgentInventory", req); | 281 | m_HostCapsObj.RegisterHandler("UpdateNotecardAgentInventory", req); |
205 | m_HostCapsObj.RegisterHandler("UpdateScriptAgentInventory", req); | 282 | m_HostCapsObj.RegisterHandler("UpdateScriptAgentInventory", req); |
206 | m_HostCapsObj.RegisterHandler("UpdateScriptAgent", req); | 283 | m_HostCapsObj.RegisterHandler("UpdateScriptAgent", req); |
284 | IRequestHandler getObjectPhysicsDataHandler = new RestStreamHandler("POST", capsBase + m_getObjectPhysicsDataPath, GetObjectPhysicsData); | ||
285 | m_HostCapsObj.RegisterHandler("GetObjectPhysicsData", getObjectPhysicsDataHandler); | ||
286 | IRequestHandler getObjectCostHandler = new RestStreamHandler("POST", capsBase + m_getObjectCostPath, GetObjectCost); | ||
287 | m_HostCapsObj.RegisterHandler("GetObjectCost", getObjectCostHandler); | ||
288 | IRequestHandler ResourceCostSelectedHandler = new RestStreamHandler("POST", capsBase + m_ResourceCostSelectedPath, ResourceCostSelected); | ||
289 | m_HostCapsObj.RegisterHandler("ResourceCostSelected", ResourceCostSelectedHandler); | ||
207 | 290 | ||
208 | m_HostCapsObj.RegisterHandler( | 291 | m_HostCapsObj.RegisterHandler( |
209 | "CopyInventoryFromNotecard", | 292 | "CopyInventoryFromNotecard", |
@@ -386,62 +469,176 @@ namespace OpenSim.Region.ClientStack.Linden | |||
386 | //m_log.Debug("[CAPS]: NewAgentInventoryRequest Request is: " + llsdRequest.ToString()); | 469 | //m_log.Debug("[CAPS]: NewAgentInventoryRequest Request is: " + llsdRequest.ToString()); |
387 | //m_log.Debug("asset upload request via CAPS" + llsdRequest.inventory_type + " , " + llsdRequest.asset_type); | 470 | //m_log.Debug("asset upload request via CAPS" + llsdRequest.inventory_type + " , " + llsdRequest.asset_type); |
388 | 471 | ||
472 | // start by getting the client | ||
473 | IClientAPI client = null; | ||
474 | m_Scene.TryGetClient(m_HostCapsObj.AgentID, out client); | ||
475 | |||
476 | // check current state so we only have one service at a time | ||
477 | lock (m_ModelCost) | ||
478 | { | ||
479 | switch (m_FileAgentInventoryState) | ||
480 | { | ||
481 | case FileAgentInventoryState.processRequest: | ||
482 | case FileAgentInventoryState.processUpload: | ||
483 | LLSDAssetUploadError resperror = new LLSDAssetUploadError(); | ||
484 | resperror.message = "Uploader busy processing previus request"; | ||
485 | resperror.identifier = UUID.Zero; | ||
486 | |||
487 | LLSDAssetUploadResponse errorResponse = new LLSDAssetUploadResponse(); | ||
488 | errorResponse.uploader = ""; | ||
489 | errorResponse.state = "error"; | ||
490 | errorResponse.error = resperror; | ||
491 | return errorResponse; | ||
492 | break; | ||
493 | case FileAgentInventoryState.waitUpload: | ||
494 | // todo stop current uploader server | ||
495 | break; | ||
496 | case FileAgentInventoryState.idle: | ||
497 | default: | ||
498 | break; | ||
499 | } | ||
500 | |||
501 | m_FileAgentInventoryState = FileAgentInventoryState.processRequest; | ||
502 | } | ||
503 | |||
504 | int cost = 0; | ||
505 | int nreqtextures = 0; | ||
506 | int nreqmeshs= 0; | ||
507 | int nreqinstances = 0; | ||
508 | bool IsAtestUpload = false; | ||
509 | |||
510 | string assetName = llsdRequest.name; | ||
511 | |||
512 | LLSDAssetUploadResponseData meshcostdata = new LLSDAssetUploadResponseData(); | ||
513 | |||
389 | if (llsdRequest.asset_type == "texture" || | 514 | if (llsdRequest.asset_type == "texture" || |
390 | llsdRequest.asset_type == "animation" || | 515 | llsdRequest.asset_type == "animation" || |
516 | llsdRequest.asset_type == "mesh" || | ||
391 | llsdRequest.asset_type == "sound") | 517 | llsdRequest.asset_type == "sound") |
392 | { | 518 | { |
393 | ScenePresence avatar = null; | 519 | ScenePresence avatar = null; |
394 | IClientAPI client = null; | ||
395 | m_Scene.TryGetScenePresence(m_HostCapsObj.AgentID, out avatar); | 520 | m_Scene.TryGetScenePresence(m_HostCapsObj.AgentID, out avatar); |
396 | 521 | ||
397 | // check user level | 522 | // check user level |
398 | if (avatar != null) | 523 | if (avatar != null) |
399 | { | 524 | { |
400 | client = avatar.ControllingClient; | ||
401 | |||
402 | if (avatar.UserLevel < m_levelUpload) | 525 | if (avatar.UserLevel < m_levelUpload) |
403 | { | 526 | { |
404 | if (client != null) | 527 | LLSDAssetUploadError resperror = new LLSDAssetUploadError(); |
405 | client.SendAgentAlertMessage("Unable to upload asset. Insufficient permissions.", false); | 528 | resperror.message = "Insufficient permissions to upload"; |
529 | resperror.identifier = UUID.Zero; | ||
406 | 530 | ||
407 | LLSDAssetUploadResponse errorResponse = new LLSDAssetUploadResponse(); | 531 | LLSDAssetUploadResponse errorResponse = new LLSDAssetUploadResponse(); |
408 | errorResponse.uploader = ""; | 532 | errorResponse.uploader = ""; |
409 | errorResponse.state = "error"; | 533 | errorResponse.state = "error"; |
534 | errorResponse.error = resperror; | ||
535 | lock (m_ModelCost) | ||
536 | m_FileAgentInventoryState = FileAgentInventoryState.idle; | ||
410 | return errorResponse; | 537 | return errorResponse; |
411 | } | 538 | } |
412 | } | 539 | } |
413 | 540 | ||
414 | // check funds | 541 | // check test upload and funds |
415 | if (client != null) | 542 | if (client != null) |
416 | { | 543 | { |
417 | IMoneyModule mm = m_Scene.RequestModuleInterface<IMoneyModule>(); | 544 | IMoneyModule mm = m_Scene.RequestModuleInterface<IMoneyModule>(); |
418 | 545 | ||
546 | int baseCost = 0; | ||
419 | if (mm != null) | 547 | if (mm != null) |
548 | baseCost = mm.UploadCharge; | ||
549 | |||
550 | string warning = String.Empty; | ||
551 | |||
552 | if (llsdRequest.asset_type == "mesh") | ||
420 | { | 553 | { |
421 | if (!mm.UploadCovered(client.AgentId, mm.UploadCharge)) | 554 | string error; |
555 | int modelcost; | ||
556 | |||
557 | if (!m_ModelCost.MeshModelCost(llsdRequest.asset_resources, baseCost, out modelcost, | ||
558 | meshcostdata, out error, ref warning)) | ||
422 | { | 559 | { |
423 | client.SendAgentAlertMessage("Unable to upload asset. Insufficient funds.", false); | 560 | LLSDAssetUploadError resperror = new LLSDAssetUploadError(); |
561 | resperror.message = error; | ||
562 | resperror.identifier = UUID.Zero; | ||
424 | 563 | ||
425 | LLSDAssetUploadResponse errorResponse = new LLSDAssetUploadResponse(); | 564 | LLSDAssetUploadResponse errorResponse = new LLSDAssetUploadResponse(); |
426 | errorResponse.uploader = ""; | 565 | errorResponse.uploader = ""; |
427 | errorResponse.state = "error"; | 566 | errorResponse.state = "error"; |
567 | errorResponse.error = resperror; | ||
568 | |||
569 | lock (m_ModelCost) | ||
570 | m_FileAgentInventoryState = FileAgentInventoryState.idle; | ||
428 | return errorResponse; | 571 | return errorResponse; |
429 | } | 572 | } |
573 | cost = modelcost; | ||
574 | } | ||
575 | else | ||
576 | { | ||
577 | cost = baseCost; | ||
578 | } | ||
579 | |||
580 | if (cost > 0 && mm != null) | ||
581 | { | ||
582 | // check for test upload | ||
583 | |||
584 | if (m_ForceFreeTestUpload) // all are test | ||
585 | { | ||
586 | if (!(assetName.Length > 5 && assetName.StartsWith("TEST-"))) // has normal name lets change it | ||
587 | assetName = "TEST-" + assetName; | ||
588 | |||
589 | IsAtestUpload = true; | ||
590 | } | ||
591 | |||
592 | else if (m_enableFreeTestUpload) // only if prefixed with "TEST-" | ||
593 | { | ||
594 | |||
595 | IsAtestUpload = (assetName.Length > 5 && assetName.StartsWith("TEST-")); | ||
596 | } | ||
597 | |||
598 | |||
599 | if(IsAtestUpload) // let user know, still showing cost estimation | ||
600 | warning += "Upload will have no cost, for testing purposes only. Other uses are prohibited. Items will not work after 48 hours or on other regions"; | ||
601 | |||
602 | // check funds | ||
603 | else | ||
604 | { | ||
605 | if (!mm.UploadCovered(client.AgentId, (int)cost)) | ||
606 | { | ||
607 | LLSDAssetUploadError resperror = new LLSDAssetUploadError(); | ||
608 | resperror.message = "Insuficient funds"; | ||
609 | resperror.identifier = UUID.Zero; | ||
610 | |||
611 | LLSDAssetUploadResponse errorResponse = new LLSDAssetUploadResponse(); | ||
612 | errorResponse.uploader = ""; | ||
613 | errorResponse.state = "error"; | ||
614 | errorResponse.error = resperror; | ||
615 | lock (m_ModelCost) | ||
616 | m_FileAgentInventoryState = FileAgentInventoryState.idle; | ||
617 | return errorResponse; | ||
618 | } | ||
619 | } | ||
430 | } | 620 | } |
621 | |||
622 | if (client != null && warning != String.Empty) | ||
623 | client.SendAgentAlertMessage(warning, true); | ||
431 | } | 624 | } |
432 | } | 625 | } |
433 | 626 | ||
434 | string assetName = llsdRequest.name; | ||
435 | string assetDes = llsdRequest.description; | 627 | string assetDes = llsdRequest.description; |
436 | string capsBase = "/CAPS/" + m_HostCapsObj.CapsObjectPath; | 628 | string capsBase = "/CAPS/" + m_HostCapsObj.CapsObjectPath; |
437 | UUID newAsset = UUID.Random(); | 629 | UUID newAsset = UUID.Random(); |
438 | UUID newInvItem = UUID.Random(); | 630 | UUID newInvItem = UUID.Random(); |
439 | UUID parentFolder = llsdRequest.folder_id; | 631 | UUID parentFolder = llsdRequest.folder_id; |
440 | string uploaderPath = Util.RandomClass.Next(5000, 8000).ToString("0000"); | 632 | string uploaderPath = Util.RandomClass.Next(5000, 8000).ToString("0000"); |
633 | UUID texturesFolder = UUID.Zero; | ||
634 | |||
635 | if(!IsAtestUpload && m_enableModelUploadTextureToInventory) | ||
636 | texturesFolder = llsdRequest.texture_folder_id; | ||
441 | 637 | ||
442 | AssetUploader uploader = | 638 | AssetUploader uploader = |
443 | new AssetUploader(assetName, assetDes, newAsset, newInvItem, parentFolder, llsdRequest.inventory_type, | 639 | new AssetUploader(assetName, assetDes, newAsset, newInvItem, parentFolder, llsdRequest.inventory_type, |
444 | llsdRequest.asset_type, capsBase + uploaderPath, m_HostCapsObj.HttpListener, m_dumpAssetsToFile); | 640 | llsdRequest.asset_type, capsBase + uploaderPath, m_HostCapsObj.HttpListener, m_dumpAssetsToFile, cost, |
641 | texturesFolder, nreqtextures, nreqmeshs, nreqinstances, IsAtestUpload); | ||
445 | 642 | ||
446 | m_HostCapsObj.HttpListener.AddStreamHandler( | 643 | m_HostCapsObj.HttpListener.AddStreamHandler( |
447 | new BinaryStreamHandler( | 644 | new BinaryStreamHandler( |
@@ -459,10 +656,22 @@ namespace OpenSim.Region.ClientStack.Linden | |||
459 | string uploaderURL = protocol + m_HostCapsObj.HostName + ":" + m_HostCapsObj.Port.ToString() + capsBase + | 656 | string uploaderURL = protocol + m_HostCapsObj.HostName + ":" + m_HostCapsObj.Port.ToString() + capsBase + |
460 | uploaderPath; | 657 | uploaderPath; |
461 | 658 | ||
659 | |||
462 | LLSDAssetUploadResponse uploadResponse = new LLSDAssetUploadResponse(); | 660 | LLSDAssetUploadResponse uploadResponse = new LLSDAssetUploadResponse(); |
463 | uploadResponse.uploader = uploaderURL; | 661 | uploadResponse.uploader = uploaderURL; |
464 | uploadResponse.state = "upload"; | 662 | uploadResponse.state = "upload"; |
663 | uploadResponse.upload_price = (int)cost; | ||
664 | |||
665 | if (llsdRequest.asset_type == "mesh") | ||
666 | { | ||
667 | uploadResponse.data = meshcostdata; | ||
668 | } | ||
669 | |||
465 | uploader.OnUpLoad += UploadCompleteHandler; | 670 | uploader.OnUpLoad += UploadCompleteHandler; |
671 | |||
672 | lock (m_ModelCost) | ||
673 | m_FileAgentInventoryState = FileAgentInventoryState.waitUpload; | ||
674 | |||
466 | return uploadResponse; | 675 | return uploadResponse; |
467 | } | 676 | } |
468 | 677 | ||
@@ -474,8 +683,14 @@ namespace OpenSim.Region.ClientStack.Linden | |||
474 | /// <param name="data"></param> | 683 | /// <param name="data"></param> |
475 | public void UploadCompleteHandler(string assetName, string assetDescription, UUID assetID, | 684 | public void UploadCompleteHandler(string assetName, string assetDescription, UUID assetID, |
476 | UUID inventoryItem, UUID parentFolder, byte[] data, string inventoryType, | 685 | UUID inventoryItem, UUID parentFolder, byte[] data, string inventoryType, |
477 | string assetType) | 686 | string assetType, int cost, |
687 | UUID texturesFolder, int nreqtextures, int nreqmeshs, int nreqinstances, | ||
688 | bool IsAtestUpload, ref string error) | ||
478 | { | 689 | { |
690 | |||
691 | lock (m_ModelCost) | ||
692 | m_FileAgentInventoryState = FileAgentInventoryState.processUpload; | ||
693 | |||
479 | m_log.DebugFormat( | 694 | m_log.DebugFormat( |
480 | "[BUNCH OF CAPS]: Uploaded asset {0} for inventory item {1}, inv type {2}, asset type {3}", | 695 | "[BUNCH OF CAPS]: Uploaded asset {0} for inventory item {1}, inv type {2}, asset type {3}", |
481 | assetID, inventoryItem, inventoryType, assetType); | 696 | assetID, inventoryItem, inventoryType, assetType); |
@@ -483,117 +698,247 @@ namespace OpenSim.Region.ClientStack.Linden | |||
483 | sbyte assType = 0; | 698 | sbyte assType = 0; |
484 | sbyte inType = 0; | 699 | sbyte inType = 0; |
485 | 700 | ||
701 | IClientAPI client = null; | ||
702 | |||
703 | UUID owner_id = m_HostCapsObj.AgentID; | ||
704 | UUID creatorID; | ||
705 | |||
706 | bool istest = IsAtestUpload && m_enableFreeTestUpload && (cost > 0); | ||
707 | |||
708 | bool restrictPerms = m_RestrictFreeTestUploadPerms && istest; | ||
709 | |||
710 | if (istest && m_testAssetsCreatorID != UUID.Zero) | ||
711 | creatorID = m_testAssetsCreatorID; | ||
712 | else | ||
713 | creatorID = owner_id; | ||
714 | |||
715 | string creatorIDstr = creatorID.ToString(); | ||
716 | |||
717 | IMoneyModule mm = m_Scene.RequestModuleInterface<IMoneyModule>(); | ||
718 | if (mm != null) | ||
719 | { | ||
720 | // make sure client still has enougth credit | ||
721 | if (!mm.UploadCovered(m_HostCapsObj.AgentID, (int)cost)) | ||
722 | { | ||
723 | error = "Insufficient funds."; | ||
724 | return; | ||
725 | } | ||
726 | } | ||
727 | |||
728 | // strings to types | ||
486 | if (inventoryType == "sound") | 729 | if (inventoryType == "sound") |
487 | { | 730 | { |
488 | inType = 1; | 731 | inType = (sbyte)InventoryType.Sound; |
489 | assType = 1; | 732 | assType = (sbyte)AssetType.Sound; |
490 | } | 733 | } |
491 | else if (inventoryType == "animation") | 734 | else if (inventoryType == "animation") |
492 | { | 735 | { |
493 | inType = 19; | 736 | inType = (sbyte)InventoryType.Animation; |
494 | assType = 20; | 737 | assType = (sbyte)AssetType.Animation; |
495 | } | 738 | } |
496 | else if (inventoryType == "wearable") | 739 | else if (inventoryType == "wearable") |
497 | { | 740 | { |
498 | inType = 18; | 741 | inType = (sbyte)InventoryType.Wearable; |
499 | switch (assetType) | 742 | switch (assetType) |
500 | { | 743 | { |
501 | case "bodypart": | 744 | case "bodypart": |
502 | assType = 13; | 745 | assType = (sbyte)AssetType.Bodypart; |
503 | break; | 746 | break; |
504 | case "clothing": | 747 | case "clothing": |
505 | assType = 5; | 748 | assType = (sbyte)AssetType.Clothing; |
506 | break; | 749 | break; |
507 | } | 750 | } |
508 | } | 751 | } |
509 | else if (inventoryType == "object") | 752 | else if (inventoryType == "object") |
510 | { | 753 | { |
511 | inType = (sbyte)InventoryType.Object; | 754 | if (assetType == "mesh") // this code for now is for mesh models uploads only |
512 | assType = (sbyte)AssetType.Object; | ||
513 | |||
514 | List<Vector3> positions = new List<Vector3>(); | ||
515 | List<Quaternion> rotations = new List<Quaternion>(); | ||
516 | OSDMap request = (OSDMap)OSDParser.DeserializeLLSDXml(data); | ||
517 | OSDArray instance_list = (OSDArray)request["instance_list"]; | ||
518 | OSDArray mesh_list = (OSDArray)request["mesh_list"]; | ||
519 | OSDArray texture_list = (OSDArray)request["texture_list"]; | ||
520 | SceneObjectGroup grp = null; | ||
521 | |||
522 | List<UUID> textures = new List<UUID>(); | ||
523 | for (int i = 0; i < texture_list.Count; i++) | ||
524 | { | 755 | { |
525 | AssetBase textureAsset = new AssetBase(UUID.Random(), assetName, (sbyte)AssetType.Texture, ""); | 756 | inType = (sbyte)InventoryType.Object; |
526 | textureAsset.Data = texture_list[i].AsBinary(); | 757 | assType = (sbyte)AssetType.Object; |
527 | m_assetService.Store(textureAsset); | ||
528 | textures.Add(textureAsset.FullID); | ||
529 | } | ||
530 | 758 | ||
531 | for (int i = 0; i < mesh_list.Count; i++) | 759 | List<Vector3> positions = new List<Vector3>(); |
532 | { | 760 | List<Quaternion> rotations = new List<Quaternion>(); |
533 | PrimitiveBaseShape pbs = PrimitiveBaseShape.CreateBox(); | 761 | OSDMap request = (OSDMap)OSDParser.DeserializeLLSDXml(data); |
762 | |||
763 | // compare and get updated information | ||
534 | 764 | ||
535 | Primitive.TextureEntry textureEntry | 765 | bool mismatchError = true; |
536 | = new Primitive.TextureEntry(Primitive.TextureEntry.WHITE_TEXTURE); | ||
537 | OSDMap inner_instance_list = (OSDMap)instance_list[i]; | ||
538 | 766 | ||
539 | OSDArray face_list = (OSDArray)inner_instance_list["face_list"]; | 767 | while (mismatchError) |
540 | for (uint face = 0; face < face_list.Count; face++) | ||
541 | { | 768 | { |
542 | OSDMap faceMap = (OSDMap)face_list[(int)face]; | 769 | mismatchError = false; |
543 | Primitive.TextureEntryFace f = pbs.Textures.CreateFace(face); | 770 | } |
544 | if(faceMap.ContainsKey("fullbright")) | ||
545 | f.Fullbright = faceMap["fullbright"].AsBoolean(); | ||
546 | if (faceMap.ContainsKey ("diffuse_color")) | ||
547 | f.RGBA = faceMap["diffuse_color"].AsColor4(); | ||
548 | 771 | ||
549 | int textureNum = faceMap["image"].AsInteger(); | 772 | if (mismatchError) |
550 | float imagerot = faceMap["imagerot"].AsInteger(); | 773 | { |
551 | float offsets = (float)faceMap["offsets"].AsReal(); | 774 | error = "Upload and fee estimation information don't match"; |
552 | float offsett = (float)faceMap["offsett"].AsReal(); | 775 | lock (m_ModelCost) |
553 | float scales = (float)faceMap["scales"].AsReal(); | 776 | m_FileAgentInventoryState = FileAgentInventoryState.idle; |
554 | float scalet = (float)faceMap["scalet"].AsReal(); | ||
555 | 777 | ||
556 | if(imagerot != 0) | 778 | return; |
557 | f.Rotation = imagerot; | 779 | } |
558 | 780 | ||
559 | if(offsets != 0) | 781 | OSDArray instance_list = (OSDArray)request["instance_list"]; |
560 | f.OffsetU = offsets; | 782 | OSDArray mesh_list = (OSDArray)request["mesh_list"]; |
783 | OSDArray texture_list = (OSDArray)request["texture_list"]; | ||
784 | SceneObjectGroup grp = null; | ||
561 | 785 | ||
562 | if (offsett != 0) | 786 | // create and store texture assets |
563 | f.OffsetV = offsett; | 787 | bool doTextInv = (!istest && m_enableModelUploadTextureToInventory && |
788 | texturesFolder != UUID.Zero); | ||
564 | 789 | ||
565 | if (scales != 0) | ||
566 | f.RepeatU = scales; | ||
567 | 790 | ||
568 | if (scalet != 0) | 791 | List<UUID> textures = new List<UUID>(); |
569 | f.RepeatV = scalet; | ||
570 | 792 | ||
571 | if (textures.Count > textureNum) | 793 | |
572 | f.TextureID = textures[textureNum]; | 794 | if (doTextInv) |
573 | else | 795 | m_Scene.TryGetClient(m_HostCapsObj.AgentID, out client); |
574 | f.TextureID = Primitive.TextureEntry.WHITE_TEXTURE; | 796 | |
797 | if(client == null) // don't put textures in inventory if there is no client | ||
798 | doTextInv = false; | ||
575 | 799 | ||
576 | textureEntry.FaceTextures[face] = f; | 800 | for (int i = 0; i < texture_list.Count; i++) |
801 | { | ||
802 | AssetBase textureAsset = new AssetBase(UUID.Random(), assetName, (sbyte)AssetType.Texture, creatorIDstr); | ||
803 | textureAsset.Data = texture_list[i].AsBinary(); | ||
804 | if (istest) | ||
805 | textureAsset.Local = true; | ||
806 | m_assetService.Store(textureAsset); | ||
807 | textures.Add(textureAsset.FullID); | ||
808 | |||
809 | if (doTextInv) | ||
810 | { | ||
811 | string name = assetName; | ||
812 | if (name.Length > 25) | ||
813 | name = name.Substring(0, 24); | ||
814 | name += "_Texture#" + i.ToString(); | ||
815 | InventoryItemBase texitem = new InventoryItemBase(); | ||
816 | texitem.Owner = m_HostCapsObj.AgentID; | ||
817 | texitem.CreatorId = creatorIDstr; | ||
818 | texitem.CreatorData = String.Empty; | ||
819 | texitem.ID = UUID.Random(); | ||
820 | texitem.AssetID = textureAsset.FullID; | ||
821 | texitem.Description = "mesh model texture"; | ||
822 | texitem.Name = name; | ||
823 | texitem.AssetType = (int)AssetType.Texture; | ||
824 | texitem.InvType = (int)InventoryType.Texture; | ||
825 | texitem.Folder = texturesFolder; | ||
826 | |||
827 | texitem.CurrentPermissions | ||
828 | = (uint)(PermissionMask.Move | PermissionMask.Copy | PermissionMask.Modify | PermissionMask.Transfer); | ||
829 | |||
830 | texitem.BasePermissions = (uint)PermissionMask.All; | ||
831 | texitem.EveryOnePermissions = 0; | ||
832 | texitem.NextPermissions = (uint)PermissionMask.All; | ||
833 | texitem.CreationDate = Util.UnixTimeSinceEpoch(); | ||
834 | |||
835 | m_Scene.AddInventoryItem(client, texitem); | ||
836 | texitem = null; | ||
837 | } | ||
838 | } | ||
839 | |||
840 | // create and store meshs assets | ||
841 | List<UUID> meshAssets = new List<UUID>(); | ||
842 | for (int i = 0; i < mesh_list.Count; i++) | ||
843 | { | ||
844 | AssetBase meshAsset = new AssetBase(UUID.Random(), assetName, (sbyte)AssetType.Mesh, creatorIDstr); | ||
845 | meshAsset.Data = mesh_list[i].AsBinary(); | ||
846 | if (istest) | ||
847 | meshAsset.Local = true; | ||
848 | m_assetService.Store(meshAsset); | ||
849 | meshAssets.Add(meshAsset.FullID); | ||
577 | } | 850 | } |
578 | 851 | ||
579 | pbs.TextureEntry = textureEntry.GetBytes(); | 852 | int skipedMeshs = 0; |
853 | // build prims from instances | ||
854 | for (int i = 0; i < instance_list.Count; i++) | ||
855 | { | ||
856 | OSDMap inner_instance_list = (OSDMap)instance_list[i]; | ||
857 | |||
858 | // skip prims that are 2 small | ||
859 | Vector3 scale = inner_instance_list["scale"].AsVector3(); | ||
860 | |||
861 | if (scale.X < m_PrimScaleMin || scale.Y < m_PrimScaleMin || scale.Z < m_PrimScaleMin) | ||
862 | { | ||
863 | skipedMeshs++; | ||
864 | continue; | ||
865 | } | ||
866 | |||
867 | PrimitiveBaseShape pbs = PrimitiveBaseShape.CreateBox(); | ||
868 | |||
869 | Primitive.TextureEntry textureEntry | ||
870 | = new Primitive.TextureEntry(Primitive.TextureEntry.WHITE_TEXTURE); | ||
871 | |||
872 | |||
873 | OSDArray face_list = (OSDArray)inner_instance_list["face_list"]; | ||
874 | for (uint face = 0; face < face_list.Count; face++) | ||
875 | { | ||
876 | OSDMap faceMap = (OSDMap)face_list[(int)face]; | ||
877 | Primitive.TextureEntryFace f = pbs.Textures.CreateFace(face); | ||
878 | if (faceMap.ContainsKey("fullbright")) | ||
879 | f.Fullbright = faceMap["fullbright"].AsBoolean(); | ||
880 | if (faceMap.ContainsKey("diffuse_color")) | ||
881 | f.RGBA = faceMap["diffuse_color"].AsColor4(); | ||
882 | |||
883 | int textureNum = faceMap["image"].AsInteger(); | ||
884 | float imagerot = faceMap["imagerot"].AsInteger(); | ||
885 | float offsets = (float)faceMap["offsets"].AsReal(); | ||
886 | float offsett = (float)faceMap["offsett"].AsReal(); | ||
887 | float scales = (float)faceMap["scales"].AsReal(); | ||
888 | float scalet = (float)faceMap["scalet"].AsReal(); | ||
889 | |||
890 | if (imagerot != 0) | ||
891 | f.Rotation = imagerot; | ||
892 | |||
893 | if (offsets != 0) | ||
894 | f.OffsetU = offsets; | ||
580 | 895 | ||
581 | AssetBase meshAsset = new AssetBase(UUID.Random(), assetName, (sbyte)AssetType.Mesh, ""); | 896 | if (offsett != 0) |
582 | meshAsset.Data = mesh_list[i].AsBinary(); | 897 | f.OffsetV = offsett; |
583 | m_assetService.Store(meshAsset); | ||
584 | 898 | ||
585 | pbs.SculptEntry = true; | 899 | if (scales != 0) |
586 | pbs.SculptTexture = meshAsset.FullID; | 900 | f.RepeatU = scales; |
587 | pbs.SculptType = (byte)SculptType.Mesh; | 901 | |
588 | pbs.SculptData = meshAsset.Data; | 902 | if (scalet != 0) |
903 | f.RepeatV = scalet; | ||
904 | |||
905 | if (textures.Count > textureNum) | ||
906 | f.TextureID = textures[textureNum]; | ||
907 | else | ||
908 | f.TextureID = Primitive.TextureEntry.WHITE_TEXTURE; | ||
909 | |||
910 | textureEntry.FaceTextures[face] = f; | ||
911 | } | ||
589 | 912 | ||
590 | Vector3 position = inner_instance_list["position"].AsVector3(); | 913 | pbs.TextureEntry = textureEntry.GetBytes(); |
591 | Vector3 scale = inner_instance_list["scale"].AsVector3(); | 914 | |
592 | Quaternion rotation = inner_instance_list["rotation"].AsQuaternion(); | 915 | bool hasmesh = false; |
916 | if (inner_instance_list.ContainsKey("mesh")) // seems to happen always but ... | ||
917 | { | ||
918 | int meshindx = inner_instance_list["mesh"].AsInteger(); | ||
919 | if (meshAssets.Count > meshindx) | ||
920 | { | ||
921 | pbs.SculptEntry = true; | ||
922 | pbs.SculptType = (byte)SculptType.Mesh; | ||
923 | pbs.SculptTexture = meshAssets[meshindx]; // actual asset UUID after meshs suport introduction | ||
924 | // data will be requested from asset on rez (i hope) | ||
925 | hasmesh = true; | ||
926 | } | ||
927 | } | ||
928 | |||
929 | Vector3 position = inner_instance_list["position"].AsVector3(); | ||
930 | Quaternion rotation = inner_instance_list["rotation"].AsQuaternion(); | ||
931 | |||
932 | // for now viwers do send fixed defaults | ||
933 | // but this may change | ||
934 | // int physicsShapeType = inner_instance_list["physics_shape_type"].AsInteger(); | ||
935 | byte physicsShapeType = (byte)PhysShapeType.prim; // default for mesh is simple convex | ||
936 | if(hasmesh) | ||
937 | physicsShapeType = (byte) PhysShapeType.convex; // default for mesh is simple convex | ||
938 | // int material = inner_instance_list["material"].AsInteger(); | ||
939 | byte material = (byte)Material.Wood; | ||
593 | 940 | ||
594 | // no longer used - begin ------------------------ | 941 | // no longer used - begin ------------------------ |
595 | // int physicsShapeType = inner_instance_list["physics_shape_type"].AsInteger(); | ||
596 | // int material = inner_instance_list["material"].AsInteger(); | ||
597 | // int mesh = inner_instance_list["mesh"].AsInteger(); | 942 | // int mesh = inner_instance_list["mesh"].AsInteger(); |
598 | 943 | ||
599 | // OSDMap permissions = (OSDMap)inner_instance_list["permissions"]; | 944 | // OSDMap permissions = (OSDMap)inner_instance_list["permissions"]; |
@@ -608,24 +953,42 @@ namespace OpenSim.Region.ClientStack.Linden | |||
608 | // UUID owner_id = permissions["owner_id"].AsUUID(); | 953 | // UUID owner_id = permissions["owner_id"].AsUUID(); |
609 | // int owner_mask = permissions["owner_mask"].AsInteger(); | 954 | // int owner_mask = permissions["owner_mask"].AsInteger(); |
610 | // no longer used - end ------------------------ | 955 | // no longer used - end ------------------------ |
956 | |||
957 | |||
958 | SceneObjectPart prim | ||
959 | = new SceneObjectPart(owner_id, pbs, position, Quaternion.Identity, Vector3.Zero); | ||
960 | |||
961 | prim.Scale = scale; | ||
962 | rotations.Add(rotation); | ||
963 | positions.Add(position); | ||
964 | prim.UUID = UUID.Random(); | ||
965 | prim.CreatorID = creatorID; | ||
966 | prim.OwnerID = owner_id; | ||
967 | prim.GroupID = UUID.Zero; | ||
968 | prim.LastOwnerID = creatorID; | ||
969 | prim.CreationDate = Util.UnixTimeSinceEpoch(); | ||
970 | |||
971 | if (grp == null) | ||
972 | prim.Name = assetName; | ||
973 | else | ||
974 | prim.Name = assetName + "#" + i.ToString(); | ||
611 | 975 | ||
612 | UUID owner_id = m_HostCapsObj.AgentID; | 976 | if (restrictPerms) |
977 | { | ||
978 | prim.BaseMask = (uint)(PermissionMask.Move | PermissionMask.Modify); | ||
979 | prim.EveryoneMask = 0; | ||
980 | prim.GroupMask = 0; | ||
981 | prim.NextOwnerMask = 0; | ||
982 | prim.OwnerMask = (uint)(PermissionMask.Move | PermissionMask.Modify); | ||
983 | } | ||
613 | 984 | ||
614 | SceneObjectPart prim | 985 | if(istest) |
615 | = new SceneObjectPart(owner_id, pbs, position, Quaternion.Identity, Vector3.Zero); | 986 | prim.Description = "For testing only. Other uses are prohibited"; |
987 | else | ||
988 | prim.Description = ""; | ||
616 | 989 | ||
617 | prim.Scale = scale; | 990 | prim.Material = material; |
618 | prim.OffsetPosition = position; | 991 | prim.PhysicsShapeType = physicsShapeType; |
619 | rotations.Add(rotation); | ||
620 | positions.Add(position); | ||
621 | prim.UUID = UUID.Random(); | ||
622 | prim.CreatorID = owner_id; | ||
623 | prim.OwnerID = owner_id; | ||
624 | prim.GroupID = UUID.Zero; | ||
625 | prim.LastOwnerID = prim.OwnerID; | ||
626 | prim.CreationDate = Util.UnixTimeSinceEpoch(); | ||
627 | prim.Name = assetName; | ||
628 | prim.Description = ""; | ||
629 | 992 | ||
630 | // prim.BaseMask = (uint)base_mask; | 993 | // prim.BaseMask = (uint)base_mask; |
631 | // prim.EveryoneMask = (uint)everyone_mask; | 994 | // prim.EveryoneMask = (uint)everyone_mask; |
@@ -633,37 +996,64 @@ namespace OpenSim.Region.ClientStack.Linden | |||
633 | // prim.NextOwnerMask = (uint)next_owner_mask; | 996 | // prim.NextOwnerMask = (uint)next_owner_mask; |
634 | // prim.OwnerMask = (uint)owner_mask; | 997 | // prim.OwnerMask = (uint)owner_mask; |
635 | 998 | ||
636 | if (grp == null) | 999 | if (grp == null) |
637 | grp = new SceneObjectGroup(prim); | 1000 | { |
638 | else | 1001 | grp = new SceneObjectGroup(prim); |
639 | grp.AddPart(prim); | 1002 | grp.LastOwnerID = creatorID; |
640 | } | 1003 | } |
1004 | else | ||
1005 | grp.AddPart(prim); | ||
1006 | } | ||
641 | 1007 | ||
642 | // Fix first link number | 1008 | Vector3 rootPos = positions[0]; |
643 | if (grp.Parts.Length > 1) | ||
644 | grp.RootPart.LinkNum++; | ||
645 | 1009 | ||
646 | Vector3 rootPos = positions[0]; | 1010 | if (grp.Parts.Length > 1) |
647 | grp.AbsolutePosition = rootPos; | 1011 | { |
648 | for (int i = 0; i < positions.Count; i++) | 1012 | // Fix first link number |
649 | { | 1013 | grp.RootPart.LinkNum++; |
650 | Vector3 offset = positions[i] - rootPos; | 1014 | |
651 | grp.Parts[i].OffsetPosition = offset; | 1015 | Quaternion rootRotConj = Quaternion.Conjugate(rotations[0]); |
1016 | Quaternion tmprot; | ||
1017 | Vector3 offset; | ||
1018 | |||
1019 | // fix children rotations and positions | ||
1020 | for (int i = 1; i < rotations.Count; i++) | ||
1021 | { | ||
1022 | tmprot = rotations[i]; | ||
1023 | tmprot = rootRotConj * tmprot; | ||
1024 | |||
1025 | grp.Parts[i].RotationOffset = tmprot; | ||
1026 | |||
1027 | offset = positions[i] - rootPos; | ||
1028 | |||
1029 | offset *= rootRotConj; | ||
1030 | grp.Parts[i].OffsetPosition = offset; | ||
1031 | } | ||
1032 | |||
1033 | grp.AbsolutePosition = rootPos; | ||
1034 | grp.UpdateGroupRotationR(rotations[0]); | ||
1035 | } | ||
1036 | else | ||
1037 | { | ||
1038 | grp.AbsolutePosition = rootPos; | ||
1039 | grp.UpdateGroupRotationR(rotations[0]); | ||
1040 | } | ||
1041 | |||
1042 | data = ASCIIEncoding.ASCII.GetBytes(SceneObjectSerializer.ToOriginalXmlFormat(grp)); | ||
652 | } | 1043 | } |
653 | 1044 | ||
654 | for (int i = 0; i < rotations.Count; i++) | 1045 | else // not a mesh model |
655 | { | 1046 | { |
656 | if (i != 0) | 1047 | m_log.ErrorFormat("[CAPS Asset Upload] got unsuported assetType for object upload"); |
657 | grp.Parts[i].RotationOffset = rotations[i]; | 1048 | return; |
658 | } | 1049 | } |
659 | |||
660 | grp.UpdateGroupRotationR(rotations[0]); | ||
661 | data = ASCIIEncoding.ASCII.GetBytes(SceneObjectSerializer.ToOriginalXmlFormat(grp)); | ||
662 | } | 1050 | } |
663 | 1051 | ||
664 | AssetBase asset; | 1052 | AssetBase asset; |
665 | asset = new AssetBase(assetID, assetName, assType, m_HostCapsObj.AgentID.ToString()); | 1053 | asset = new AssetBase(assetID, assetName, assType, creatorIDstr); |
666 | asset.Data = data; | 1054 | asset.Data = data; |
1055 | if (istest) | ||
1056 | asset.Local = true; | ||
667 | if (AddNewAsset != null) | 1057 | if (AddNewAsset != null) |
668 | AddNewAsset(asset); | 1058 | AddNewAsset(asset); |
669 | else if (m_assetService != null) | 1059 | else if (m_assetService != null) |
@@ -671,11 +1061,17 @@ namespace OpenSim.Region.ClientStack.Linden | |||
671 | 1061 | ||
672 | InventoryItemBase item = new InventoryItemBase(); | 1062 | InventoryItemBase item = new InventoryItemBase(); |
673 | item.Owner = m_HostCapsObj.AgentID; | 1063 | item.Owner = m_HostCapsObj.AgentID; |
674 | item.CreatorId = m_HostCapsObj.AgentID.ToString(); | 1064 | item.CreatorId = creatorIDstr; |
675 | item.CreatorData = String.Empty; | 1065 | item.CreatorData = String.Empty; |
676 | item.ID = inventoryItem; | 1066 | item.ID = inventoryItem; |
677 | item.AssetID = asset.FullID; | 1067 | item.AssetID = asset.FullID; |
678 | item.Description = assetDescription; | 1068 | if (istest) |
1069 | { | ||
1070 | item.Description = "For testing only. Other uses are prohibited"; | ||
1071 | item.Flags = (uint) (InventoryItemFlags.SharedSingleReference); | ||
1072 | } | ||
1073 | else | ||
1074 | item.Description = assetDescription; | ||
679 | item.Name = assetName; | 1075 | item.Name = assetName; |
680 | item.AssetType = assType; | 1076 | item.AssetType = assType; |
681 | item.InvType = inType; | 1077 | item.InvType = inType; |
@@ -683,18 +1079,60 @@ namespace OpenSim.Region.ClientStack.Linden | |||
683 | 1079 | ||
684 | // If we set PermissionMask.All then when we rez the item the next permissions will replace the current | 1080 | // If we set PermissionMask.All then when we rez the item the next permissions will replace the current |
685 | // (owner) permissions. This becomes a problem if next permissions are changed. | 1081 | // (owner) permissions. This becomes a problem if next permissions are changed. |
686 | item.CurrentPermissions | ||
687 | = (uint)(PermissionMask.Move | PermissionMask.Copy | PermissionMask.Modify | PermissionMask.Transfer); | ||
688 | 1082 | ||
689 | item.BasePermissions = (uint)PermissionMask.All; | 1083 | if (restrictPerms) |
690 | item.EveryOnePermissions = 0; | 1084 | { |
691 | item.NextPermissions = (uint)PermissionMask.All; | 1085 | item.CurrentPermissions |
1086 | = (uint)(PermissionMask.Move | PermissionMask.Modify); | ||
1087 | |||
1088 | item.BasePermissions = (uint)(PermissionMask.Move | PermissionMask.Modify); | ||
1089 | item.EveryOnePermissions = 0; | ||
1090 | item.NextPermissions = 0; | ||
1091 | } | ||
1092 | else | ||
1093 | { | ||
1094 | item.CurrentPermissions | ||
1095 | = (uint)(PermissionMask.Move | PermissionMask.Copy | PermissionMask.Modify | PermissionMask.Transfer); | ||
1096 | |||
1097 | item.BasePermissions = (uint)PermissionMask.All; | ||
1098 | item.EveryOnePermissions = 0; | ||
1099 | item.NextPermissions = (uint)PermissionMask.All; | ||
1100 | } | ||
1101 | |||
692 | item.CreationDate = Util.UnixTimeSinceEpoch(); | 1102 | item.CreationDate = Util.UnixTimeSinceEpoch(); |
693 | 1103 | ||
1104 | m_Scene.TryGetClient(m_HostCapsObj.AgentID, out client); | ||
1105 | |||
694 | if (AddNewInventoryItem != null) | 1106 | if (AddNewInventoryItem != null) |
695 | { | 1107 | { |
696 | AddNewInventoryItem(m_HostCapsObj.AgentID, item); | 1108 | if (istest) |
1109 | { | ||
1110 | m_Scene.AddInventoryItem(client, item); | ||
1111 | /* | ||
1112 | AddNewInventoryItem(m_HostCapsObj.AgentID, item, 0); | ||
1113 | if (client != null) | ||
1114 | client.SendAgentAlertMessage("Upload will have no cost, for personal test purposes only. Other uses are forbiden. Items may not work on a another region" , true); | ||
1115 | */ | ||
1116 | } | ||
1117 | else | ||
1118 | { | ||
1119 | AddNewInventoryItem(m_HostCapsObj.AgentID, item, (uint)cost); | ||
1120 | // if (client != null) | ||
1121 | // { | ||
1122 | // // let users see anything.. i don't so far | ||
1123 | // string str; | ||
1124 | // if (cost > 0) | ||
1125 | // // dont remember where is money unit name to put here | ||
1126 | // str = "Upload complete. charged " + cost.ToString() + "$"; | ||
1127 | // else | ||
1128 | // str = "Upload complete"; | ||
1129 | // client.SendAgentAlertMessage(str, true); | ||
1130 | // } | ||
1131 | } | ||
697 | } | 1132 | } |
1133 | |||
1134 | lock (m_ModelCost) | ||
1135 | m_FileAgentInventoryState = FileAgentInventoryState.idle; | ||
698 | } | 1136 | } |
699 | 1137 | ||
700 | /// <summary> | 1138 | /// <summary> |
@@ -855,10 +1293,159 @@ namespace OpenSim.Region.ClientStack.Linden | |||
855 | response["int_response_code"] = 200; | 1293 | response["int_response_code"] = 200; |
856 | return LLSDHelpers.SerialiseLLSDReply(response); | 1294 | return LLSDHelpers.SerialiseLLSDReply(response); |
857 | } | 1295 | } |
1296 | |||
1297 | public string GetObjectPhysicsData(string request, string path, | ||
1298 | string param, IOSHttpRequest httpRequest, | ||
1299 | IOSHttpResponse httpResponse) | ||
1300 | { | ||
1301 | OSDMap req = (OSDMap)OSDParser.DeserializeLLSDXml(request); | ||
1302 | OSDMap resp = new OSDMap(); | ||
1303 | OSDArray object_ids = (OSDArray)req["object_ids"]; | ||
1304 | |||
1305 | for (int i = 0 ; i < object_ids.Count ; i++) | ||
1306 | { | ||
1307 | UUID uuid = object_ids[i].AsUUID(); | ||
1308 | |||
1309 | SceneObjectPart obj = m_Scene.GetSceneObjectPart(uuid); | ||
1310 | if (obj != null) | ||
1311 | { | ||
1312 | OSDMap object_data = new OSDMap(); | ||
1313 | |||
1314 | object_data["PhysicsShapeType"] = obj.PhysicsShapeType; | ||
1315 | object_data["Density"] = obj.Density; | ||
1316 | object_data["Friction"] = obj.Friction; | ||
1317 | object_data["Restitution"] = obj.Bounciness; | ||
1318 | object_data["GravityMultiplier"] = obj.GravityModifier; | ||
1319 | |||
1320 | resp[uuid.ToString()] = object_data; | ||
1321 | } | ||
1322 | } | ||
1323 | |||
1324 | string response = OSDParser.SerializeLLSDXmlString(resp); | ||
1325 | return response; | ||
1326 | } | ||
1327 | |||
1328 | public string GetObjectCost(string request, string path, | ||
1329 | string param, IOSHttpRequest httpRequest, | ||
1330 | IOSHttpResponse httpResponse) | ||
1331 | { | ||
1332 | OSDMap req = (OSDMap)OSDParser.DeserializeLLSDXml(request); | ||
1333 | OSDMap resp = new OSDMap(); | ||
1334 | |||
1335 | OSDArray object_ids = (OSDArray)req["object_ids"]; | ||
1336 | |||
1337 | for (int i = 0; i < object_ids.Count; i++) | ||
1338 | { | ||
1339 | UUID uuid = object_ids[i].AsUUID(); | ||
1340 | |||
1341 | SceneObjectPart part = m_Scene.GetSceneObjectPart(uuid); | ||
1342 | |||
1343 | if (part != null) | ||
1344 | { | ||
1345 | SceneObjectGroup grp = part.ParentGroup; | ||
1346 | if (grp != null) | ||
1347 | { | ||
1348 | float linksetCost; | ||
1349 | float linksetPhysCost; | ||
1350 | float partCost; | ||
1351 | float partPhysCost; | ||
1352 | |||
1353 | grp.GetResourcesCosts(part, out linksetCost, out linksetPhysCost, out partCost, out partPhysCost); | ||
1354 | |||
1355 | OSDMap object_data = new OSDMap(); | ||
1356 | object_data["linked_set_resource_cost"] = linksetCost; | ||
1357 | object_data["resource_cost"] = partCost; | ||
1358 | object_data["physics_cost"] = partPhysCost; | ||
1359 | object_data["linked_set_physics_cost"] = linksetPhysCost; | ||
1360 | |||
1361 | resp[uuid.ToString()] = object_data; | ||
1362 | } | ||
1363 | } | ||
1364 | } | ||
1365 | |||
1366 | string response = OSDParser.SerializeLLSDXmlString(resp); | ||
1367 | return response; | ||
1368 | } | ||
1369 | |||
1370 | public string ResourceCostSelected(string request, string path, | ||
1371 | string param, IOSHttpRequest httpRequest, | ||
1372 | IOSHttpResponse httpResponse) | ||
1373 | { | ||
1374 | OSDMap req = (OSDMap)OSDParser.DeserializeLLSDXml(request); | ||
1375 | OSDMap resp = new OSDMap(); | ||
1376 | |||
1377 | |||
1378 | float phys=0; | ||
1379 | float stream=0; | ||
1380 | float simul=0; | ||
1381 | |||
1382 | if (req.ContainsKey("selected_roots")) | ||
1383 | { | ||
1384 | OSDArray object_ids = (OSDArray)req["selected_roots"]; | ||
1385 | |||
1386 | // should go by SOG suming costs for all parts | ||
1387 | // ll v3 works ok with several objects select we get the list and adds ok | ||
1388 | // FS calls per object so results are wrong guess fs bug | ||
1389 | for (int i = 0; i < object_ids.Count; i++) | ||
1390 | { | ||
1391 | UUID uuid = object_ids[i].AsUUID(); | ||
1392 | float Physc; | ||
1393 | float simulc; | ||
1394 | float streamc; | ||
1395 | |||
1396 | SceneObjectGroup grp = m_Scene.GetGroupByPrim(uuid); | ||
1397 | if (grp != null) | ||
1398 | { | ||
1399 | grp.GetSelectedCosts(out Physc, out streamc, out simulc); | ||
1400 | phys += Physc; | ||
1401 | stream += streamc; | ||
1402 | simul += simulc; | ||
1403 | } | ||
1404 | } | ||
1405 | } | ||
1406 | else if (req.ContainsKey("selected_prims")) | ||
1407 | { | ||
1408 | OSDArray object_ids = (OSDArray)req["selected_prims"]; | ||
1409 | |||
1410 | // don't see in use in any of the 2 viewers | ||
1411 | // guess it should be for edit linked but... nothing | ||
1412 | // should go to SOP per part | ||
1413 | for (int i = 0; i < object_ids.Count; i++) | ||
1414 | { | ||
1415 | UUID uuid = object_ids[i].AsUUID(); | ||
1416 | |||
1417 | SceneObjectPart part = m_Scene.GetSceneObjectPart(uuid); | ||
1418 | if (part != null) | ||
1419 | { | ||
1420 | phys += part.PhysicsCost; | ||
1421 | stream += part.StreamingCost; | ||
1422 | simul += part.SimulationCost; | ||
1423 | } | ||
1424 | } | ||
1425 | } | ||
1426 | |||
1427 | if (simul != 0) | ||
1428 | { | ||
1429 | OSDMap object_data = new OSDMap(); | ||
1430 | |||
1431 | object_data["physics"] = phys; | ||
1432 | object_data["streaming"] = stream; | ||
1433 | object_data["simulation"] = simul; | ||
1434 | |||
1435 | resp["selected"] = object_data; | ||
1436 | } | ||
1437 | |||
1438 | string response = OSDParser.SerializeLLSDXmlString(resp); | ||
1439 | return response; | ||
1440 | } | ||
858 | } | 1441 | } |
859 | 1442 | ||
860 | public class AssetUploader | 1443 | public class AssetUploader |
861 | { | 1444 | { |
1445 | private static readonly ILog m_log = | ||
1446 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
1447 | |||
1448 | |||
862 | public event UpLoadedAsset OnUpLoad; | 1449 | public event UpLoadedAsset OnUpLoad; |
863 | private UpLoadedAsset handlerUpLoad = null; | 1450 | private UpLoadedAsset handlerUpLoad = null; |
864 | 1451 | ||
@@ -873,10 +1460,21 @@ namespace OpenSim.Region.ClientStack.Linden | |||
873 | 1460 | ||
874 | private string m_invType = String.Empty; | 1461 | private string m_invType = String.Empty; |
875 | private string m_assetType = String.Empty; | 1462 | private string m_assetType = String.Empty; |
1463 | private int m_cost; | ||
1464 | private string m_error = String.Empty; | ||
1465 | |||
1466 | private Timer m_timeoutTimer = new Timer(); | ||
1467 | private UUID m_texturesFolder; | ||
1468 | private int m_nreqtextures; | ||
1469 | private int m_nreqmeshs; | ||
1470 | private int m_nreqinstances; | ||
1471 | private bool m_IsAtestUpload; | ||
876 | 1472 | ||
877 | public AssetUploader(string assetName, string description, UUID assetID, UUID inventoryItem, | 1473 | public AssetUploader(string assetName, string description, UUID assetID, UUID inventoryItem, |
878 | UUID parentFolderID, string invType, string assetType, string path, | 1474 | UUID parentFolderID, string invType, string assetType, string path, |
879 | IHttpServer httpServer, bool dumpAssetsToFile) | 1475 | IHttpServer httpServer, bool dumpAssetsToFile, |
1476 | int totalCost, UUID texturesFolder, int nreqtextures, int nreqmeshs, int nreqinstances, | ||
1477 | bool IsAtestUpload) | ||
880 | { | 1478 | { |
881 | m_assetName = assetName; | 1479 | m_assetName = assetName; |
882 | m_assetDes = description; | 1480 | m_assetDes = description; |
@@ -888,6 +1486,18 @@ namespace OpenSim.Region.ClientStack.Linden | |||
888 | m_assetType = assetType; | 1486 | m_assetType = assetType; |
889 | m_invType = invType; | 1487 | m_invType = invType; |
890 | m_dumpAssetsToFile = dumpAssetsToFile; | 1488 | m_dumpAssetsToFile = dumpAssetsToFile; |
1489 | m_cost = totalCost; | ||
1490 | |||
1491 | m_texturesFolder = texturesFolder; | ||
1492 | m_nreqtextures = nreqtextures; | ||
1493 | m_nreqmeshs = nreqmeshs; | ||
1494 | m_nreqinstances = nreqinstances; | ||
1495 | m_IsAtestUpload = IsAtestUpload; | ||
1496 | |||
1497 | m_timeoutTimer.Elapsed += TimedOut; | ||
1498 | m_timeoutTimer.Interval = 120000; | ||
1499 | m_timeoutTimer.AutoReset = false; | ||
1500 | m_timeoutTimer.Start(); | ||
891 | } | 1501 | } |
892 | 1502 | ||
893 | /// <summary> | 1503 | /// <summary> |
@@ -902,12 +1512,14 @@ namespace OpenSim.Region.ClientStack.Linden | |||
902 | UUID inv = inventoryItemID; | 1512 | UUID inv = inventoryItemID; |
903 | string res = String.Empty; | 1513 | string res = String.Empty; |
904 | LLSDAssetUploadComplete uploadComplete = new LLSDAssetUploadComplete(); | 1514 | LLSDAssetUploadComplete uploadComplete = new LLSDAssetUploadComplete(); |
1515 | /* | ||
905 | uploadComplete.new_asset = newAssetID.ToString(); | 1516 | uploadComplete.new_asset = newAssetID.ToString(); |
906 | uploadComplete.new_inventory_item = inv; | 1517 | uploadComplete.new_inventory_item = inv; |
907 | uploadComplete.state = "complete"; | 1518 | uploadComplete.state = "complete"; |
908 | 1519 | ||
909 | res = LLSDHelpers.SerialiseLLSDReply(uploadComplete); | 1520 | res = LLSDHelpers.SerialiseLLSDReply(uploadComplete); |
910 | 1521 | */ | |
1522 | m_timeoutTimer.Stop(); | ||
911 | httpListener.RemoveStreamHandler("POST", uploaderPath); | 1523 | httpListener.RemoveStreamHandler("POST", uploaderPath); |
912 | 1524 | ||
913 | // TODO: probably make this a better set of extensions here | 1525 | // TODO: probably make this a better set of extensions here |
@@ -924,12 +1536,49 @@ namespace OpenSim.Region.ClientStack.Linden | |||
924 | handlerUpLoad = OnUpLoad; | 1536 | handlerUpLoad = OnUpLoad; |
925 | if (handlerUpLoad != null) | 1537 | if (handlerUpLoad != null) |
926 | { | 1538 | { |
927 | handlerUpLoad(m_assetName, m_assetDes, newAssetID, inv, parentFolder, data, m_invType, m_assetType); | 1539 | handlerUpLoad(m_assetName, m_assetDes, newAssetID, inv, parentFolder, data, m_invType, m_assetType, |
1540 | m_cost, m_texturesFolder, m_nreqtextures, m_nreqmeshs, m_nreqinstances, m_IsAtestUpload, ref m_error); | ||
1541 | } | ||
1542 | if (m_IsAtestUpload) | ||
1543 | { | ||
1544 | LLSDAssetUploadError resperror = new LLSDAssetUploadError(); | ||
1545 | resperror.message = "Upload SUCESSEFULL for testing purposes only. Other uses are prohibited. Item will not work after 48 hours or on other regions"; | ||
1546 | resperror.identifier = inv; | ||
1547 | |||
1548 | uploadComplete.error = resperror; | ||
1549 | uploadComplete.state = "Upload4Testing"; | ||
928 | } | 1550 | } |
1551 | else | ||
1552 | { | ||
1553 | if (m_error == String.Empty) | ||
1554 | { | ||
1555 | uploadComplete.new_asset = newAssetID.ToString(); | ||
1556 | uploadComplete.new_inventory_item = inv; | ||
1557 | // if (m_texturesFolder != UUID.Zero) | ||
1558 | // uploadComplete.new_texture_folder_id = m_texturesFolder; | ||
1559 | uploadComplete.state = "complete"; | ||
1560 | } | ||
1561 | else | ||
1562 | { | ||
1563 | LLSDAssetUploadError resperror = new LLSDAssetUploadError(); | ||
1564 | resperror.message = m_error; | ||
1565 | resperror.identifier = inv; | ||
929 | 1566 | ||
1567 | uploadComplete.error = resperror; | ||
1568 | uploadComplete.state = "failed"; | ||
1569 | } | ||
1570 | } | ||
1571 | |||
1572 | res = LLSDHelpers.SerialiseLLSDReply(uploadComplete); | ||
930 | return res; | 1573 | return res; |
931 | } | 1574 | } |
932 | 1575 | ||
1576 | private void TimedOut(object sender, ElapsedEventArgs args) | ||
1577 | { | ||
1578 | m_log.InfoFormat("[CAPS]: Removing URL and handler for timed out mesh upload"); | ||
1579 | httpListener.RemoveStreamHandler("POST", uploaderPath); | ||
1580 | } | ||
1581 | |||
933 | ///Left this in and commented in case there are unforseen issues | 1582 | ///Left this in and commented in case there are unforseen issues |
934 | //private void SaveAssetToFile(string filename, byte[] data) | 1583 | //private void SaveAssetToFile(string filename, byte[] data) |
935 | //{ | 1584 | //{ |
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/MeshCost.cs b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/MeshCost.cs new file mode 100644 index 0000000..4a3fae6 --- /dev/null +++ b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/MeshCost.cs | |||
@@ -0,0 +1,671 @@ | |||
1 | // Proprietary code of Avination Virtual Limited | ||
2 | // (c) 2012 Melanie Thielker, Leal Duarte | ||
3 | // | ||
4 | |||
5 | using System; | ||
6 | using System.IO; | ||
7 | using System.Collections; | ||
8 | using System.Collections.Generic; | ||
9 | using System.Text; | ||
10 | |||
11 | using OpenMetaverse; | ||
12 | using OpenMetaverse.StructuredData; | ||
13 | |||
14 | using OpenSim.Framework; | ||
15 | using OpenSim.Region.Framework; | ||
16 | using OpenSim.Region.Framework.Scenes; | ||
17 | using OpenSim.Framework.Capabilities; | ||
18 | |||
19 | using ComponentAce.Compression.Libs.zlib; | ||
20 | |||
21 | using OSDArray = OpenMetaverse.StructuredData.OSDArray; | ||
22 | using OSDMap = OpenMetaverse.StructuredData.OSDMap; | ||
23 | |||
24 | namespace OpenSim.Region.ClientStack.Linden | ||
25 | { | ||
26 | public struct ModelPrimLimits | ||
27 | { | ||
28 | |||
29 | } | ||
30 | |||
31 | public class ModelCost | ||
32 | { | ||
33 | |||
34 | // upload fee defaults | ||
35 | // fees are normalized to 1.0 | ||
36 | // this parameters scale them to basic cost ( so 1.0 translates to 10 ) | ||
37 | |||
38 | public float ModelMeshCostFactor = 0.0f; // scale total cost relative to basic (excluding textures) | ||
39 | public float ModelTextureCostFactor = 1.0f; // scale textures fee to basic. | ||
40 | public float ModelMinCostFactor = 0.0f; // 0.5f; // minimum total model free excluding textures | ||
41 | |||
42 | // itens costs in normalized values | ||
43 | // ie will be multiplied by basicCost and factors above | ||
44 | public float primCreationCost = 0.002f; // extra cost for each prim creation overhead | ||
45 | // weigthed size to normalized cost | ||
46 | public float bytecost = 1e-5f; | ||
47 | |||
48 | // mesh upload fees based on compressed data sizes | ||
49 | // several data sections are counted more that once | ||
50 | // to promote user optimization | ||
51 | // following parameters control how many extra times they are added | ||
52 | // to global size. | ||
53 | // LOD meshs | ||
54 | const float medSizeWth = 1f; // 2x | ||
55 | const float lowSizeWth = 1.5f; // 2.5x | ||
56 | const float lowestSizeWth = 2f; // 3x | ||
57 | // favor potencially physical optimized meshs versus automatic decomposition | ||
58 | const float physMeshSizeWth = 6f; // counts 7x | ||
59 | const float physHullSizeWth = 8f; // counts 9x | ||
60 | |||
61 | // stream cost area factors | ||
62 | // more or less like SL | ||
63 | const float highLodFactor = 17.36f; | ||
64 | const float midLodFactor = 277.78f; | ||
65 | const float lowLodFactor = 1111.11f; | ||
66 | |||
67 | // physics cost is below, identical to SL, assuming shape type convex | ||
68 | // server cost is below identical to SL assuming non scripted non physical object | ||
69 | |||
70 | // internal | ||
71 | const int bytesPerCoord = 6; // 3 coords, 2 bytes per each | ||
72 | |||
73 | // control prims dimensions | ||
74 | public float PrimScaleMin = 0.001f; | ||
75 | public float NonPhysicalPrimScaleMax = 256f; | ||
76 | public float PhysicalPrimScaleMax = 10f; | ||
77 | public int ObjectLinkedPartsMax = 512; | ||
78 | |||
79 | // storage for a single mesh asset cost parameters | ||
80 | private class ameshCostParam | ||
81 | { | ||
82 | // LOD sizes for size dependent streaming cost | ||
83 | public int highLODSize; | ||
84 | public int medLODSize; | ||
85 | public int lowLODSize; | ||
86 | public int lowestLODSize; | ||
87 | // normalized fee based on compressed data sizes | ||
88 | public float costFee; | ||
89 | // physics cost | ||
90 | public float physicsCost; | ||
91 | } | ||
92 | |||
93 | // calculates a mesh model costs | ||
94 | // returns false on error, with a reason on parameter error | ||
95 | // resources input LLSD request | ||
96 | // basicCost input region assets upload cost | ||
97 | // totalcost returns model total upload fee | ||
98 | // meshcostdata returns detailed costs for viewer | ||
99 | public bool MeshModelCost(LLSDAssetResource resources, int basicCost, out int totalcost, | ||
100 | LLSDAssetUploadResponseData meshcostdata, out string error, ref string warning) | ||
101 | { | ||
102 | totalcost = 0; | ||
103 | error = string.Empty; | ||
104 | |||
105 | if (resources == null || | ||
106 | resources.instance_list == null || | ||
107 | resources.instance_list.Array.Count == 0) | ||
108 | { | ||
109 | error = "missing model information."; | ||
110 | return false; | ||
111 | } | ||
112 | |||
113 | int numberInstances = resources.instance_list.Array.Count; | ||
114 | |||
115 | if( numberInstances > ObjectLinkedPartsMax ) | ||
116 | { | ||
117 | error = "Model whould have more than " + ObjectLinkedPartsMax.ToString() + " linked prims"; | ||
118 | return false; | ||
119 | } | ||
120 | |||
121 | meshcostdata.model_streaming_cost = 0.0; | ||
122 | meshcostdata.simulation_cost = 0.0; | ||
123 | meshcostdata.physics_cost = 0.0; | ||
124 | meshcostdata.resource_cost = 0.0; | ||
125 | |||
126 | meshcostdata.upload_price_breakdown.mesh_instance = 0; | ||
127 | meshcostdata.upload_price_breakdown.mesh_physics = 0; | ||
128 | meshcostdata.upload_price_breakdown.mesh_streaming = 0; | ||
129 | meshcostdata.upload_price_breakdown.model = 0; | ||
130 | |||
131 | int itmp; | ||
132 | |||
133 | // textures cost | ||
134 | if (resources.texture_list != null && resources.texture_list.Array.Count > 0) | ||
135 | { | ||
136 | float textures_cost = (float)(resources.texture_list.Array.Count * basicCost); | ||
137 | textures_cost *= ModelTextureCostFactor; | ||
138 | |||
139 | itmp = (int)(textures_cost + 0.5f); // round | ||
140 | meshcostdata.upload_price_breakdown.texture = itmp; | ||
141 | totalcost += itmp; | ||
142 | } | ||
143 | |||
144 | // meshs assets cost | ||
145 | float meshsfee = 0; | ||
146 | int numberMeshs = 0; | ||
147 | bool haveMeshs = false; | ||
148 | List<ameshCostParam> meshsCosts = new List<ameshCostParam>(); | ||
149 | |||
150 | if (resources.mesh_list != null && resources.mesh_list.Array.Count > 0) | ||
151 | { | ||
152 | numberMeshs = resources.mesh_list.Array.Count; | ||
153 | |||
154 | for (int i = 0; i < numberMeshs; i++) | ||
155 | { | ||
156 | ameshCostParam curCost = new ameshCostParam(); | ||
157 | byte[] data = (byte[])resources.mesh_list.Array[i]; | ||
158 | |||
159 | if (!MeshCost(data, curCost, out error)) | ||
160 | { | ||
161 | return false; | ||
162 | } | ||
163 | meshsCosts.Add(curCost); | ||
164 | meshsfee += curCost.costFee; | ||
165 | } | ||
166 | haveMeshs = true; | ||
167 | } | ||
168 | |||
169 | // instances (prims) cost | ||
170 | |||
171 | |||
172 | int mesh; | ||
173 | int skipedSmall = 0; | ||
174 | for (int i = 0; i < numberInstances; i++) | ||
175 | { | ||
176 | Hashtable inst = (Hashtable)resources.instance_list.Array[i]; | ||
177 | |||
178 | ArrayList ascale = (ArrayList)inst["scale"]; | ||
179 | Vector3 scale; | ||
180 | double tmp; | ||
181 | tmp = (double)ascale[0]; | ||
182 | scale.X = (float)tmp; | ||
183 | tmp = (double)ascale[1]; | ||
184 | scale.Y = (float)tmp; | ||
185 | tmp = (double)ascale[2]; | ||
186 | scale.Z = (float)tmp; | ||
187 | |||
188 | if (scale.X < PrimScaleMin || scale.Y < PrimScaleMin || scale.Z < PrimScaleMin) | ||
189 | { | ||
190 | skipedSmall++; | ||
191 | continue; | ||
192 | } | ||
193 | |||
194 | if (scale.X > NonPhysicalPrimScaleMax || scale.Y > NonPhysicalPrimScaleMax || scale.Z > NonPhysicalPrimScaleMax) | ||
195 | { | ||
196 | error = "Model contains parts with sides larger than " + NonPhysicalPrimScaleMax.ToString() + "m. Please ajust scale"; | ||
197 | return false; | ||
198 | } | ||
199 | |||
200 | if (haveMeshs && inst.ContainsKey("mesh")) | ||
201 | { | ||
202 | mesh = (int)inst["mesh"]; | ||
203 | |||
204 | if (mesh >= numberMeshs) | ||
205 | { | ||
206 | error = "Incoerent model information."; | ||
207 | return false; | ||
208 | } | ||
209 | |||
210 | // streamming cost | ||
211 | |||
212 | float sqdiam = scale.LengthSquared(); | ||
213 | |||
214 | ameshCostParam curCost = meshsCosts[mesh]; | ||
215 | float mesh_streaming = streamingCost(curCost, sqdiam); | ||
216 | |||
217 | meshcostdata.model_streaming_cost += mesh_streaming; | ||
218 | meshcostdata.physics_cost += curCost.physicsCost; | ||
219 | } | ||
220 | else // instance as no mesh ?? | ||
221 | { | ||
222 | // to do later if needed | ||
223 | meshcostdata.model_streaming_cost += 0.5f; | ||
224 | meshcostdata.physics_cost += 1.0f; | ||
225 | } | ||
226 | |||
227 | // assume unscripted and static prim server cost | ||
228 | meshcostdata.simulation_cost += 0.5f; | ||
229 | // charge for prims creation | ||
230 | meshsfee += primCreationCost; | ||
231 | } | ||
232 | |||
233 | if (skipedSmall > 0) | ||
234 | { | ||
235 | if (skipedSmall > numberInstances / 2) | ||
236 | { | ||
237 | error = "Model contains too many prims smaller than " + PrimScaleMin.ToString() + | ||
238 | "m minimum allowed size. Please check scalling"; | ||
239 | return false; | ||
240 | } | ||
241 | else | ||
242 | warning += skipedSmall.ToString() + " of the requested " +numberInstances.ToString() + | ||
243 | " model prims will not upload because they are smaller than " + PrimScaleMin.ToString() + | ||
244 | "m minimum allowed size. Please check scalling "; | ||
245 | } | ||
246 | |||
247 | if (meshcostdata.physics_cost <= meshcostdata.model_streaming_cost) | ||
248 | meshcostdata.resource_cost = meshcostdata.model_streaming_cost; | ||
249 | else | ||
250 | meshcostdata.resource_cost = meshcostdata.physics_cost; | ||
251 | |||
252 | if (meshcostdata.resource_cost < meshcostdata.simulation_cost) | ||
253 | meshcostdata.resource_cost = meshcostdata.simulation_cost; | ||
254 | |||
255 | // scale cost | ||
256 | // at this point a cost of 1.0 whould mean basic cost | ||
257 | meshsfee *= ModelMeshCostFactor; | ||
258 | |||
259 | if (meshsfee < ModelMinCostFactor) | ||
260 | meshsfee = ModelMinCostFactor; | ||
261 | |||
262 | // actually scale it to basic cost | ||
263 | meshsfee *= (float)basicCost; | ||
264 | |||
265 | meshsfee += 0.5f; // rounding | ||
266 | |||
267 | totalcost += (int)meshsfee; | ||
268 | |||
269 | // breakdown prices | ||
270 | // don't seem to be in use so removed code for now | ||
271 | |||
272 | return true; | ||
273 | } | ||
274 | |||
275 | // single mesh asset cost | ||
276 | private bool MeshCost(byte[] data, ameshCostParam cost, out string error) | ||
277 | { | ||
278 | cost.highLODSize = 0; | ||
279 | cost.medLODSize = 0; | ||
280 | cost.lowLODSize = 0; | ||
281 | cost.lowestLODSize = 0; | ||
282 | cost.physicsCost = 0.0f; | ||
283 | cost.costFee = 0.0f; | ||
284 | |||
285 | error = string.Empty; | ||
286 | |||
287 | if (data == null || data.Length == 0) | ||
288 | { | ||
289 | error = "Missing model information."; | ||
290 | return false; | ||
291 | } | ||
292 | |||
293 | OSD meshOsd = null; | ||
294 | int start = 0; | ||
295 | |||
296 | error = "Invalid model data"; | ||
297 | |||
298 | using (MemoryStream ms = new MemoryStream(data)) | ||
299 | { | ||
300 | try | ||
301 | { | ||
302 | OSD osd = OSDParser.DeserializeLLSDBinary(ms); | ||
303 | if (osd is OSDMap) | ||
304 | meshOsd = (OSDMap)osd; | ||
305 | else | ||
306 | return false; | ||
307 | } | ||
308 | catch (Exception e) | ||
309 | { | ||
310 | return false; | ||
311 | } | ||
312 | start = (int)ms.Position; | ||
313 | } | ||
314 | |||
315 | OSDMap map = (OSDMap)meshOsd; | ||
316 | OSDMap tmpmap; | ||
317 | |||
318 | int highlod_size = 0; | ||
319 | int medlod_size = 0; | ||
320 | int lowlod_size = 0; | ||
321 | int lowestlod_size = 0; | ||
322 | int skin_size = 0; | ||
323 | |||
324 | int hulls_size = 0; | ||
325 | int phys_nhulls; | ||
326 | int phys_hullsvertices = 0; | ||
327 | |||
328 | int physmesh_size = 0; | ||
329 | int phys_ntriangles = 0; | ||
330 | |||
331 | int submesh_offset = -1; | ||
332 | |||
333 | if (map.ContainsKey("physics_convex")) | ||
334 | { | ||
335 | tmpmap = (OSDMap)map["physics_convex"]; | ||
336 | if (tmpmap.ContainsKey("offset")) | ||
337 | submesh_offset = tmpmap["offset"].AsInteger() + start; | ||
338 | if (tmpmap.ContainsKey("size")) | ||
339 | hulls_size = tmpmap["size"].AsInteger(); | ||
340 | } | ||
341 | |||
342 | if (submesh_offset < 0 || hulls_size == 0) | ||
343 | { | ||
344 | error = "Missing physics_convex block"; | ||
345 | return false; | ||
346 | } | ||
347 | |||
348 | if (!hulls(data, submesh_offset, hulls_size, out phys_hullsvertices, out phys_nhulls)) | ||
349 | { | ||
350 | error = "Bad physics_convex block"; | ||
351 | return false; | ||
352 | } | ||
353 | |||
354 | submesh_offset = -1; | ||
355 | |||
356 | // only look for LOD meshs sizes | ||
357 | |||
358 | if (map.ContainsKey("high_lod")) | ||
359 | { | ||
360 | tmpmap = (OSDMap)map["high_lod"]; | ||
361 | // see at least if there is a offset for this one | ||
362 | if (tmpmap.ContainsKey("offset")) | ||
363 | submesh_offset = tmpmap["offset"].AsInteger() + start; | ||
364 | if (tmpmap.ContainsKey("size")) | ||
365 | highlod_size = tmpmap["size"].AsInteger(); | ||
366 | } | ||
367 | |||
368 | if (submesh_offset < 0 || highlod_size <= 0) | ||
369 | { | ||
370 | error = "Missing high_lod block"; | ||
371 | return false; | ||
372 | } | ||
373 | |||
374 | bool haveprev = true; | ||
375 | |||
376 | if (map.ContainsKey("medium_lod")) | ||
377 | { | ||
378 | tmpmap = (OSDMap)map["medium_lod"]; | ||
379 | if (tmpmap.ContainsKey("size")) | ||
380 | medlod_size = tmpmap["size"].AsInteger(); | ||
381 | else | ||
382 | haveprev = false; | ||
383 | } | ||
384 | |||
385 | if (haveprev && map.ContainsKey("low_lod")) | ||
386 | { | ||
387 | tmpmap = (OSDMap)map["low_lod"]; | ||
388 | if (tmpmap.ContainsKey("size")) | ||
389 | lowlod_size = tmpmap["size"].AsInteger(); | ||
390 | else | ||
391 | haveprev = false; | ||
392 | } | ||
393 | |||
394 | if (haveprev && map.ContainsKey("lowest_lod")) | ||
395 | { | ||
396 | tmpmap = (OSDMap)map["lowest_lod"]; | ||
397 | if (tmpmap.ContainsKey("size")) | ||
398 | lowestlod_size = tmpmap["size"].AsInteger(); | ||
399 | } | ||
400 | |||
401 | if (map.ContainsKey("skin")) | ||
402 | { | ||
403 | tmpmap = (OSDMap)map["skin"]; | ||
404 | if (tmpmap.ContainsKey("size")) | ||
405 | skin_size = tmpmap["size"].AsInteger(); | ||
406 | } | ||
407 | |||
408 | cost.highLODSize = highlod_size; | ||
409 | cost.medLODSize = medlod_size; | ||
410 | cost.lowLODSize = lowlod_size; | ||
411 | cost.lowestLODSize = lowestlod_size; | ||
412 | |||
413 | submesh_offset = -1; | ||
414 | |||
415 | tmpmap = null; | ||
416 | if(map.ContainsKey("physics_mesh")) | ||
417 | tmpmap = (OSDMap)map["physics_mesh"]; | ||
418 | else if (map.ContainsKey("physics_shape")) // old naming | ||
419 | tmpmap = (OSDMap)map["physics_shape"]; | ||
420 | |||
421 | if(tmpmap != null) | ||
422 | { | ||
423 | if (tmpmap.ContainsKey("offset")) | ||
424 | submesh_offset = tmpmap["offset"].AsInteger() + start; | ||
425 | if (tmpmap.ContainsKey("size")) | ||
426 | physmesh_size = tmpmap["size"].AsInteger(); | ||
427 | |||
428 | if (submesh_offset >= 0 || physmesh_size > 0) | ||
429 | { | ||
430 | |||
431 | if (!submesh(data, submesh_offset, physmesh_size, out phys_ntriangles)) | ||
432 | { | ||
433 | error = "Model data parsing error"; | ||
434 | return false; | ||
435 | } | ||
436 | } | ||
437 | } | ||
438 | |||
439 | // upload is done in convex shape type so only one hull | ||
440 | phys_hullsvertices++; | ||
441 | cost.physicsCost = 0.04f * phys_hullsvertices; | ||
442 | |||
443 | float sfee; | ||
444 | |||
445 | sfee = data.Length; // start with total compressed data size | ||
446 | |||
447 | // penalize lod meshs that should be more builder optimized | ||
448 | sfee += medSizeWth * medlod_size; | ||
449 | sfee += lowSizeWth * lowlod_size; | ||
450 | sfee += lowestSizeWth * lowlod_size; | ||
451 | |||
452 | // physics | ||
453 | // favor potencial optimized meshs versus automatic decomposition | ||
454 | if (physmesh_size != 0) | ||
455 | sfee += physMeshSizeWth * (physmesh_size + hulls_size / 4); // reduce cost of mandatory convex hull | ||
456 | else | ||
457 | sfee += physHullSizeWth * hulls_size; | ||
458 | |||
459 | // bytes to money | ||
460 | sfee *= bytecost; | ||
461 | |||
462 | cost.costFee = sfee; | ||
463 | return true; | ||
464 | } | ||
465 | |||
466 | // parses a LOD or physics mesh component | ||
467 | private bool submesh(byte[] data, int offset, int size, out int ntriangles) | ||
468 | { | ||
469 | ntriangles = 0; | ||
470 | |||
471 | OSD decodedMeshOsd = new OSD(); | ||
472 | byte[] meshBytes = new byte[size]; | ||
473 | System.Buffer.BlockCopy(data, offset, meshBytes, 0, size); | ||
474 | try | ||
475 | { | ||
476 | using (MemoryStream inMs = new MemoryStream(meshBytes)) | ||
477 | { | ||
478 | using (MemoryStream outMs = new MemoryStream()) | ||
479 | { | ||
480 | using (ZOutputStream zOut = new ZOutputStream(outMs)) | ||
481 | { | ||
482 | byte[] readBuffer = new byte[4096]; | ||
483 | int readLen = 0; | ||
484 | while ((readLen = inMs.Read(readBuffer, 0, readBuffer.Length)) > 0) | ||
485 | { | ||
486 | zOut.Write(readBuffer, 0, readLen); | ||
487 | } | ||
488 | zOut.Flush(); | ||
489 | outMs.Seek(0, SeekOrigin.Begin); | ||
490 | |||
491 | byte[] decompressedBuf = outMs.GetBuffer(); | ||
492 | decodedMeshOsd = OSDParser.DeserializeLLSDBinary(decompressedBuf); | ||
493 | } | ||
494 | } | ||
495 | } | ||
496 | } | ||
497 | catch (Exception e) | ||
498 | { | ||
499 | return false; | ||
500 | } | ||
501 | |||
502 | OSDArray decodedMeshOsdArray = null; | ||
503 | if ((!decodedMeshOsd is OSDArray)) | ||
504 | return false; | ||
505 | |||
506 | byte[] dummy; | ||
507 | |||
508 | decodedMeshOsdArray = (OSDArray)decodedMeshOsd; | ||
509 | foreach (OSD subMeshOsd in decodedMeshOsdArray) | ||
510 | { | ||
511 | if (subMeshOsd is OSDMap) | ||
512 | { | ||
513 | OSDMap subtmpmap = (OSDMap)subMeshOsd; | ||
514 | if (subtmpmap.ContainsKey("NoGeometry") && ((OSDBoolean)subtmpmap["NoGeometry"])) | ||
515 | continue; | ||
516 | |||
517 | if (!subtmpmap.ContainsKey("Position")) | ||
518 | return false; | ||
519 | |||
520 | if (subtmpmap.ContainsKey("TriangleList")) | ||
521 | { | ||
522 | dummy = subtmpmap["TriangleList"].AsBinary(); | ||
523 | ntriangles += dummy.Length / bytesPerCoord; | ||
524 | } | ||
525 | else | ||
526 | return false; | ||
527 | } | ||
528 | } | ||
529 | |||
530 | return true; | ||
531 | } | ||
532 | |||
533 | // parses convex hulls component | ||
534 | private bool hulls(byte[] data, int offset, int size, out int nvertices, out int nhulls) | ||
535 | { | ||
536 | nvertices = 0; | ||
537 | nhulls = 1; | ||
538 | |||
539 | OSD decodedMeshOsd = new OSD(); | ||
540 | byte[] meshBytes = new byte[size]; | ||
541 | System.Buffer.BlockCopy(data, offset, meshBytes, 0, size); | ||
542 | try | ||
543 | { | ||
544 | using (MemoryStream inMs = new MemoryStream(meshBytes)) | ||
545 | { | ||
546 | using (MemoryStream outMs = new MemoryStream()) | ||
547 | { | ||
548 | using (ZOutputStream zOut = new ZOutputStream(outMs)) | ||
549 | { | ||
550 | byte[] readBuffer = new byte[4096]; | ||
551 | int readLen = 0; | ||
552 | while ((readLen = inMs.Read(readBuffer, 0, readBuffer.Length)) > 0) | ||
553 | { | ||
554 | zOut.Write(readBuffer, 0, readLen); | ||
555 | } | ||
556 | zOut.Flush(); | ||
557 | outMs.Seek(0, SeekOrigin.Begin); | ||
558 | |||
559 | byte[] decompressedBuf = outMs.GetBuffer(); | ||
560 | decodedMeshOsd = OSDParser.DeserializeLLSDBinary(decompressedBuf); | ||
561 | } | ||
562 | } | ||
563 | } | ||
564 | } | ||
565 | catch (Exception e) | ||
566 | { | ||
567 | return false; | ||
568 | } | ||
569 | |||
570 | OSDMap cmap = (OSDMap)decodedMeshOsd; | ||
571 | if (cmap == null) | ||
572 | return false; | ||
573 | |||
574 | byte[] dummy; | ||
575 | |||
576 | // must have one of this | ||
577 | if (cmap.ContainsKey("BoundingVerts")) | ||
578 | { | ||
579 | dummy = cmap["BoundingVerts"].AsBinary(); | ||
580 | nvertices = dummy.Length / bytesPerCoord; | ||
581 | } | ||
582 | else | ||
583 | return false; | ||
584 | |||
585 | /* upload is done with convex shape type | ||
586 | if (cmap.ContainsKey("HullList")) | ||
587 | { | ||
588 | dummy = cmap["HullList"].AsBinary(); | ||
589 | nhulls += dummy.Length; | ||
590 | } | ||
591 | |||
592 | |||
593 | if (cmap.ContainsKey("Positions")) | ||
594 | { | ||
595 | dummy = cmap["Positions"].AsBinary(); | ||
596 | nvertices = dummy.Length / bytesPerCoord; | ||
597 | } | ||
598 | */ | ||
599 | |||
600 | return true; | ||
601 | } | ||
602 | |||
603 | // returns streaming cost from on mesh LODs sizes in curCost and square of prim size length | ||
604 | private float streamingCost(ameshCostParam curCost, float sqdiam) | ||
605 | { | ||
606 | // compute efective areas | ||
607 | float ma = 262144f; | ||
608 | |||
609 | float mh = sqdiam * highLodFactor; | ||
610 | if (mh > ma) | ||
611 | mh = ma; | ||
612 | float mm = sqdiam * midLodFactor; | ||
613 | if (mm > ma) | ||
614 | mm = ma; | ||
615 | |||
616 | float ml = sqdiam * lowLodFactor; | ||
617 | if (ml > ma) | ||
618 | ml = ma; | ||
619 | |||
620 | float mlst = ma; | ||
621 | |||
622 | mlst -= ml; | ||
623 | ml -= mm; | ||
624 | mm -= mh; | ||
625 | |||
626 | if (mlst < 1.0f) | ||
627 | mlst = 1.0f; | ||
628 | if (ml < 1.0f) | ||
629 | ml = 1.0f; | ||
630 | if (mm < 1.0f) | ||
631 | mm = 1.0f; | ||
632 | if (mh < 1.0f) | ||
633 | mh = 1.0f; | ||
634 | |||
635 | ma = mlst + ml + mm + mh; | ||
636 | |||
637 | // get LODs compressed sizes | ||
638 | // giving 384 bytes bonus | ||
639 | int lst = curCost.lowestLODSize - 384; | ||
640 | int l = curCost.lowLODSize - 384; | ||
641 | int m = curCost.medLODSize - 384; | ||
642 | int h = curCost.highLODSize - 384; | ||
643 | |||
644 | // use previus higher LOD size on missing ones | ||
645 | if (m <= 0) | ||
646 | m = h; | ||
647 | if (l <= 0) | ||
648 | l = m; | ||
649 | if (lst <= 0) | ||
650 | lst = l; | ||
651 | |||
652 | // force minumum sizes | ||
653 | if (lst < 16) | ||
654 | lst = 16; | ||
655 | if (l < 16) | ||
656 | l = 16; | ||
657 | if (m < 16) | ||
658 | m = 16; | ||
659 | if (h < 16) | ||
660 | h = 16; | ||
661 | |||
662 | // compute cost weighted by relative effective areas | ||
663 | float cost = (float)lst * mlst + (float)l * ml + (float)m * mm + (float)h * mh; | ||
664 | cost /= ma; | ||
665 | |||
666 | cost *= 0.004f; // overall tunning parameter | ||
667 | |||
668 | return cost; | ||
669 | } | ||
670 | } | ||
671 | } | ||
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs index 4d2c0f2..986a665 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueGetModule.cs | |||
@@ -353,7 +353,7 @@ namespace OpenSim.Region.ClientStack.Linden | |||
353 | // TODO: Add EventQueueGet name/description for diagnostics | 353 | // TODO: Add EventQueueGet name/description for diagnostics |
354 | MainServer.Instance.AddPollServiceHTTPHandler( | 354 | MainServer.Instance.AddPollServiceHTTPHandler( |
355 | eventQueueGetPath, | 355 | eventQueueGetPath, |
356 | new PollServiceEventArgs(null, HasEvents, GetEvents, NoEvents, agentID)); | 356 | new PollServiceEventArgs(null, HasEvents, GetEvents, NoEvents, agentID, 1000)); |
357 | 357 | ||
358 | // m_log.DebugFormat( | 358 | // m_log.DebugFormat( |
359 | // "[EVENT QUEUE GET MODULE]: Registered EQG handler {0} for {1} in {2}", | 359 | // "[EVENT QUEUE GET MODULE]: Registered EQG handler {0} for {1} in {2}", |
@@ -395,7 +395,7 @@ namespace OpenSim.Region.ClientStack.Linden | |||
395 | } | 395 | } |
396 | } | 396 | } |
397 | 397 | ||
398 | public Hashtable GetEvents(UUID requestID, UUID pAgentId, string request) | 398 | public Hashtable GetEvents(UUID requestID, UUID pAgentId) |
399 | { | 399 | { |
400 | if (DebugLevel >= 2) | 400 | if (DebugLevel >= 2) |
401 | m_log.DebugFormat("POLLED FOR EQ MESSAGES BY {0} in {1}", pAgentId, m_scene.RegionInfo.RegionName); | 401 | m_log.DebugFormat("POLLED FOR EQ MESSAGES BY {0} in {1}", pAgentId, m_scene.RegionInfo.RegionName); |
@@ -807,5 +807,13 @@ namespace OpenSim.Region.ClientStack.Linden | |||
807 | { | 807 | { |
808 | return EventQueueHelper.BuildEvent(eventName, eventBody); | 808 | return EventQueueHelper.BuildEvent(eventName, eventBody); |
809 | } | 809 | } |
810 | |||
811 | public void partPhysicsProperties(uint localID, byte physhapetype, | ||
812 | float density, float friction, float bounce, float gravmod,UUID avatarID) | ||
813 | { | ||
814 | OSD item = EventQueueHelper.partPhysicsProperties(localID, physhapetype, | ||
815 | density, friction, bounce, gravmod); | ||
816 | Enqueue(item, avatarID); | ||
817 | } | ||
810 | } | 818 | } |
811 | } | 819 | } |
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueHelper.cs b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueHelper.cs index 3f49aba..7dcf137 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueHelper.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/EventQueue/EventQueueHelper.cs | |||
@@ -151,6 +151,12 @@ namespace OpenSim.Region.ClientStack.Linden | |||
151 | ulong regionHandle, byte simAccess, IPEndPoint regionExternalEndPoint, | 151 | ulong regionHandle, byte simAccess, IPEndPoint regionExternalEndPoint, |
152 | uint locationID, uint flags, string capsURL, UUID agentID) | 152 | uint locationID, uint flags, string capsURL, UUID agentID) |
153 | { | 153 | { |
154 | // not sure why flags get overwritten here | ||
155 | if ((flags & (uint)TeleportFlags.IsFlying) != 0) | ||
156 | flags = (uint)TeleportFlags.ViaLocation | (uint)TeleportFlags.IsFlying; | ||
157 | else | ||
158 | flags = (uint)TeleportFlags.ViaLocation; | ||
159 | |||
154 | OSDMap info = new OSDMap(); | 160 | OSDMap info = new OSDMap(); |
155 | info.Add("AgentID", OSD.FromUUID(agentID)); | 161 | info.Add("AgentID", OSD.FromUUID(agentID)); |
156 | info.Add("LocationID", OSD.FromInteger(4)); // TODO what is this? | 162 | info.Add("LocationID", OSD.FromInteger(4)); // TODO what is this? |
@@ -159,7 +165,8 @@ namespace OpenSim.Region.ClientStack.Linden | |||
159 | info.Add("SimAccess", OSD.FromInteger(simAccess)); | 165 | info.Add("SimAccess", OSD.FromInteger(simAccess)); |
160 | info.Add("SimIP", OSD.FromBinary(regionExternalEndPoint.Address.GetAddressBytes())); | 166 | info.Add("SimIP", OSD.FromBinary(regionExternalEndPoint.Address.GetAddressBytes())); |
161 | info.Add("SimPort", OSD.FromInteger(regionExternalEndPoint.Port)); | 167 | info.Add("SimPort", OSD.FromInteger(regionExternalEndPoint.Port)); |
162 | info.Add("TeleportFlags", OSD.FromULong(1L << 4)); // AgentManager.TeleportFlags.ViaLocation | 168 | // info.Add("TeleportFlags", OSD.FromULong(1L << 4)); // AgentManager.TeleportFlags.ViaLocation |
169 | info.Add("TeleportFlags", OSD.FromUInteger(flags)); | ||
163 | 170 | ||
164 | OSDArray infoArr = new OSDArray(); | 171 | OSDArray infoArr = new OSDArray(); |
165 | infoArr.Add(info); | 172 | infoArr.Add(info); |
@@ -395,5 +402,25 @@ namespace OpenSim.Region.ClientStack.Linden | |||
395 | return message; | 402 | return message; |
396 | } | 403 | } |
397 | 404 | ||
405 | public static OSD partPhysicsProperties(uint localID, byte physhapetype, | ||
406 | float density, float friction, float bounce, float gravmod) | ||
407 | { | ||
408 | |||
409 | OSDMap physinfo = new OSDMap(6); | ||
410 | physinfo["LocalID"] = localID; | ||
411 | physinfo["Density"] = density; | ||
412 | physinfo["Friction"] = friction; | ||
413 | physinfo["GravityMultiplier"] = gravmod; | ||
414 | physinfo["Restitution"] = bounce; | ||
415 | physinfo["PhysicsShapeType"] = (int)physhapetype; | ||
416 | |||
417 | OSDArray array = new OSDArray(1); | ||
418 | array.Add(physinfo); | ||
419 | |||
420 | OSDMap llsdBody = new OSDMap(1); | ||
421 | llsdBody.Add("ObjectData", array); | ||
422 | |||
423 | return BuildEvent("ObjectPhysicsProperties", llsdBody); | ||
424 | } | ||
398 | } | 425 | } |
399 | } | 426 | } |
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs index 8e1f63a..908f628 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs | |||
@@ -27,11 +27,14 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | ||
30 | using System.Collections.Specialized; | 31 | using System.Collections.Specialized; |
31 | using System.Reflection; | 32 | using System.Reflection; |
32 | using System.IO; | 33 | using System.IO; |
34 | using System.Threading; | ||
33 | using System.Web; | 35 | using System.Web; |
34 | using Mono.Addins; | 36 | using Mono.Addins; |
37 | using OpenSim.Framework.Monitoring; | ||
35 | using log4net; | 38 | using log4net; |
36 | using Nini.Config; | 39 | using Nini.Config; |
37 | using OpenMetaverse; | 40 | using OpenMetaverse; |
@@ -57,9 +60,45 @@ namespace OpenSim.Region.ClientStack.Linden | |||
57 | private IAssetService m_AssetService; | 60 | private IAssetService m_AssetService; |
58 | private bool m_Enabled = true; | 61 | private bool m_Enabled = true; |
59 | private string m_URL; | 62 | private string m_URL; |
63 | |||
64 | struct aPollRequest | ||
65 | { | ||
66 | public PollServiceMeshEventArgs thepoll; | ||
67 | public UUID reqID; | ||
68 | public Hashtable request; | ||
69 | } | ||
70 | |||
71 | public class aPollResponse | ||
72 | { | ||
73 | public Hashtable response; | ||
74 | public int bytes; | ||
75 | public int lod; | ||
76 | } | ||
77 | |||
78 | |||
79 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
80 | |||
81 | private static GetMeshHandler m_getMeshHandler; | ||
82 | |||
83 | private IAssetService m_assetService = null; | ||
84 | |||
85 | private Dictionary<UUID, string> m_capsDict = new Dictionary<UUID, string>(); | ||
86 | private static Thread[] m_workerThreads = null; | ||
87 | |||
88 | private static OpenMetaverse.BlockingQueue<aPollRequest> m_queue = | ||
89 | new OpenMetaverse.BlockingQueue<aPollRequest>(); | ||
90 | |||
91 | private Dictionary<UUID, PollServiceMeshEventArgs> m_pollservices = new Dictionary<UUID, PollServiceMeshEventArgs>(); | ||
60 | 92 | ||
61 | #region Region Module interfaceBase Members | 93 | #region Region Module interfaceBase Members |
62 | 94 | ||
95 | ~GetMeshModule() | ||
96 | { | ||
97 | foreach (Thread t in m_workerThreads) | ||
98 | Watchdog.AbortThread(t.ManagedThreadId); | ||
99 | |||
100 | } | ||
101 | |||
63 | public Type ReplaceableInterface | 102 | public Type ReplaceableInterface |
64 | { | 103 | { |
65 | get { return null; } | 104 | get { return null; } |
@@ -75,6 +114,7 @@ namespace OpenSim.Region.ClientStack.Linden | |||
75 | // Cap doesn't exist | 114 | // Cap doesn't exist |
76 | if (m_URL != string.Empty) | 115 | if (m_URL != string.Empty) |
77 | m_Enabled = true; | 116 | m_Enabled = true; |
117 | |||
78 | } | 118 | } |
79 | 119 | ||
80 | public void AddRegion(Scene pScene) | 120 | public void AddRegion(Scene pScene) |
@@ -83,6 +123,8 @@ namespace OpenSim.Region.ClientStack.Linden | |||
83 | return; | 123 | return; |
84 | 124 | ||
85 | m_scene = pScene; | 125 | m_scene = pScene; |
126 | |||
127 | m_assetService = pScene.AssetService; | ||
86 | } | 128 | } |
87 | 129 | ||
88 | public void RemoveRegion(Scene scene) | 130 | public void RemoveRegion(Scene scene) |
@@ -91,6 +133,9 @@ namespace OpenSim.Region.ClientStack.Linden | |||
91 | return; | 133 | return; |
92 | 134 | ||
93 | m_scene.EventManager.OnRegisterCaps -= RegisterCaps; | 135 | m_scene.EventManager.OnRegisterCaps -= RegisterCaps; |
136 | m_scene.EventManager.OnDeregisterCaps -= DeregisterCaps; | ||
137 | m_scene.EventManager.OnThrottleUpdate -= ThrottleUpdate; | ||
138 | |||
94 | m_scene = null; | 139 | m_scene = null; |
95 | } | 140 | } |
96 | 141 | ||
@@ -101,6 +146,27 @@ namespace OpenSim.Region.ClientStack.Linden | |||
101 | 146 | ||
102 | m_AssetService = m_scene.RequestModuleInterface<IAssetService>(); | 147 | m_AssetService = m_scene.RequestModuleInterface<IAssetService>(); |
103 | m_scene.EventManager.OnRegisterCaps += RegisterCaps; | 148 | m_scene.EventManager.OnRegisterCaps += RegisterCaps; |
149 | // We'll reuse the same handler for all requests. | ||
150 | m_getMeshHandler = new GetMeshHandler(m_assetService); | ||
151 | m_scene.EventManager.OnDeregisterCaps += DeregisterCaps; | ||
152 | m_scene.EventManager.OnThrottleUpdate += ThrottleUpdate; | ||
153 | |||
154 | if (m_workerThreads == null) | ||
155 | { | ||
156 | m_workerThreads = new Thread[2]; | ||
157 | |||
158 | for (uint i = 0; i < 2; i++) | ||
159 | { | ||
160 | m_workerThreads[i] = Watchdog.StartThread(DoMeshRequests, | ||
161 | String.Format("MeshWorkerThread{0}", i), | ||
162 | ThreadPriority.Normal, | ||
163 | false, | ||
164 | false, | ||
165 | null, | ||
166 | int.MaxValue); | ||
167 | } | ||
168 | } | ||
169 | |||
104 | } | 170 | } |
105 | 171 | ||
106 | 172 | ||
@@ -110,25 +176,212 @@ namespace OpenSim.Region.ClientStack.Linden | |||
110 | 176 | ||
111 | #endregion | 177 | #endregion |
112 | 178 | ||
179 | private void DoMeshRequests() | ||
180 | { | ||
181 | while (true) | ||
182 | { | ||
183 | aPollRequest poolreq = m_queue.Dequeue(); | ||
184 | |||
185 | poolreq.thepoll.Process(poolreq); | ||
186 | } | ||
187 | } | ||
188 | |||
189 | // Now we know when the throttle is changed by the client in the case of a root agent or by a neighbor region in the case of a child agent. | ||
190 | public void ThrottleUpdate(ScenePresence p) | ||
191 | { | ||
192 | byte[] throttles = p.ControllingClient.GetThrottlesPacked(1); | ||
193 | UUID user = p.UUID; | ||
194 | int imagethrottle = ExtractTaskThrottle(throttles); | ||
195 | PollServiceMeshEventArgs args; | ||
196 | if (m_pollservices.TryGetValue(user, out args)) | ||
197 | { | ||
198 | args.UpdateThrottle(imagethrottle, p); | ||
199 | } | ||
200 | } | ||
201 | |||
202 | private int ExtractTaskThrottle(byte[] pthrottles) | ||
203 | { | ||
204 | |||
205 | byte[] adjData; | ||
206 | int pos = 0; | ||
207 | |||
208 | if (!BitConverter.IsLittleEndian) | ||
209 | { | ||
210 | byte[] newData = new byte[7 * 4]; | ||
211 | Buffer.BlockCopy(pthrottles, 0, newData, 0, 7 * 4); | ||
212 | |||
213 | for (int i = 0; i < 7; i++) | ||
214 | Array.Reverse(newData, i * 4, 4); | ||
215 | |||
216 | adjData = newData; | ||
217 | } | ||
218 | else | ||
219 | { | ||
220 | adjData = pthrottles; | ||
221 | } | ||
222 | |||
223 | // 0.125f converts from bits to bytes | ||
224 | //int resend = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
225 | //pos += 4; | ||
226 | // int land = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
227 | //pos += 4; | ||
228 | // int wind = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
229 | // pos += 4; | ||
230 | // int cloud = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
231 | // pos += 4; | ||
232 | pos += 16; | ||
233 | int task = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
234 | // pos += 4; | ||
235 | //int texture = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); //pos += 4; | ||
236 | //int asset = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
237 | return task; | ||
238 | } | ||
239 | |||
240 | private class PollServiceMeshEventArgs : PollServiceEventArgs | ||
241 | { | ||
242 | private List<Hashtable> requests = | ||
243 | new List<Hashtable>(); | ||
244 | private Dictionary<UUID, aPollResponse> responses = | ||
245 | new Dictionary<UUID, aPollResponse>(); | ||
246 | |||
247 | private Scene m_scene; | ||
248 | private MeshCapsDataThrottler m_throttler; | ||
249 | public PollServiceMeshEventArgs(UUID pId, Scene scene) : | ||
250 | base(null, null, null, null, pId, int.MaxValue) | ||
251 | { | ||
252 | m_scene = scene; | ||
253 | m_throttler = new MeshCapsDataThrottler(100000, 1400000, 10000, scene, pId); | ||
254 | // x is request id, y is userid | ||
255 | HasEvents = (x, y) => | ||
256 | { | ||
257 | lock (responses) | ||
258 | { | ||
259 | bool ret = m_throttler.hasEvents(x, responses); | ||
260 | m_throttler.ProcessTime(); | ||
261 | return ret; | ||
262 | |||
263 | } | ||
264 | }; | ||
265 | GetEvents = (x, y) => | ||
266 | { | ||
267 | lock (responses) | ||
268 | { | ||
269 | try | ||
270 | { | ||
271 | return responses[x].response; | ||
272 | } | ||
273 | finally | ||
274 | { | ||
275 | m_throttler.ProcessTime(); | ||
276 | responses.Remove(x); | ||
277 | } | ||
278 | } | ||
279 | }; | ||
280 | // x is request id, y is request data hashtable | ||
281 | Request = (x, y) => | ||
282 | { | ||
283 | aPollRequest reqinfo = new aPollRequest(); | ||
284 | reqinfo.thepoll = this; | ||
285 | reqinfo.reqID = x; | ||
286 | reqinfo.request = y; | ||
287 | |||
288 | m_queue.Enqueue(reqinfo); | ||
289 | }; | ||
290 | |||
291 | // this should never happen except possible on shutdown | ||
292 | NoEvents = (x, y) => | ||
293 | { | ||
294 | /* | ||
295 | lock (requests) | ||
296 | { | ||
297 | Hashtable request = requests.Find(id => id["RequestID"].ToString() == x.ToString()); | ||
298 | requests.Remove(request); | ||
299 | } | ||
300 | */ | ||
301 | Hashtable response = new Hashtable(); | ||
302 | |||
303 | response["int_response_code"] = 500; | ||
304 | response["str_response_string"] = "Script timeout"; | ||
305 | response["content_type"] = "text/plain"; | ||
306 | response["keepalive"] = false; | ||
307 | response["reusecontext"] = false; | ||
308 | |||
309 | return response; | ||
310 | }; | ||
311 | } | ||
312 | |||
313 | public void Process(aPollRequest requestinfo) | ||
314 | { | ||
315 | Hashtable response; | ||
316 | |||
317 | UUID requestID = requestinfo.reqID; | ||
318 | |||
319 | // If the avatar is gone, don't bother to get the texture | ||
320 | if (m_scene.GetScenePresence(Id) == null) | ||
321 | { | ||
322 | response = new Hashtable(); | ||
323 | |||
324 | response["int_response_code"] = 500; | ||
325 | response["str_response_string"] = "Script timeout"; | ||
326 | response["content_type"] = "text/plain"; | ||
327 | response["keepalive"] = false; | ||
328 | response["reusecontext"] = false; | ||
329 | |||
330 | lock (responses) | ||
331 | responses[requestID] = new aPollResponse() { bytes = 0, response = response, lod = 0 }; | ||
332 | |||
333 | return; | ||
334 | } | ||
335 | |||
336 | response = m_getMeshHandler.Handle(requestinfo.request); | ||
337 | lock (responses) | ||
338 | { | ||
339 | responses[requestID] = new aPollResponse() | ||
340 | { | ||
341 | bytes = (int)response["int_bytes"], | ||
342 | lod = (int)response["int_lod"], | ||
343 | response = response | ||
344 | }; | ||
345 | |||
346 | } | ||
347 | m_throttler.ProcessTime(); | ||
348 | } | ||
349 | |||
350 | internal void UpdateThrottle(int pimagethrottle, ScenePresence p) | ||
351 | { | ||
352 | m_throttler.UpdateThrottle(pimagethrottle, p); | ||
353 | } | ||
354 | } | ||
113 | 355 | ||
114 | public void RegisterCaps(UUID agentID, Caps caps) | 356 | public void RegisterCaps(UUID agentID, Caps caps) |
115 | { | 357 | { |
116 | // UUID capID = UUID.Random(); | 358 | // UUID capID = UUID.Random(); |
117 | |||
118 | //caps.RegisterHandler("GetTexture", new StreamHandler("GET", "/CAPS/" + capID, ProcessGetTexture)); | ||
119 | if (m_URL == "localhost") | 359 | if (m_URL == "localhost") |
120 | { | 360 | { |
121 | // m_log.DebugFormat("[GETMESH]: /CAPS/{0} in region {1}", capID, m_scene.RegionInfo.RegionName); | 361 | string capUrl = "/CAPS/" + UUID.Random() + "/"; |
122 | GetMeshHandler gmeshHandler = new GetMeshHandler(m_AssetService); | 362 | |
123 | IRequestHandler reqHandler | 363 | // Register this as a poll service |
124 | = new RestHTTPHandler( | 364 | PollServiceMeshEventArgs args = new PollServiceMeshEventArgs(agentID, m_scene); |
125 | "GET", | 365 | |
126 | "/CAPS/" + UUID.Random(), | 366 | args.Type = PollServiceEventArgs.EventType.Mesh; |
127 | httpMethod => gmeshHandler.ProcessGetMesh(httpMethod, UUID.Zero, null), | 367 | MainServer.Instance.AddPollServiceHTTPHandler(capUrl, args); |
128 | "GetMesh", | ||
129 | agentID.ToString()); | ||
130 | 368 | ||
131 | caps.RegisterHandler("GetMesh", reqHandler); | 369 | string hostName = m_scene.RegionInfo.ExternalHostName; |
370 | uint port = (MainServer.Instance == null) ? 0 : MainServer.Instance.Port; | ||
371 | string protocol = "http"; | ||
372 | |||
373 | if (MainServer.Instance.UseSSL) | ||
374 | { | ||
375 | hostName = MainServer.Instance.SSLCommonName; | ||
376 | port = MainServer.Instance.SSLPort; | ||
377 | protocol = "https"; | ||
378 | } | ||
379 | caps.RegisterHandler("GetMesh", String.Format("{0}://{1}:{2}{3}", protocol, hostName, port, capUrl)); | ||
380 | m_pollservices[agentID] = args; | ||
381 | m_capsDict[agentID] = capUrl; | ||
382 | |||
383 | |||
384 | |||
132 | } | 385 | } |
133 | else | 386 | else |
134 | { | 387 | { |
@@ -136,6 +389,171 @@ namespace OpenSim.Region.ClientStack.Linden | |||
136 | caps.RegisterHandler("GetMesh", m_URL); | 389 | caps.RegisterHandler("GetMesh", m_URL); |
137 | } | 390 | } |
138 | } | 391 | } |
392 | private void DeregisterCaps(UUID agentID, Caps caps) | ||
393 | { | ||
394 | string capUrl; | ||
395 | PollServiceMeshEventArgs args; | ||
396 | if (m_capsDict.TryGetValue(agentID, out capUrl)) | ||
397 | { | ||
398 | MainServer.Instance.RemoveHTTPHandler("", capUrl); | ||
399 | m_capsDict.Remove(agentID); | ||
400 | } | ||
401 | if (m_pollservices.TryGetValue(agentID, out args)) | ||
402 | { | ||
403 | m_pollservices.Remove(agentID); | ||
404 | } | ||
405 | } | ||
406 | |||
407 | internal sealed class MeshCapsDataThrottler | ||
408 | { | ||
409 | |||
410 | private volatile int currenttime = 0; | ||
411 | private volatile int lastTimeElapsed = 0; | ||
412 | private volatile int BytesSent = 0; | ||
413 | private int Lod3 = 0; | ||
414 | private int Lod2 = 0; | ||
415 | private int Lod1 = 0; | ||
416 | private int UserSetThrottle = 0; | ||
417 | private int UDPSetThrottle = 0; | ||
418 | private int CapSetThrottle = 0; | ||
419 | private float CapThrottleDistributon = 0.30f; | ||
420 | private readonly Scene m_scene; | ||
421 | private ThrottleOutPacketType Throttle; | ||
422 | private readonly UUID User; | ||
423 | |||
424 | public MeshCapsDataThrottler(int pBytes, int max, int min, Scene pScene, UUID puser) | ||
425 | { | ||
426 | ThrottleBytes = pBytes; | ||
427 | lastTimeElapsed = Util.EnvironmentTickCount(); | ||
428 | Throttle = ThrottleOutPacketType.Task; | ||
429 | m_scene = pScene; | ||
430 | User = puser; | ||
431 | } | ||
432 | |||
433 | |||
434 | public bool hasEvents(UUID key, Dictionary<UUID, aPollResponse> responses) | ||
435 | { | ||
436 | const float ThirtyPercent = 0.30f; | ||
437 | const float FivePercent = 0.05f; | ||
438 | PassTime(); | ||
439 | // Note, this is called IN LOCK | ||
440 | bool haskey = responses.ContainsKey(key); | ||
441 | |||
442 | if (responses.Count > 2) | ||
443 | { | ||
444 | SplitThrottle(ThirtyPercent); | ||
445 | } | ||
446 | else | ||
447 | { | ||
448 | SplitThrottle(FivePercent); | ||
449 | } | ||
450 | |||
451 | if (!haskey) | ||
452 | { | ||
453 | return false; | ||
454 | } | ||
455 | aPollResponse response; | ||
456 | if (responses.TryGetValue(key, out response)) | ||
457 | { | ||
458 | float LOD3Over = (((ThrottleBytes*CapThrottleDistributon)%50000) + 1); | ||
459 | float LOD2Over = (((ThrottleBytes*CapThrottleDistributon)%10000) + 1); | ||
460 | // Normal | ||
461 | if (BytesSent + response.bytes <= ThrottleBytes) | ||
462 | { | ||
463 | BytesSent += response.bytes; | ||
464 | |||
465 | return true; | ||
466 | } | ||
467 | // Lod3 Over Throttle protection to keep things processing even when the throttle bandwidth is set too little. | ||
468 | else if (response.bytes > ThrottleBytes && Lod3 <= ((LOD3Over < 1)? 1: LOD3Over) ) | ||
469 | { | ||
470 | Interlocked.Increment(ref Lod3); | ||
471 | BytesSent += response.bytes; | ||
472 | |||
473 | return true; | ||
474 | } | ||
475 | // Lod2 Over Throttle protection to keep things processing even when the throttle bandwidth is set too little. | ||
476 | else if (response.bytes > ThrottleBytes && Lod2 <= ((LOD2Over < 1) ? 1 : LOD2Over)) | ||
477 | { | ||
478 | Interlocked.Increment(ref Lod2); | ||
479 | BytesSent += response.bytes; | ||
480 | |||
481 | return true; | ||
482 | } | ||
483 | else | ||
484 | { | ||
485 | return false; | ||
486 | } | ||
487 | } | ||
488 | |||
489 | return haskey; | ||
490 | } | ||
491 | public void SubtractBytes(int bytes,int lod) | ||
492 | { | ||
493 | BytesSent -= bytes; | ||
494 | } | ||
495 | private void SplitThrottle(float percentMultiplier) | ||
496 | { | ||
497 | |||
498 | if (CapThrottleDistributon != percentMultiplier) // don't switch it if it's already set at the % multipler | ||
499 | { | ||
500 | CapThrottleDistributon = percentMultiplier; | ||
501 | ScenePresence p; | ||
502 | if (m_scene.TryGetScenePresence(User, out p)) // If we don't get a user they're not here anymore. | ||
503 | { | ||
504 | AlterThrottle(UserSetThrottle, p); | ||
505 | } | ||
506 | } | ||
507 | } | ||
508 | |||
509 | public void ProcessTime() | ||
510 | { | ||
511 | PassTime(); | ||
512 | } | ||
513 | |||
514 | |||
515 | private void PassTime() | ||
516 | { | ||
517 | currenttime = Util.EnvironmentTickCount(); | ||
518 | int timeElapsed = Util.EnvironmentTickCountSubtract(currenttime, lastTimeElapsed); | ||
519 | //processTimeBasedActions(responses); | ||
520 | if (currenttime - timeElapsed >= 1000) | ||
521 | { | ||
522 | lastTimeElapsed = Util.EnvironmentTickCount(); | ||
523 | BytesSent -= ThrottleBytes; | ||
524 | if (BytesSent < 0) BytesSent = 0; | ||
525 | if (BytesSent < ThrottleBytes) | ||
526 | { | ||
527 | Lod3 = 0; | ||
528 | Lod2 = 0; | ||
529 | Lod1 = 0; | ||
530 | } | ||
531 | } | ||
532 | } | ||
533 | private void AlterThrottle(int setting, ScenePresence p) | ||
534 | { | ||
535 | p.ControllingClient.SetAgentThrottleSilent((int)Throttle,setting); | ||
536 | } | ||
537 | |||
538 | public int ThrottleBytes | ||
539 | { | ||
540 | get { return CapSetThrottle; } | ||
541 | set { CapSetThrottle = value; } | ||
542 | } | ||
543 | |||
544 | internal void UpdateThrottle(int pimagethrottle, ScenePresence p) | ||
545 | { | ||
546 | // Client set throttle ! | ||
547 | UserSetThrottle = pimagethrottle; | ||
548 | CapSetThrottle = (int)(pimagethrottle*CapThrottleDistributon); | ||
549 | UDPSetThrottle = (int) (pimagethrottle*(100 - CapThrottleDistributon)); | ||
550 | if (CapSetThrottle < 4068) | ||
551 | CapSetThrottle = 4068; // at least two discovery mesh | ||
552 | p.ControllingClient.SetAgentThrottleSilent((int) Throttle, UDPSetThrottle); | ||
553 | ProcessTime(); | ||
554 | |||
555 | } | ||
556 | } | ||
139 | 557 | ||
140 | } | 558 | } |
141 | } | 559 | } |
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs index 13415f8..d4dbfb9 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/GetTextureModule.cs | |||
@@ -27,18 +27,13 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Specialized; | 30 | using System.Collections.Generic; |
31 | using System.Drawing; | ||
32 | using System.Drawing.Imaging; | ||
33 | using System.Reflection; | 31 | using System.Reflection; |
34 | using System.IO; | 32 | using System.Threading; |
35 | using System.Web; | ||
36 | using log4net; | 33 | using log4net; |
37 | using Nini.Config; | 34 | using Nini.Config; |
38 | using Mono.Addins; | 35 | using Mono.Addins; |
39 | using OpenMetaverse; | 36 | using OpenMetaverse; |
40 | using OpenMetaverse.StructuredData; | ||
41 | using OpenMetaverse.Imaging; | ||
42 | using OpenSim.Framework; | 37 | using OpenSim.Framework; |
43 | using OpenSim.Framework.Servers; | 38 | using OpenSim.Framework.Servers; |
44 | using OpenSim.Framework.Servers.HttpServer; | 39 | using OpenSim.Framework.Servers.HttpServer; |
@@ -47,6 +42,7 @@ using OpenSim.Region.Framework.Scenes; | |||
47 | using OpenSim.Services.Interfaces; | 42 | using OpenSim.Services.Interfaces; |
48 | using Caps = OpenSim.Framework.Capabilities.Caps; | 43 | using Caps = OpenSim.Framework.Capabilities.Caps; |
49 | using OpenSim.Capabilities.Handlers; | 44 | using OpenSim.Capabilities.Handlers; |
45 | using OpenSim.Framework.Monitoring; | ||
50 | 46 | ||
51 | namespace OpenSim.Region.ClientStack.Linden | 47 | namespace OpenSim.Region.ClientStack.Linden |
52 | { | 48 | { |
@@ -54,57 +50,131 @@ namespace OpenSim.Region.ClientStack.Linden | |||
54 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "GetTextureModule")] | 50 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "GetTextureModule")] |
55 | public class GetTextureModule : INonSharedRegionModule | 51 | public class GetTextureModule : INonSharedRegionModule |
56 | { | 52 | { |
57 | // private static readonly ILog m_log = | 53 | |
58 | // LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 54 | struct aPollRequest |
59 | 55 | { | |
56 | public PollServiceTextureEventArgs thepoll; | ||
57 | public UUID reqID; | ||
58 | public Hashtable request; | ||
59 | } | ||
60 | |||
61 | public class aPollResponse | ||
62 | { | ||
63 | public Hashtable response; | ||
64 | public int bytes; | ||
65 | } | ||
66 | |||
67 | |||
68 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
69 | |||
60 | private Scene m_scene; | 70 | private Scene m_scene; |
61 | private IAssetService m_assetService; | ||
62 | 71 | ||
63 | private bool m_Enabled = false; | 72 | private static GetTextureHandler m_getTextureHandler; |
73 | |||
74 | private IAssetService m_assetService = null; | ||
75 | |||
76 | private Dictionary<UUID, string> m_capsDict = new Dictionary<UUID, string>(); | ||
77 | private static Thread[] m_workerThreads = null; | ||
64 | 78 | ||
65 | // TODO: Change this to a config option | 79 | private static OpenMetaverse.BlockingQueue<aPollRequest> m_queue = |
66 | const string REDIRECT_URL = null; | 80 | new OpenMetaverse.BlockingQueue<aPollRequest>(); |
67 | 81 | ||
68 | private string m_URL; | 82 | private Dictionary<UUID,PollServiceTextureEventArgs> m_pollservices = new Dictionary<UUID,PollServiceTextureEventArgs>(); |
69 | 83 | ||
70 | #region ISharedRegionModule Members | 84 | #region ISharedRegionModule Members |
71 | 85 | ||
72 | public void Initialise(IConfigSource source) | 86 | public void Initialise(IConfigSource source) |
73 | { | 87 | { |
74 | IConfig config = source.Configs["ClientStack.LindenCaps"]; | ||
75 | if (config == null) | ||
76 | return; | ||
77 | |||
78 | m_URL = config.GetString("Cap_GetTexture", string.Empty); | ||
79 | // Cap doesn't exist | ||
80 | if (m_URL != string.Empty) | ||
81 | m_Enabled = true; | ||
82 | } | 88 | } |
83 | 89 | ||
84 | public void AddRegion(Scene s) | 90 | public void AddRegion(Scene s) |
85 | { | 91 | { |
86 | if (!m_Enabled) | ||
87 | return; | ||
88 | |||
89 | m_scene = s; | 92 | m_scene = s; |
93 | m_assetService = s.AssetService; | ||
90 | } | 94 | } |
91 | 95 | ||
92 | public void RemoveRegion(Scene s) | 96 | public void RemoveRegion(Scene s) |
93 | { | 97 | { |
94 | if (!m_Enabled) | ||
95 | return; | ||
96 | |||
97 | m_scene.EventManager.OnRegisterCaps -= RegisterCaps; | 98 | m_scene.EventManager.OnRegisterCaps -= RegisterCaps; |
99 | m_scene.EventManager.OnDeregisterCaps -= DeregisterCaps; | ||
100 | m_scene.EventManager.OnThrottleUpdate -= ThrottleUpdate; | ||
98 | m_scene = null; | 101 | m_scene = null; |
99 | } | 102 | } |
100 | 103 | ||
101 | public void RegionLoaded(Scene s) | 104 | public void RegionLoaded(Scene s) |
102 | { | 105 | { |
103 | if (!m_Enabled) | 106 | // We'll reuse the same handler for all requests. |
104 | return; | 107 | m_getTextureHandler = new GetTextureHandler(m_assetService); |
105 | 108 | ||
106 | m_assetService = m_scene.RequestModuleInterface<IAssetService>(); | ||
107 | m_scene.EventManager.OnRegisterCaps += RegisterCaps; | 109 | m_scene.EventManager.OnRegisterCaps += RegisterCaps; |
110 | m_scene.EventManager.OnDeregisterCaps += DeregisterCaps; | ||
111 | m_scene.EventManager.OnThrottleUpdate += ThrottleUpdate; | ||
112 | |||
113 | if (m_workerThreads == null) | ||
114 | { | ||
115 | m_workerThreads = new Thread[2]; | ||
116 | |||
117 | for (uint i = 0; i < 2; i++) | ||
118 | { | ||
119 | m_workerThreads[i] = Watchdog.StartThread(DoTextureRequests, | ||
120 | String.Format("TextureWorkerThread{0}", i), | ||
121 | ThreadPriority.Normal, | ||
122 | false, | ||
123 | false, | ||
124 | null, | ||
125 | int.MaxValue); | ||
126 | } | ||
127 | } | ||
128 | } | ||
129 | private int ExtractImageThrottle(byte[] pthrottles) | ||
130 | { | ||
131 | |||
132 | byte[] adjData; | ||
133 | int pos = 0; | ||
134 | |||
135 | if (!BitConverter.IsLittleEndian) | ||
136 | { | ||
137 | byte[] newData = new byte[7 * 4]; | ||
138 | Buffer.BlockCopy(pthrottles, 0, newData, 0, 7 * 4); | ||
139 | |||
140 | for (int i = 0; i < 7; i++) | ||
141 | Array.Reverse(newData, i * 4, 4); | ||
142 | |||
143 | adjData = newData; | ||
144 | } | ||
145 | else | ||
146 | { | ||
147 | adjData = pthrottles; | ||
148 | } | ||
149 | |||
150 | // 0.125f converts from bits to bytes | ||
151 | //int resend = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
152 | //pos += 4; | ||
153 | // int land = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
154 | //pos += 4; | ||
155 | // int wind = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
156 | // pos += 4; | ||
157 | // int cloud = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
158 | // pos += 4; | ||
159 | // int task = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
160 | // pos += 4; | ||
161 | pos = pos + 20; | ||
162 | int texture = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); //pos += 4; | ||
163 | //int asset = (int)(BitConverter.ToSingle(adjData, pos) * 0.125f); | ||
164 | return texture; | ||
165 | } | ||
166 | |||
167 | // Now we know when the throttle is changed by the client in the case of a root agent or by a neighbor region in the case of a child agent. | ||
168 | public void ThrottleUpdate(ScenePresence p) | ||
169 | { | ||
170 | byte[] throttles = p.ControllingClient.GetThrottlesPacked(1); | ||
171 | UUID user = p.UUID; | ||
172 | int imagethrottle = ExtractImageThrottle(throttles); | ||
173 | PollServiceTextureEventArgs args; | ||
174 | if (m_pollservices.TryGetValue(user,out args)) | ||
175 | { | ||
176 | args.UpdateThrottle(imagethrottle); | ||
177 | } | ||
108 | } | 178 | } |
109 | 179 | ||
110 | public void PostInitialise() | 180 | public void PostInitialise() |
@@ -122,24 +192,250 @@ namespace OpenSim.Region.ClientStack.Linden | |||
122 | 192 | ||
123 | #endregion | 193 | #endregion |
124 | 194 | ||
125 | public void RegisterCaps(UUID agentID, Caps caps) | 195 | ~GetTextureModule() |
196 | { | ||
197 | foreach (Thread t in m_workerThreads) | ||
198 | Watchdog.AbortThread(t.ManagedThreadId); | ||
199 | |||
200 | } | ||
201 | |||
202 | private class PollServiceTextureEventArgs : PollServiceEventArgs | ||
126 | { | 203 | { |
127 | UUID capID = UUID.Random(); | 204 | private List<Hashtable> requests = |
205 | new List<Hashtable>(); | ||
206 | private Dictionary<UUID, aPollResponse> responses = | ||
207 | new Dictionary<UUID, aPollResponse>(); | ||
128 | 208 | ||
129 | //caps.RegisterHandler("GetTexture", new StreamHandler("GET", "/CAPS/" + capID, ProcessGetTexture)); | 209 | private Scene m_scene; |
130 | if (m_URL == "localhost") | 210 | private CapsDataThrottler m_throttler = new CapsDataThrottler(100000, 1400000,10000); |
211 | public PollServiceTextureEventArgs(UUID pId, Scene scene) : | ||
212 | base(null, null, null, null, pId, int.MaxValue) | ||
131 | { | 213 | { |
132 | // m_log.DebugFormat("[GETTEXTURE]: /CAPS/{0} in region {1}", capID, m_scene.RegionInfo.RegionName); | 214 | m_scene = scene; |
133 | caps.RegisterHandler( | 215 | // x is request id, y is userid |
134 | "GetTexture", | 216 | HasEvents = (x, y) => |
135 | new GetTextureHandler("/CAPS/" + capID + "/", m_assetService, "GetTexture", agentID.ToString())); | 217 | { |
218 | lock (responses) | ||
219 | { | ||
220 | bool ret = m_throttler.hasEvents(x, responses); | ||
221 | m_throttler.ProcessTime(); | ||
222 | return ret; | ||
223 | |||
224 | } | ||
225 | }; | ||
226 | GetEvents = (x, y) => | ||
227 | { | ||
228 | lock (responses) | ||
229 | { | ||
230 | try | ||
231 | { | ||
232 | return responses[x].response; | ||
233 | } | ||
234 | finally | ||
235 | { | ||
236 | responses.Remove(x); | ||
237 | } | ||
238 | } | ||
239 | }; | ||
240 | // x is request id, y is request data hashtable | ||
241 | Request = (x, y) => | ||
242 | { | ||
243 | aPollRequest reqinfo = new aPollRequest(); | ||
244 | reqinfo.thepoll = this; | ||
245 | reqinfo.reqID = x; | ||
246 | reqinfo.request = y; | ||
247 | |||
248 | m_queue.Enqueue(reqinfo); | ||
249 | }; | ||
250 | |||
251 | // this should never happen except possible on shutdown | ||
252 | NoEvents = (x, y) => | ||
253 | { | ||
254 | /* | ||
255 | lock (requests) | ||
256 | { | ||
257 | Hashtable request = requests.Find(id => id["RequestID"].ToString() == x.ToString()); | ||
258 | requests.Remove(request); | ||
259 | } | ||
260 | */ | ||
261 | Hashtable response = new Hashtable(); | ||
262 | |||
263 | response["int_response_code"] = 500; | ||
264 | response["str_response_string"] = "Script timeout"; | ||
265 | response["content_type"] = "text/plain"; | ||
266 | response["keepalive"] = false; | ||
267 | response["reusecontext"] = false; | ||
268 | |||
269 | return response; | ||
270 | }; | ||
136 | } | 271 | } |
137 | else | 272 | |
273 | public void Process(aPollRequest requestinfo) | ||
274 | { | ||
275 | Hashtable response; | ||
276 | |||
277 | UUID requestID = requestinfo.reqID; | ||
278 | |||
279 | // If the avatar is gone, don't bother to get the texture | ||
280 | if (m_scene.GetScenePresence(Id) == null) | ||
281 | { | ||
282 | response = new Hashtable(); | ||
283 | |||
284 | response["int_response_code"] = 500; | ||
285 | response["str_response_string"] = "Script timeout"; | ||
286 | response["content_type"] = "text/plain"; | ||
287 | response["keepalive"] = false; | ||
288 | response["reusecontext"] = false; | ||
289 | |||
290 | lock (responses) | ||
291 | responses[requestID] = new aPollResponse() {bytes = 0, response = response}; | ||
292 | |||
293 | return; | ||
294 | } | ||
295 | |||
296 | response = m_getTextureHandler.Handle(requestinfo.request); | ||
297 | lock (responses) | ||
298 | { | ||
299 | responses[requestID] = new aPollResponse() | ||
300 | { | ||
301 | bytes = (int) response["int_bytes"], | ||
302 | response = response | ||
303 | }; | ||
304 | |||
305 | } | ||
306 | m_throttler.ProcessTime(); | ||
307 | } | ||
308 | |||
309 | internal void UpdateThrottle(int pimagethrottle) | ||
310 | { | ||
311 | m_throttler.ThrottleBytes = pimagethrottle; | ||
312 | } | ||
313 | } | ||
314 | |||
315 | private void RegisterCaps(UUID agentID, Caps caps) | ||
316 | { | ||
317 | string capUrl = "/CAPS/" + UUID.Random() + "/"; | ||
318 | |||
319 | // Register this as a poll service | ||
320 | PollServiceTextureEventArgs args = new PollServiceTextureEventArgs(agentID, m_scene); | ||
321 | |||
322 | args.Type = PollServiceEventArgs.EventType.Texture; | ||
323 | MainServer.Instance.AddPollServiceHTTPHandler(capUrl, args); | ||
324 | |||
325 | string hostName = m_scene.RegionInfo.ExternalHostName; | ||
326 | uint port = (MainServer.Instance == null) ? 0 : MainServer.Instance.Port; | ||
327 | string protocol = "http"; | ||
328 | |||
329 | if (MainServer.Instance.UseSSL) | ||
330 | { | ||
331 | hostName = MainServer.Instance.SSLCommonName; | ||
332 | port = MainServer.Instance.SSLPort; | ||
333 | protocol = "https"; | ||
334 | } | ||
335 | caps.RegisterHandler("GetTexture", String.Format("{0}://{1}:{2}{3}", protocol, hostName, port, capUrl)); | ||
336 | m_pollservices[agentID] = args; | ||
337 | m_capsDict[agentID] = capUrl; | ||
338 | } | ||
339 | |||
340 | private void DeregisterCaps(UUID agentID, Caps caps) | ||
341 | { | ||
342 | string capUrl; | ||
343 | PollServiceTextureEventArgs args; | ||
344 | if (m_capsDict.TryGetValue(agentID, out capUrl)) | ||
345 | { | ||
346 | MainServer.Instance.RemoveHTTPHandler("", capUrl); | ||
347 | m_capsDict.Remove(agentID); | ||
348 | } | ||
349 | if (m_pollservices.TryGetValue(agentID, out args)) | ||
138 | { | 350 | { |
139 | // m_log.DebugFormat("[GETTEXTURE]: {0} in region {1}", m_URL, m_scene.RegionInfo.RegionName); | 351 | m_pollservices.Remove(agentID); |
140 | caps.RegisterHandler("GetTexture", m_URL); | ||
141 | } | 352 | } |
142 | } | 353 | } |
143 | 354 | ||
355 | private void DoTextureRequests() | ||
356 | { | ||
357 | while (true) | ||
358 | { | ||
359 | aPollRequest poolreq = m_queue.Dequeue(); | ||
360 | |||
361 | poolreq.thepoll.Process(poolreq); | ||
362 | } | ||
363 | } | ||
364 | internal sealed class CapsDataThrottler | ||
365 | { | ||
366 | |||
367 | private volatile int currenttime = 0; | ||
368 | private volatile int lastTimeElapsed = 0; | ||
369 | private volatile int BytesSent = 0; | ||
370 | private int oversizedImages = 0; | ||
371 | public CapsDataThrottler(int pBytes, int max, int min) | ||
372 | { | ||
373 | ThrottleBytes = pBytes; | ||
374 | lastTimeElapsed = Util.EnvironmentTickCount(); | ||
375 | } | ||
376 | public bool hasEvents(UUID key, Dictionary<UUID, GetTextureModule.aPollResponse> responses) | ||
377 | { | ||
378 | PassTime(); | ||
379 | // Note, this is called IN LOCK | ||
380 | bool haskey = responses.ContainsKey(key); | ||
381 | if (!haskey) | ||
382 | { | ||
383 | return false; | ||
384 | } | ||
385 | GetTextureModule.aPollResponse response; | ||
386 | if (responses.TryGetValue(key, out response)) | ||
387 | { | ||
388 | |||
389 | // Normal | ||
390 | if (BytesSent + response.bytes <= ThrottleBytes) | ||
391 | { | ||
392 | BytesSent += response.bytes; | ||
393 | //TimeBasedAction timeBasedAction = new TimeBasedAction { byteRemoval = response.bytes, requestId = key, timeMS = currenttime + 1000, unlockyn = false }; | ||
394 | //m_actions.Add(timeBasedAction); | ||
395 | return true; | ||
396 | } | ||
397 | // Big textures | ||
398 | else if (response.bytes > ThrottleBytes && oversizedImages <= ((ThrottleBytes % 50000) + 1)) | ||
399 | { | ||
400 | Interlocked.Increment(ref oversizedImages); | ||
401 | BytesSent += response.bytes; | ||
402 | //TimeBasedAction timeBasedAction = new TimeBasedAction { byteRemoval = response.bytes, requestId = key, timeMS = currenttime + (((response.bytes % ThrottleBytes)+1)*1000) , unlockyn = false }; | ||
403 | //m_actions.Add(timeBasedAction); | ||
404 | return true; | ||
405 | } | ||
406 | else | ||
407 | { | ||
408 | return false; | ||
409 | } | ||
410 | } | ||
411 | |||
412 | return haskey; | ||
413 | } | ||
414 | public void ProcessTime() | ||
415 | { | ||
416 | PassTime(); | ||
417 | } | ||
418 | |||
419 | |||
420 | private void PassTime() | ||
421 | { | ||
422 | currenttime = Util.EnvironmentTickCount(); | ||
423 | int timeElapsed = Util.EnvironmentTickCountSubtract(currenttime, lastTimeElapsed); | ||
424 | //processTimeBasedActions(responses); | ||
425 | if (Util.EnvironmentTickCountSubtract(currenttime, timeElapsed) >= 1000) | ||
426 | { | ||
427 | lastTimeElapsed = Util.EnvironmentTickCount(); | ||
428 | BytesSent -= ThrottleBytes; | ||
429 | if (BytesSent < 0) BytesSent = 0; | ||
430 | if (BytesSent < ThrottleBytes) | ||
431 | { | ||
432 | oversizedImages = 0; | ||
433 | } | ||
434 | } | ||
435 | } | ||
436 | public int ThrottleBytes; | ||
437 | } | ||
144 | } | 438 | } |
439 | |||
440 | |||
145 | } | 441 | } |
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/MeshUploadFlagModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/MeshUploadFlagModule.cs index 33b1f77..60c1814 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/MeshUploadFlagModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/MeshUploadFlagModule.cs | |||
@@ -129,15 +129,15 @@ namespace OpenSim.Region.ClientStack.Linden | |||
129 | // m_log.DebugFormat("[MESH UPLOAD FLAG MODULE]: MeshUploadFlag request"); | 129 | // m_log.DebugFormat("[MESH UPLOAD FLAG MODULE]: MeshUploadFlag request"); |
130 | 130 | ||
131 | OSDMap data = new OSDMap(); | 131 | OSDMap data = new OSDMap(); |
132 | ScenePresence sp = m_scene.GetScenePresence(m_agentID); | 132 | // ScenePresence sp = m_scene.GetScenePresence(m_agentID); |
133 | data["username"] = sp.Firstname + "." + sp.Lastname; | 133 | // data["username"] = sp.Firstname + "." + sp.Lastname; |
134 | data["display_name_next_update"] = new OSDDate(DateTime.Now); | 134 | // data["display_name_next_update"] = new OSDDate(DateTime.Now); |
135 | data["legacy_first_name"] = sp.Firstname; | 135 | // data["legacy_first_name"] = sp.Firstname; |
136 | data["mesh_upload_status"] = "valid"; | 136 | data["mesh_upload_status"] = "valid"; |
137 | data["display_name"] = sp.Firstname + " " + sp.Lastname; | 137 | // data["display_name"] = sp.Firstname + " " + sp.Lastname; |
138 | data["legacy_last_name"] = sp.Lastname; | 138 | // data["legacy_last_name"] = sp.Lastname; |
139 | data["id"] = m_agentID; | 139 | // data["id"] = m_agentID; |
140 | data["is_display_name_default"] = true; | 140 | // data["is_display_name_default"] = true; |
141 | 141 | ||
142 | //Send back data | 142 | //Send back data |
143 | Hashtable responsedata = new Hashtable(); | 143 | Hashtable responsedata = new Hashtable(); |
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/NewFileAgentInventoryVariablePriceModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/NewFileAgentInventoryVariablePriceModule.cs deleted file mode 100644 index 5529550..0000000 --- a/OpenSim/Region/ClientStack/Linden/Caps/NewFileAgentInventoryVariablePriceModule.cs +++ /dev/null | |||
@@ -1,296 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSimulator Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.Collections; | ||
30 | using System.Collections.Specialized; | ||
31 | using System.Reflection; | ||
32 | using System.IO; | ||
33 | using System.Web; | ||
34 | using Mono.Addins; | ||
35 | using log4net; | ||
36 | using Nini.Config; | ||
37 | using OpenMetaverse; | ||
38 | using OpenMetaverse.StructuredData; | ||
39 | using OpenSim.Framework; | ||
40 | using OpenSim.Framework.Servers; | ||
41 | using OpenSim.Framework.Servers.HttpServer; | ||
42 | using OpenSim.Region.Framework.Interfaces; | ||
43 | using OpenSim.Region.Framework.Scenes; | ||
44 | using OpenSim.Services.Interfaces; | ||
45 | using Caps = OpenSim.Framework.Capabilities.Caps; | ||
46 | using OpenSim.Framework.Capabilities; | ||
47 | |||
48 | namespace OpenSim.Region.ClientStack.Linden | ||
49 | { | ||
50 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "NewFileAgentInventoryVariablePriceModule")] | ||
51 | public class NewFileAgentInventoryVariablePriceModule : INonSharedRegionModule | ||
52 | { | ||
53 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
54 | |||
55 | private Scene m_scene; | ||
56 | // private IAssetService m_assetService; | ||
57 | private bool m_dumpAssetsToFile = false; | ||
58 | private bool m_enabled = true; | ||
59 | private int m_levelUpload = 0; | ||
60 | |||
61 | #region Region Module interfaceBase Members | ||
62 | |||
63 | |||
64 | public Type ReplaceableInterface | ||
65 | { | ||
66 | get { return null; } | ||
67 | } | ||
68 | |||
69 | public void Initialise(IConfigSource source) | ||
70 | { | ||
71 | IConfig meshConfig = source.Configs["Mesh"]; | ||
72 | if (meshConfig == null) | ||
73 | return; | ||
74 | |||
75 | m_enabled = meshConfig.GetBoolean("AllowMeshUpload", true); | ||
76 | m_levelUpload = meshConfig.GetInt("LevelUpload", 0); | ||
77 | } | ||
78 | |||
79 | public void AddRegion(Scene pScene) | ||
80 | { | ||
81 | m_scene = pScene; | ||
82 | } | ||
83 | |||
84 | public void RemoveRegion(Scene scene) | ||
85 | { | ||
86 | |||
87 | m_scene.EventManager.OnRegisterCaps -= RegisterCaps; | ||
88 | m_scene = null; | ||
89 | } | ||
90 | |||
91 | public void RegionLoaded(Scene scene) | ||
92 | { | ||
93 | |||
94 | // m_assetService = m_scene.RequestModuleInterface<IAssetService>(); | ||
95 | m_scene.EventManager.OnRegisterCaps += RegisterCaps; | ||
96 | } | ||
97 | |||
98 | #endregion | ||
99 | |||
100 | |||
101 | #region Region Module interface | ||
102 | |||
103 | |||
104 | |||
105 | public void Close() { } | ||
106 | |||
107 | public string Name { get { return "NewFileAgentInventoryVariablePriceModule"; } } | ||
108 | |||
109 | |||
110 | public void RegisterCaps(UUID agentID, Caps caps) | ||
111 | { | ||
112 | if(!m_enabled) | ||
113 | return; | ||
114 | |||
115 | UUID capID = UUID.Random(); | ||
116 | |||
117 | // m_log.Debug("[NEW FILE AGENT INVENTORY VARIABLE PRICE]: /CAPS/" + capID); | ||
118 | caps.RegisterHandler( | ||
119 | "NewFileAgentInventoryVariablePrice", | ||
120 | new LLSDStreamhandler<LLSDAssetUploadRequest, LLSDNewFileAngentInventoryVariablePriceReplyResponse>( | ||
121 | "POST", | ||
122 | "/CAPS/" + capID.ToString(), | ||
123 | req => NewAgentInventoryRequest(req, agentID), | ||
124 | "NewFileAgentInventoryVariablePrice", | ||
125 | agentID.ToString())); | ||
126 | } | ||
127 | |||
128 | #endregion | ||
129 | |||
130 | public LLSDNewFileAngentInventoryVariablePriceReplyResponse NewAgentInventoryRequest(LLSDAssetUploadRequest llsdRequest, UUID agentID) | ||
131 | { | ||
132 | //TODO: The Mesh uploader uploads many types of content. If you're going to implement a Money based limit | ||
133 | // you need to be aware of this | ||
134 | |||
135 | //if (llsdRequest.asset_type == "texture" || | ||
136 | // llsdRequest.asset_type == "animation" || | ||
137 | // llsdRequest.asset_type == "sound") | ||
138 | // { | ||
139 | // check user level | ||
140 | |||
141 | ScenePresence avatar = null; | ||
142 | IClientAPI client = null; | ||
143 | m_scene.TryGetScenePresence(agentID, out avatar); | ||
144 | |||
145 | if (avatar != null) | ||
146 | { | ||
147 | client = avatar.ControllingClient; | ||
148 | |||
149 | if (avatar.UserLevel < m_levelUpload) | ||
150 | { | ||
151 | if (client != null) | ||
152 | client.SendAgentAlertMessage("Unable to upload asset. Insufficient permissions.", false); | ||
153 | |||
154 | LLSDNewFileAngentInventoryVariablePriceReplyResponse errorResponse = new LLSDNewFileAngentInventoryVariablePriceReplyResponse(); | ||
155 | errorResponse.rsvp = ""; | ||
156 | errorResponse.state = "error"; | ||
157 | return errorResponse; | ||
158 | } | ||
159 | } | ||
160 | |||
161 | // check funds | ||
162 | IMoneyModule mm = m_scene.RequestModuleInterface<IMoneyModule>(); | ||
163 | |||
164 | if (mm != null) | ||
165 | { | ||
166 | if (!mm.UploadCovered(agentID, mm.UploadCharge)) | ||
167 | { | ||
168 | if (client != null) | ||
169 | client.SendAgentAlertMessage("Unable to upload asset. Insufficient funds.", false); | ||
170 | |||
171 | LLSDNewFileAngentInventoryVariablePriceReplyResponse errorResponse = new LLSDNewFileAngentInventoryVariablePriceReplyResponse(); | ||
172 | errorResponse.rsvp = ""; | ||
173 | errorResponse.state = "error"; | ||
174 | return errorResponse; | ||
175 | } | ||
176 | } | ||
177 | |||
178 | // } | ||
179 | |||
180 | string assetName = llsdRequest.name; | ||
181 | string assetDes = llsdRequest.description; | ||
182 | string capsBase = "/CAPS/NewFileAgentInventoryVariablePrice/"; | ||
183 | UUID newAsset = UUID.Random(); | ||
184 | UUID newInvItem = UUID.Random(); | ||
185 | UUID parentFolder = llsdRequest.folder_id; | ||
186 | string uploaderPath = Util.RandomClass.Next(5000, 8000).ToString("0000") + "/"; | ||
187 | |||
188 | AssetUploader uploader = | ||
189 | new AssetUploader(assetName, assetDes, newAsset, newInvItem, parentFolder, llsdRequest.inventory_type, | ||
190 | llsdRequest.asset_type, capsBase + uploaderPath, MainServer.Instance, m_dumpAssetsToFile); | ||
191 | |||
192 | MainServer.Instance.AddStreamHandler( | ||
193 | new BinaryStreamHandler( | ||
194 | "POST", | ||
195 | capsBase + uploaderPath, | ||
196 | uploader.uploaderCaps, | ||
197 | "NewFileAgentInventoryVariablePrice", | ||
198 | agentID.ToString())); | ||
199 | |||
200 | string protocol = "http://"; | ||
201 | |||
202 | if (MainServer.Instance.UseSSL) | ||
203 | protocol = "https://"; | ||
204 | |||
205 | string uploaderURL = protocol + m_scene.RegionInfo.ExternalHostName + ":" + MainServer.Instance.Port.ToString() + capsBase + | ||
206 | uploaderPath; | ||
207 | |||
208 | |||
209 | LLSDNewFileAngentInventoryVariablePriceReplyResponse uploadResponse = new LLSDNewFileAngentInventoryVariablePriceReplyResponse(); | ||
210 | |||
211 | uploadResponse.rsvp = uploaderURL; | ||
212 | uploadResponse.state = "upload"; | ||
213 | uploadResponse.resource_cost = 0; | ||
214 | uploadResponse.upload_price = 0; | ||
215 | |||
216 | uploader.OnUpLoad += //UploadCompleteHandler; | ||
217 | |||
218 | delegate( | ||
219 | string passetName, string passetDescription, UUID passetID, | ||
220 | UUID pinventoryItem, UUID pparentFolder, byte[] pdata, string pinventoryType, | ||
221 | string passetType) | ||
222 | { | ||
223 | UploadCompleteHandler(passetName, passetDescription, passetID, | ||
224 | pinventoryItem, pparentFolder, pdata, pinventoryType, | ||
225 | passetType,agentID); | ||
226 | }; | ||
227 | |||
228 | return uploadResponse; | ||
229 | } | ||
230 | |||
231 | public void UploadCompleteHandler(string assetName, string assetDescription, UUID assetID, | ||
232 | UUID inventoryItem, UUID parentFolder, byte[] data, string inventoryType, | ||
233 | string assetType,UUID AgentID) | ||
234 | { | ||
235 | // m_log.DebugFormat( | ||
236 | // "[NEW FILE AGENT INVENTORY VARIABLE PRICE MODULE]: Upload complete for {0}", inventoryItem); | ||
237 | |||
238 | sbyte assType = 0; | ||
239 | sbyte inType = 0; | ||
240 | |||
241 | if (inventoryType == "sound") | ||
242 | { | ||
243 | inType = 1; | ||
244 | assType = 1; | ||
245 | } | ||
246 | else if (inventoryType == "animation") | ||
247 | { | ||
248 | inType = 19; | ||
249 | assType = 20; | ||
250 | } | ||
251 | else if (inventoryType == "wearable") | ||
252 | { | ||
253 | inType = 18; | ||
254 | switch (assetType) | ||
255 | { | ||
256 | case "bodypart": | ||
257 | assType = 13; | ||
258 | break; | ||
259 | case "clothing": | ||
260 | assType = 5; | ||
261 | break; | ||
262 | } | ||
263 | } | ||
264 | else if (inventoryType == "mesh") | ||
265 | { | ||
266 | inType = (sbyte)InventoryType.Mesh; | ||
267 | assType = (sbyte)AssetType.Mesh; | ||
268 | } | ||
269 | |||
270 | AssetBase asset; | ||
271 | asset = new AssetBase(assetID, assetName, assType, AgentID.ToString()); | ||
272 | asset.Data = data; | ||
273 | |||
274 | if (m_scene.AssetService != null) | ||
275 | m_scene.AssetService.Store(asset); | ||
276 | |||
277 | InventoryItemBase item = new InventoryItemBase(); | ||
278 | item.Owner = AgentID; | ||
279 | item.CreatorId = AgentID.ToString(); | ||
280 | item.ID = inventoryItem; | ||
281 | item.AssetID = asset.FullID; | ||
282 | item.Description = assetDescription; | ||
283 | item.Name = assetName; | ||
284 | item.AssetType = assType; | ||
285 | item.InvType = inType; | ||
286 | item.Folder = parentFolder; | ||
287 | item.CurrentPermissions | ||
288 | = (uint)(PermissionMask.Move | PermissionMask.Copy | PermissionMask.Modify | PermissionMask.Transfer); | ||
289 | item.BasePermissions = (uint)PermissionMask.All; | ||
290 | item.EveryOnePermissions = 0; | ||
291 | item.NextPermissions = (uint)PermissionMask.All; | ||
292 | item.CreationDate = Util.UnixTimeSinceEpoch(); | ||
293 | m_scene.AddInventoryItem(item); | ||
294 | } | ||
295 | } | ||
296 | } | ||
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/RegionConsoleModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/RegionConsoleModule.cs index 17c7270..fcac182 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/RegionConsoleModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/RegionConsoleModule.cs | |||
@@ -64,6 +64,8 @@ namespace OpenSim.Region.ClientStack.Linden | |||
64 | private Commands m_commands = new Commands(); | 64 | private Commands m_commands = new Commands(); |
65 | public ICommands Commands { get { return m_commands; } } | 65 | public ICommands Commands { get { return m_commands; } } |
66 | 66 | ||
67 | public event ConsoleMessage OnConsoleMessage; | ||
68 | |||
67 | public void Initialise(IConfigSource source) | 69 | public void Initialise(IConfigSource source) |
68 | { | 70 | { |
69 | m_commands.AddCommand( "Help", false, "help", "help [<item>]", "Display help on a particular command or on a list of commands in a category", Help); | 71 | m_commands.AddCommand( "Help", false, "help", "help [<item>]", "Display help on a particular command or on a list of commands in a category", Help); |
@@ -102,7 +104,7 @@ namespace OpenSim.Region.ClientStack.Linden | |||
102 | 104 | ||
103 | public void RegisterCaps(UUID agentID, Caps caps) | 105 | public void RegisterCaps(UUID agentID, Caps caps) |
104 | { | 106 | { |
105 | if (!m_scene.RegionInfo.EstateSettings.IsEstateManagerOrOwner(agentID)) | 107 | if (!m_scene.RegionInfo.EstateSettings.IsEstateManagerOrOwner(agentID) && !m_scene.Permissions.IsGod(agentID)) |
106 | return; | 108 | return; |
107 | 109 | ||
108 | UUID capID = UUID.Random(); | 110 | UUID capID = UUID.Random(); |
@@ -118,6 +120,11 @@ namespace OpenSim.Region.ClientStack.Linden | |||
118 | OSD osd = OSD.FromString(message); | 120 | OSD osd = OSD.FromString(message); |
119 | 121 | ||
120 | m_eventQueue.Enqueue(EventQueueHelper.BuildEvent("SimConsoleResponse", osd), agentID); | 122 | m_eventQueue.Enqueue(EventQueueHelper.BuildEvent("SimConsoleResponse", osd), agentID); |
123 | |||
124 | ConsoleMessage handlerConsoleMessage = OnConsoleMessage; | ||
125 | |||
126 | if (handlerConsoleMessage != null) | ||
127 | handlerConsoleMessage( agentID, message); | ||
121 | } | 128 | } |
122 | 129 | ||
123 | public bool RunCommand(string command, UUID invokerID) | 130 | public bool RunCommand(string command, UUID invokerID) |
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs index 6890f4a..04cd474 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/WebFetchInvDescModule.cs | |||
@@ -27,18 +27,22 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | ||
30 | using System.Reflection; | 31 | using System.Reflection; |
32 | using System.Threading; | ||
31 | using log4net; | 33 | using log4net; |
32 | using Nini.Config; | 34 | using Nini.Config; |
33 | using Mono.Addins; | 35 | using Mono.Addins; |
34 | using OpenMetaverse; | 36 | using OpenMetaverse; |
35 | using OpenSim.Framework; | 37 | using OpenSim.Framework; |
38 | using OpenSim.Framework.Servers; | ||
36 | using OpenSim.Framework.Servers.HttpServer; | 39 | using OpenSim.Framework.Servers.HttpServer; |
37 | using OpenSim.Region.Framework.Interfaces; | 40 | using OpenSim.Region.Framework.Interfaces; |
38 | using OpenSim.Region.Framework.Scenes; | 41 | using OpenSim.Region.Framework.Scenes; |
39 | using OpenSim.Services.Interfaces; | 42 | using OpenSim.Services.Interfaces; |
40 | using Caps = OpenSim.Framework.Capabilities.Caps; | 43 | using Caps = OpenSim.Framework.Capabilities.Caps; |
41 | using OpenSim.Capabilities.Handlers; | 44 | using OpenSim.Capabilities.Handlers; |
45 | using OpenSim.Framework.Monitoring; | ||
42 | 46 | ||
43 | namespace OpenSim.Region.ClientStack.Linden | 47 | namespace OpenSim.Region.ClientStack.Linden |
44 | { | 48 | { |
@@ -48,67 +52,72 @@ namespace OpenSim.Region.ClientStack.Linden | |||
48 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "WebFetchInvDescModule")] | 52 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "WebFetchInvDescModule")] |
49 | public class WebFetchInvDescModule : INonSharedRegionModule | 53 | public class WebFetchInvDescModule : INonSharedRegionModule |
50 | { | 54 | { |
51 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 55 | struct aPollRequest |
56 | { | ||
57 | public PollServiceInventoryEventArgs thepoll; | ||
58 | public UUID reqID; | ||
59 | public Hashtable request; | ||
60 | } | ||
61 | |||
62 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
52 | 63 | ||
53 | private Scene m_scene; | 64 | private Scene m_scene; |
54 | 65 | ||
55 | private IInventoryService m_InventoryService; | 66 | private IInventoryService m_InventoryService; |
56 | private ILibraryService m_LibraryService; | 67 | private ILibraryService m_LibraryService; |
57 | 68 | ||
58 | private bool m_Enabled; | 69 | private static WebFetchInvDescHandler m_webFetchHandler; |
59 | 70 | ||
60 | private string m_fetchInventoryDescendents2Url; | 71 | private Dictionary<UUID, string> m_capsDict = new Dictionary<UUID, string>(); |
61 | private string m_webFetchInventoryDescendentsUrl; | 72 | private static Thread[] m_workerThreads = null; |
62 | 73 | ||
63 | private WebFetchInvDescHandler m_webFetchHandler; | 74 | private static OpenMetaverse.BlockingQueue<aPollRequest> m_queue = |
75 | new OpenMetaverse.BlockingQueue<aPollRequest>(); | ||
64 | 76 | ||
65 | #region ISharedRegionModule Members | 77 | #region ISharedRegionModule Members |
66 | 78 | ||
67 | public void Initialise(IConfigSource source) | 79 | public void Initialise(IConfigSource source) |
68 | { | 80 | { |
69 | IConfig config = source.Configs["ClientStack.LindenCaps"]; | ||
70 | if (config == null) | ||
71 | return; | ||
72 | |||
73 | m_fetchInventoryDescendents2Url = config.GetString("Cap_FetchInventoryDescendents2", string.Empty); | ||
74 | m_webFetchInventoryDescendentsUrl = config.GetString("Cap_WebFetchInventoryDescendents", string.Empty); | ||
75 | |||
76 | if (m_fetchInventoryDescendents2Url != string.Empty || m_webFetchInventoryDescendentsUrl != string.Empty) | ||
77 | { | ||
78 | m_Enabled = true; | ||
79 | } | ||
80 | } | 81 | } |
81 | 82 | ||
82 | public void AddRegion(Scene s) | 83 | public void AddRegion(Scene s) |
83 | { | 84 | { |
84 | if (!m_Enabled) | ||
85 | return; | ||
86 | |||
87 | m_scene = s; | 85 | m_scene = s; |
88 | } | 86 | } |
89 | 87 | ||
90 | public void RemoveRegion(Scene s) | 88 | public void RemoveRegion(Scene s) |
91 | { | 89 | { |
92 | if (!m_Enabled) | ||
93 | return; | ||
94 | |||
95 | m_scene.EventManager.OnRegisterCaps -= RegisterCaps; | 90 | m_scene.EventManager.OnRegisterCaps -= RegisterCaps; |
91 | m_scene.EventManager.OnDeregisterCaps -= DeregisterCaps; | ||
96 | m_scene = null; | 92 | m_scene = null; |
97 | } | 93 | } |
98 | 94 | ||
99 | public void RegionLoaded(Scene s) | 95 | public void RegionLoaded(Scene s) |
100 | { | 96 | { |
101 | if (!m_Enabled) | ||
102 | return; | ||
103 | |||
104 | m_InventoryService = m_scene.InventoryService; | 97 | m_InventoryService = m_scene.InventoryService; |
105 | m_LibraryService = m_scene.LibraryService; | 98 | m_LibraryService = m_scene.LibraryService; |
106 | 99 | ||
107 | // We'll reuse the same handler for all requests. | 100 | // We'll reuse the same handler for all requests. |
108 | if (m_fetchInventoryDescendents2Url == "localhost" || m_webFetchInventoryDescendentsUrl == "localhost") | 101 | m_webFetchHandler = new WebFetchInvDescHandler(m_InventoryService, m_LibraryService); |
109 | m_webFetchHandler = new WebFetchInvDescHandler(m_InventoryService, m_LibraryService); | ||
110 | 102 | ||
111 | m_scene.EventManager.OnRegisterCaps += RegisterCaps; | 103 | m_scene.EventManager.OnRegisterCaps += RegisterCaps; |
104 | m_scene.EventManager.OnDeregisterCaps += DeregisterCaps; | ||
105 | |||
106 | if (m_workerThreads == null) | ||
107 | { | ||
108 | m_workerThreads = new Thread[2]; | ||
109 | |||
110 | for (uint i = 0; i < 2; i++) | ||
111 | { | ||
112 | m_workerThreads[i] = Watchdog.StartThread(DoInventoryRequests, | ||
113 | String.Format("InventoryWorkerThread{0}", i), | ||
114 | ThreadPriority.Normal, | ||
115 | false, | ||
116 | true, | ||
117 | null, | ||
118 | int.MaxValue); | ||
119 | } | ||
120 | } | ||
112 | } | 121 | } |
113 | 122 | ||
114 | public void PostInitialise() | 123 | public void PostInitialise() |
@@ -126,43 +135,130 @@ namespace OpenSim.Region.ClientStack.Linden | |||
126 | 135 | ||
127 | #endregion | 136 | #endregion |
128 | 137 | ||
129 | private void RegisterCaps(UUID agentID, Caps caps) | 138 | ~WebFetchInvDescModule() |
130 | { | 139 | { |
131 | if (m_webFetchInventoryDescendentsUrl != "") | 140 | foreach (Thread t in m_workerThreads) |
132 | RegisterFetchCap(agentID, caps, "WebFetchInventoryDescendents", m_webFetchInventoryDescendentsUrl); | 141 | Watchdog.AbortThread(t.ManagedThreadId); |
133 | |||
134 | if (m_fetchInventoryDescendents2Url != "") | ||
135 | RegisterFetchCap(agentID, caps, "FetchInventoryDescendents2", m_fetchInventoryDescendents2Url); | ||
136 | } | 142 | } |
137 | 143 | ||
138 | private void RegisterFetchCap(UUID agentID, Caps caps, string capName, string url) | 144 | private class PollServiceInventoryEventArgs : PollServiceEventArgs |
139 | { | 145 | { |
140 | string capUrl; | 146 | private Dictionary<UUID, Hashtable> responses = |
147 | new Dictionary<UUID, Hashtable>(); | ||
148 | |||
149 | public PollServiceInventoryEventArgs(UUID pId) : | ||
150 | base(null, null, null, null, pId, int.MaxValue) | ||
151 | { | ||
152 | HasEvents = (x, y) => { lock (responses) return responses.ContainsKey(x); }; | ||
153 | GetEvents = (x, y) => | ||
154 | { | ||
155 | lock (responses) | ||
156 | { | ||
157 | try | ||
158 | { | ||
159 | return responses[x]; | ||
160 | } | ||
161 | finally | ||
162 | { | ||
163 | responses.Remove(x); | ||
164 | } | ||
165 | } | ||
166 | }; | ||
167 | |||
168 | Request = (x, y) => | ||
169 | { | ||
170 | aPollRequest reqinfo = new aPollRequest(); | ||
171 | reqinfo.thepoll = this; | ||
172 | reqinfo.reqID = x; | ||
173 | reqinfo.request = y; | ||
174 | |||
175 | m_queue.Enqueue(reqinfo); | ||
176 | }; | ||
177 | |||
178 | NoEvents = (x, y) => | ||
179 | { | ||
180 | /* | ||
181 | lock (requests) | ||
182 | { | ||
183 | Hashtable request = requests.Find(id => id["RequestID"].ToString() == x.ToString()); | ||
184 | requests.Remove(request); | ||
185 | } | ||
186 | */ | ||
187 | Hashtable response = new Hashtable(); | ||
188 | |||
189 | response["int_response_code"] = 500; | ||
190 | response["str_response_string"] = "Script timeout"; | ||
191 | response["content_type"] = "text/plain"; | ||
192 | response["keepalive"] = false; | ||
193 | response["reusecontext"] = false; | ||
194 | |||
195 | return response; | ||
196 | }; | ||
197 | } | ||
141 | 198 | ||
142 | if (url == "localhost") | 199 | public void Process(aPollRequest requestinfo) |
143 | { | 200 | { |
144 | capUrl = "/CAPS/" + UUID.Random(); | 201 | UUID requestID = requestinfo.reqID; |
202 | |||
203 | Hashtable response = new Hashtable(); | ||
204 | |||
205 | response["int_response_code"] = 200; | ||
206 | response["content_type"] = "text/plain"; | ||
207 | response["keepalive"] = false; | ||
208 | response["reusecontext"] = false; | ||
145 | 209 | ||
146 | IRequestHandler reqHandler | 210 | response["str_response_string"] = m_webFetchHandler.FetchInventoryDescendentsRequest( |
147 | = new RestStreamHandler( | 211 | requestinfo.request["body"].ToString(), String.Empty, String.Empty, null, null); |
148 | "POST", | ||
149 | capUrl, | ||
150 | m_webFetchHandler.FetchInventoryDescendentsRequest, | ||
151 | "FetchInventoryDescendents2", | ||
152 | agentID.ToString()); | ||
153 | 212 | ||
154 | caps.RegisterHandler(capName, reqHandler); | 213 | lock (responses) |
214 | responses[requestID] = response; | ||
155 | } | 215 | } |
156 | else | 216 | } |
217 | |||
218 | private void RegisterCaps(UUID agentID, Caps caps) | ||
219 | { | ||
220 | string capUrl = "/CAPS/" + UUID.Random() + "/"; | ||
221 | |||
222 | // Register this as a poll service | ||
223 | PollServiceInventoryEventArgs args = new PollServiceInventoryEventArgs(agentID); | ||
224 | |||
225 | args.Type = PollServiceEventArgs.EventType.Inventory; | ||
226 | MainServer.Instance.AddPollServiceHTTPHandler(capUrl, args); | ||
227 | |||
228 | string hostName = m_scene.RegionInfo.ExternalHostName; | ||
229 | uint port = (MainServer.Instance == null) ? 0 : MainServer.Instance.Port; | ||
230 | string protocol = "http"; | ||
231 | |||
232 | if (MainServer.Instance.UseSSL) | ||
157 | { | 233 | { |
158 | capUrl = url; | 234 | hostName = MainServer.Instance.SSLCommonName; |
235 | port = MainServer.Instance.SSLPort; | ||
236 | protocol = "https"; | ||
237 | } | ||
238 | caps.RegisterHandler("FetchInventoryDescendents2", String.Format("{0}://{1}:{2}{3}", protocol, hostName, port, capUrl)); | ||
239 | |||
240 | m_capsDict[agentID] = capUrl; | ||
241 | } | ||
159 | 242 | ||
160 | caps.RegisterHandler(capName, capUrl); | 243 | private void DeregisterCaps(UUID agentID, Caps caps) |
244 | { | ||
245 | string capUrl; | ||
246 | |||
247 | if (m_capsDict.TryGetValue(agentID, out capUrl)) | ||
248 | { | ||
249 | MainServer.Instance.RemoveHTTPHandler("", capUrl); | ||
250 | m_capsDict.Remove(agentID); | ||
161 | } | 251 | } |
252 | } | ||
162 | 253 | ||
163 | // m_log.DebugFormat( | 254 | private void DoInventoryRequests() |
164 | // "[WEB FETCH INV DESC MODULE]: Registered capability {0} at {1} in region {2} for {3}", | 255 | { |
165 | // capName, capUrl, m_scene.RegionInfo.RegionName, agentID); | 256 | while (true) |
257 | { | ||
258 | aPollRequest poolreq = m_queue.Dequeue(); | ||
259 | |||
260 | poolreq.thepoll.Process(poolreq); | ||
261 | } | ||
166 | } | 262 | } |
167 | } | 263 | } |
168 | } \ No newline at end of file | 264 | } |
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs b/OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs index afbe56b..3995620 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/J2KImage.cs | |||
@@ -234,6 +234,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
234 | m_stopPacket = TexturePacketCount(); | 234 | m_stopPacket = TexturePacketCount(); |
235 | } | 235 | } |
236 | 236 | ||
237 | //Give them at least two packets, to play nice with some broken viewers (SL also behaves this way) | ||
238 | if (m_stopPacket == 1 && m_layers[0].End > FIRST_PACKET_SIZE) m_stopPacket++; | ||
239 | |||
237 | m_currentPacket = StartPacket; | 240 | m_currentPacket = StartPacket; |
238 | } | 241 | } |
239 | } | 242 | } |
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 504df40..ee66485 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -99,6 +99,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
99 | public event AvatarPickerRequest OnAvatarPickerRequest; | 99 | public event AvatarPickerRequest OnAvatarPickerRequest; |
100 | public event StartAnim OnStartAnim; | 100 | public event StartAnim OnStartAnim; |
101 | public event StopAnim OnStopAnim; | 101 | public event StopAnim OnStopAnim; |
102 | public event ChangeAnim OnChangeAnim; | ||
102 | public event Action<IClientAPI> OnRequestAvatarsData; | 103 | public event Action<IClientAPI> OnRequestAvatarsData; |
103 | public event LinkObjects OnLinkObjects; | 104 | public event LinkObjects OnLinkObjects; |
104 | public event DelinkObjects OnDelinkObjects; | 105 | public event DelinkObjects OnDelinkObjects; |
@@ -126,6 +127,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
126 | public event RequestObjectPropertiesFamily OnRequestObjectPropertiesFamily; | 127 | public event RequestObjectPropertiesFamily OnRequestObjectPropertiesFamily; |
127 | public event UpdatePrimFlags OnUpdatePrimFlags; | 128 | public event UpdatePrimFlags OnUpdatePrimFlags; |
128 | public event UpdatePrimTexture OnUpdatePrimTexture; | 129 | public event UpdatePrimTexture OnUpdatePrimTexture; |
130 | public event ClientChangeObject onClientChangeObject; | ||
129 | public event UpdateVector OnUpdatePrimGroupPosition; | 131 | public event UpdateVector OnUpdatePrimGroupPosition; |
130 | public event UpdateVector OnUpdatePrimSinglePosition; | 132 | public event UpdateVector OnUpdatePrimSinglePosition; |
131 | public event UpdatePrimRotation OnUpdatePrimGroupRotation; | 133 | public event UpdatePrimRotation OnUpdatePrimGroupRotation; |
@@ -159,6 +161,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
159 | public event RequestTaskInventory OnRequestTaskInventory; | 161 | public event RequestTaskInventory OnRequestTaskInventory; |
160 | public event UpdateInventoryItem OnUpdateInventoryItem; | 162 | public event UpdateInventoryItem OnUpdateInventoryItem; |
161 | public event CopyInventoryItem OnCopyInventoryItem; | 163 | public event CopyInventoryItem OnCopyInventoryItem; |
164 | public event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | ||
162 | public event MoveInventoryItem OnMoveInventoryItem; | 165 | public event MoveInventoryItem OnMoveInventoryItem; |
163 | public event RemoveInventoryItem OnRemoveInventoryItem; | 166 | public event RemoveInventoryItem OnRemoveInventoryItem; |
164 | public event RemoveInventoryFolder OnRemoveInventoryFolder; | 167 | public event RemoveInventoryFolder OnRemoveInventoryFolder; |
@@ -257,7 +260,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
257 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; | 260 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; |
258 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; | 261 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; |
259 | public event ClassifiedDelete OnClassifiedDelete; | 262 | public event ClassifiedDelete OnClassifiedDelete; |
260 | public event ClassifiedDelete OnClassifiedGodDelete; | 263 | public event ClassifiedGodDelete OnClassifiedGodDelete; |
261 | public event EventNotificationAddRequest OnEventNotificationAddRequest; | 264 | public event EventNotificationAddRequest OnEventNotificationAddRequest; |
262 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; | 265 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; |
263 | public event EventGodDelete OnEventGodDelete; | 266 | public event EventGodDelete OnEventGodDelete; |
@@ -288,10 +291,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
288 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | 291 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; |
289 | public event SimWideDeletesDelegate OnSimWideDeletes; | 292 | public event SimWideDeletesDelegate OnSimWideDeletes; |
290 | public event SendPostcard OnSendPostcard; | 293 | public event SendPostcard OnSendPostcard; |
294 | public event ChangeInventoryItemFlags OnChangeInventoryItemFlags; | ||
291 | public event MuteListEntryUpdate OnUpdateMuteListEntry; | 295 | public event MuteListEntryUpdate OnUpdateMuteListEntry; |
292 | public event MuteListEntryRemove OnRemoveMuteListEntry; | 296 | public event MuteListEntryRemove OnRemoveMuteListEntry; |
293 | public event GodlikeMessage onGodlikeMessage; | 297 | public event GodlikeMessage onGodlikeMessage; |
294 | public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate; | 298 | public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdate; |
299 | public event GenericCall2 OnUpdateThrottles; | ||
295 | 300 | ||
296 | #endregion Events | 301 | #endregion Events |
297 | 302 | ||
@@ -326,6 +331,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
326 | private Prioritizer m_prioritizer; | 331 | private Prioritizer m_prioritizer; |
327 | private bool m_disableFacelights = false; | 332 | private bool m_disableFacelights = false; |
328 | 333 | ||
334 | private bool m_VelocityInterpolate = false; | ||
335 | private const uint MaxTransferBytesPerPacket = 600; | ||
336 | |||
337 | |||
329 | /// <value> | 338 | /// <value> |
330 | /// List used in construction of data blocks for an object update packet. This is to stop us having to | 339 | /// List used in construction of data blocks for an object update packet. This is to stop us having to |
331 | /// continually recreate it. | 340 | /// continually recreate it. |
@@ -337,14 +346,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
337 | /// thread servicing the m_primFullUpdates queue after a kill. If this happens the object persists as an | 346 | /// thread servicing the m_primFullUpdates queue after a kill. If this happens the object persists as an |
338 | /// ownerless phantom. | 347 | /// ownerless phantom. |
339 | /// | 348 | /// |
340 | /// All manipulation of this set has to occur under a lock | 349 | /// All manipulation of this set has to occur under an m_entityUpdates.SyncRoot lock |
341 | /// | 350 | /// |
342 | /// </value> | 351 | /// </value> |
343 | protected HashSet<uint> m_killRecord; | 352 | // protected HashSet<uint> m_killRecord; |
344 | 353 | ||
345 | // protected HashSet<uint> m_attachmentsSent; | 354 | // protected HashSet<uint> m_attachmentsSent; |
346 | 355 | ||
347 | private int m_moneyBalance; | 356 | private int m_moneyBalance; |
357 | private bool m_deliverPackets = true; | ||
348 | private int m_animationSequenceNumber = 1; | 358 | private int m_animationSequenceNumber = 1; |
349 | private bool m_SendLogoutPacketWhenClosing = true; | 359 | private bool m_SendLogoutPacketWhenClosing = true; |
350 | 360 | ||
@@ -391,6 +401,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
391 | get { return m_startpos; } | 401 | get { return m_startpos; } |
392 | set { m_startpos = value; } | 402 | set { m_startpos = value; } |
393 | } | 403 | } |
404 | public bool DeliverPackets | ||
405 | { | ||
406 | get { return m_deliverPackets; } | ||
407 | set { | ||
408 | m_deliverPackets = value; | ||
409 | m_udpClient.m_deliverPackets = value; | ||
410 | } | ||
411 | } | ||
394 | public UUID AgentId { get { return m_agentId; } } | 412 | public UUID AgentId { get { return m_agentId; } } |
395 | public ISceneAgent SceneAgent { get; set; } | 413 | public ISceneAgent SceneAgent { get; set; } |
396 | public UUID ActiveGroupId { get { return m_activeGroupID; } } | 414 | public UUID ActiveGroupId { get { return m_activeGroupID; } } |
@@ -468,7 +486,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
468 | m_entityUpdates = new PriorityQueue(m_scene.Entities.Count); | 486 | m_entityUpdates = new PriorityQueue(m_scene.Entities.Count); |
469 | m_entityProps = new PriorityQueue(m_scene.Entities.Count); | 487 | m_entityProps = new PriorityQueue(m_scene.Entities.Count); |
470 | m_fullUpdateDataBlocksBuilder = new List<ObjectUpdatePacket.ObjectDataBlock>(); | 488 | m_fullUpdateDataBlocksBuilder = new List<ObjectUpdatePacket.ObjectDataBlock>(); |
471 | m_killRecord = new HashSet<uint>(); | 489 | // m_killRecord = new HashSet<uint>(); |
472 | // m_attachmentsSent = new HashSet<uint>(); | 490 | // m_attachmentsSent = new HashSet<uint>(); |
473 | 491 | ||
474 | m_assetService = m_scene.RequestModuleInterface<IAssetService>(); | 492 | m_assetService = m_scene.RequestModuleInterface<IAssetService>(); |
@@ -498,12 +516,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
498 | 516 | ||
499 | #region Client Methods | 517 | #region Client Methods |
500 | 518 | ||
519 | |||
520 | /// <summary> | ||
521 | /// Close down the client view | ||
522 | /// </summary> | ||
501 | public void Close() | 523 | public void Close() |
502 | { | 524 | { |
503 | Close(false); | 525 | Close(true, false); |
504 | } | 526 | } |
505 | 527 | ||
506 | public void Close(bool force) | 528 | public void Close(bool sendStop, bool force) |
507 | { | 529 | { |
508 | // We lock here to prevent race conditions between two threads calling close simultaneously (e.g. | 530 | // We lock here to prevent race conditions between two threads calling close simultaneously (e.g. |
509 | // a simultaneous relog just as a client is being closed out due to no packet ack from the old connection. | 531 | // a simultaneous relog just as a client is being closed out due to no packet ack from the old connection. |
@@ -515,7 +537,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
515 | return; | 537 | return; |
516 | 538 | ||
517 | IsActive = false; | 539 | IsActive = false; |
518 | CloseWithoutChecks(); | 540 | CloseWithoutChecks(sendStop); |
519 | } | 541 | } |
520 | } | 542 | } |
521 | 543 | ||
@@ -528,12 +550,19 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
528 | /// | 550 | /// |
529 | /// Callers must lock ClosingSyncLock before calling. | 551 | /// Callers must lock ClosingSyncLock before calling. |
530 | /// </remarks> | 552 | /// </remarks> |
531 | public void CloseWithoutChecks() | 553 | public void CloseWithoutChecks(bool sendStop) |
532 | { | 554 | { |
533 | m_log.DebugFormat( | 555 | m_log.DebugFormat( |
534 | "[CLIENT]: Close has been called for {0} attached to scene {1}", | 556 | "[CLIENT]: Close has been called for {0} attached to scene {1}", |
535 | Name, m_scene.RegionInfo.RegionName); | 557 | Name, m_scene.RegionInfo.RegionName); |
536 | 558 | ||
559 | if (sendStop) | ||
560 | { | ||
561 | // Send the STOP packet | ||
562 | DisableSimulatorPacket disable = (DisableSimulatorPacket)PacketPool.Instance.GetPacket(PacketType.DisableSimulator); | ||
563 | OutPacket(disable, ThrottleOutPacketType.Unknown); | ||
564 | } | ||
565 | |||
537 | // Shutdown the image manager | 566 | // Shutdown the image manager |
538 | ImageManager.Close(); | 567 | ImageManager.Close(); |
539 | 568 | ||
@@ -791,7 +820,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
791 | handshake.RegionInfo3.ProductName = Util.StringToBytes256(regionInfo.RegionType); | 820 | handshake.RegionInfo3.ProductName = Util.StringToBytes256(regionInfo.RegionType); |
792 | handshake.RegionInfo3.ProductSKU = Utils.EmptyBytes; | 821 | handshake.RegionInfo3.ProductSKU = Utils.EmptyBytes; |
793 | 822 | ||
794 | OutPacket(handshake, ThrottleOutPacketType.Task); | 823 | // OutPacket(handshake, ThrottleOutPacketType.Task); |
824 | // use same as MoveAgentIntoRegion (both should be task ) | ||
825 | OutPacket(handshake, ThrottleOutPacketType.Unknown); | ||
795 | } | 826 | } |
796 | 827 | ||
797 | public void MoveAgentIntoRegion(RegionInfo regInfo, Vector3 pos, Vector3 look) | 828 | public void MoveAgentIntoRegion(RegionInfo regInfo, Vector3 pos, Vector3 look) |
@@ -831,7 +862,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
831 | reply.ChatData.OwnerID = ownerID; | 862 | reply.ChatData.OwnerID = ownerID; |
832 | reply.ChatData.SourceID = fromAgentID; | 863 | reply.ChatData.SourceID = fromAgentID; |
833 | 864 | ||
834 | OutPacket(reply, ThrottleOutPacketType.Task); | 865 | OutPacket(reply, ThrottleOutPacketType.Unknown); |
835 | } | 866 | } |
836 | 867 | ||
837 | /// <summary> | 868 | /// <summary> |
@@ -1117,6 +1148,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1117 | public virtual void SendLayerData(float[] map) | 1148 | public virtual void SendLayerData(float[] map) |
1118 | { | 1149 | { |
1119 | Util.FireAndForget(DoSendLayerData, map); | 1150 | Util.FireAndForget(DoSendLayerData, map); |
1151 | |||
1152 | // Send it sync, and async. It's not that much data | ||
1153 | // and it improves user experience just so much! | ||
1154 | DoSendLayerData(map); | ||
1120 | } | 1155 | } |
1121 | 1156 | ||
1122 | /// <summary> | 1157 | /// <summary> |
@@ -1129,16 +1164,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1129 | 1164 | ||
1130 | try | 1165 | try |
1131 | { | 1166 | { |
1132 | //for (int y = 0; y < 16; y++) | 1167 | for (int y = 0; y < 16; y++) |
1133 | //{ | 1168 | { |
1134 | // for (int x = 0; x < 16; x++) | 1169 | for (int x = 0; x < 16; x+=4) |
1135 | // { | 1170 | { |
1136 | // SendLayerData(x, y, map); | 1171 | SendLayerPacket(x, y, map); |
1137 | // } | 1172 | } |
1138 | //} | 1173 | } |
1139 | |||
1140 | // Send LayerData in a spiral pattern. Fun! | ||
1141 | SendLayerTopRight(map, 0, 0, 15, 15); | ||
1142 | } | 1174 | } |
1143 | catch (Exception e) | 1175 | catch (Exception e) |
1144 | { | 1176 | { |
@@ -1146,51 +1178,35 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1146 | } | 1178 | } |
1147 | } | 1179 | } |
1148 | 1180 | ||
1149 | private void SendLayerTopRight(float[] map, int x1, int y1, int x2, int y2) | ||
1150 | { | ||
1151 | // Row | ||
1152 | for (int i = x1; i <= x2; i++) | ||
1153 | SendLayerData(i, y1, map); | ||
1154 | |||
1155 | // Column | ||
1156 | for (int j = y1 + 1; j <= y2; j++) | ||
1157 | SendLayerData(x2, j, map); | ||
1158 | |||
1159 | if (x2 - x1 > 0) | ||
1160 | SendLayerBottomLeft(map, x1, y1 + 1, x2 - 1, y2); | ||
1161 | } | ||
1162 | |||
1163 | void SendLayerBottomLeft(float[] map, int x1, int y1, int x2, int y2) | ||
1164 | { | ||
1165 | // Row in reverse | ||
1166 | for (int i = x2; i >= x1; i--) | ||
1167 | SendLayerData(i, y2, map); | ||
1168 | |||
1169 | // Column in reverse | ||
1170 | for (int j = y2 - 1; j >= y1; j--) | ||
1171 | SendLayerData(x1, j, map); | ||
1172 | |||
1173 | if (x2 - x1 > 0) | ||
1174 | SendLayerTopRight(map, x1 + 1, y1, x2, y2 - 1); | ||
1175 | } | ||
1176 | |||
1177 | /// <summary> | 1181 | /// <summary> |
1178 | /// Sends a set of four patches (x, x+1, ..., x+3) to the client | 1182 | /// Sends a set of four patches (x, x+1, ..., x+3) to the client |
1179 | /// </summary> | 1183 | /// </summary> |
1180 | /// <param name="map">heightmap</param> | 1184 | /// <param name="map">heightmap</param> |
1181 | /// <param name="px">X coordinate for patches 0..12</param> | 1185 | /// <param name="px">X coordinate for patches 0..12</param> |
1182 | /// <param name="py">Y coordinate for patches 0..15</param> | 1186 | /// <param name="py">Y coordinate for patches 0..15</param> |
1183 | // private void SendLayerPacket(float[] map, int y, int x) | 1187 | private void SendLayerPacket(int x, int y, float[] map) |
1184 | // { | 1188 | { |
1185 | // int[] patches = new int[4]; | 1189 | int[] patches = new int[4]; |
1186 | // patches[0] = x + 0 + y * 16; | 1190 | patches[0] = x + 0 + y * 16; |
1187 | // patches[1] = x + 1 + y * 16; | 1191 | patches[1] = x + 1 + y * 16; |
1188 | // patches[2] = x + 2 + y * 16; | 1192 | patches[2] = x + 2 + y * 16; |
1189 | // patches[3] = x + 3 + y * 16; | 1193 | patches[3] = x + 3 + y * 16; |
1190 | 1194 | ||
1191 | // Packet layerpack = LLClientView.TerrainManager.CreateLandPacket(map, patches); | 1195 | float[] heightmap = (map.Length == 65536) ? |
1192 | // OutPacket(layerpack, ThrottleOutPacketType.Land); | 1196 | map : |
1193 | // } | 1197 | LLHeightFieldMoronize(map); |
1198 | |||
1199 | try | ||
1200 | { | ||
1201 | Packet layerpack = TerrainCompressor.CreateLandPacket(heightmap, patches); | ||
1202 | OutPacket(layerpack, ThrottleOutPacketType.Land); | ||
1203 | } | ||
1204 | catch | ||
1205 | { | ||
1206 | for (int px = x ; px < x + 4 ; px++) | ||
1207 | SendLayerData(px, y, map); | ||
1208 | } | ||
1209 | } | ||
1194 | 1210 | ||
1195 | /// <summary> | 1211 | /// <summary> |
1196 | /// Sends a specified patch to a client | 1212 | /// Sends a specified patch to a client |
@@ -1210,7 +1226,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1210 | LayerDataPacket layerpack = TerrainCompressor.CreateLandPacket(heightmap, patches); | 1226 | LayerDataPacket layerpack = TerrainCompressor.CreateLandPacket(heightmap, patches); |
1211 | layerpack.Header.Reliable = true; | 1227 | layerpack.Header.Reliable = true; |
1212 | 1228 | ||
1213 | OutPacket(layerpack, ThrottleOutPacketType.Land); | 1229 | OutPacket(layerpack, ThrottleOutPacketType.Task); |
1214 | } | 1230 | } |
1215 | catch (Exception e) | 1231 | catch (Exception e) |
1216 | { | 1232 | { |
@@ -1573,7 +1589,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1573 | 1589 | ||
1574 | public void SendKillObject(ulong regionHandle, List<uint> localIDs) | 1590 | public void SendKillObject(ulong regionHandle, List<uint> localIDs) |
1575 | { | 1591 | { |
1576 | // m_log.DebugFormat("[CLIENT]: Sending KillObjectPacket to {0} for {1} in {2}", Name, localID, regionHandle); | 1592 | // foreach (uint id in localIDs) |
1593 | // m_log.DebugFormat("[CLIENT]: Sending KillObjectPacket to {0} for {1} in {2}", Name, id, regionHandle); | ||
1577 | 1594 | ||
1578 | KillObjectPacket kill = (KillObjectPacket)PacketPool.Instance.GetPacket(PacketType.KillObject); | 1595 | KillObjectPacket kill = (KillObjectPacket)PacketPool.Instance.GetPacket(PacketType.KillObject); |
1579 | // TODO: don't create new blocks if recycling an old packet | 1596 | // TODO: don't create new blocks if recycling an old packet |
@@ -1595,17 +1612,17 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1595 | // We MUST lock for both manipulating the kill record and sending the packet, in order to avoid a race | 1612 | // We MUST lock for both manipulating the kill record and sending the packet, in order to avoid a race |
1596 | // condition where a kill can be processed before an out-of-date update for the same object. | 1613 | // condition where a kill can be processed before an out-of-date update for the same object. |
1597 | // ProcessEntityUpdates() also takes the m_killRecord lock. | 1614 | // ProcessEntityUpdates() also takes the m_killRecord lock. |
1598 | lock (m_killRecord) | 1615 | // lock (m_killRecord) |
1599 | { | 1616 | // { |
1600 | foreach (uint localID in localIDs) | 1617 | // foreach (uint localID in localIDs) |
1601 | m_killRecord.Add(localID); | 1618 | // m_killRecord.Add(localID); |
1602 | 1619 | ||
1603 | // The throttle queue used here must match that being used for updates. Otherwise, there is a | 1620 | // The throttle queue used here must match that being used for updates. Otherwise, there is a |
1604 | // chance that a kill packet put on a separate queue will be sent to the client before an existing | 1621 | // chance that a kill packet put on a separate queue will be sent to the client before an existing |
1605 | // update packet on another queue. Receiving updates after kills results in unowned and undeletable | 1622 | // update packet on another queue. Receiving updates after kills results in unowned and undeletable |
1606 | // scene objects in a viewer until that viewer is relogged in. | 1623 | // scene objects in a viewer until that viewer is relogged in. |
1607 | OutPacket(kill, ThrottleOutPacketType.Task); | 1624 | OutPacket(kill, ThrottleOutPacketType.Task); |
1608 | } | 1625 | // } |
1609 | } | 1626 | } |
1610 | } | 1627 | } |
1611 | 1628 | ||
@@ -2063,9 +2080,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2063 | OutPacket(bulkUpdate, ThrottleOutPacketType.Asset); | 2080 | OutPacket(bulkUpdate, ThrottleOutPacketType.Asset); |
2064 | } | 2081 | } |
2065 | 2082 | ||
2066 | /// <see>IClientAPI.SendInventoryItemCreateUpdate(InventoryItemBase)</see> | ||
2067 | public void SendInventoryItemCreateUpdate(InventoryItemBase Item, uint callbackId) | 2083 | public void SendInventoryItemCreateUpdate(InventoryItemBase Item, uint callbackId) |
2068 | { | 2084 | { |
2085 | SendInventoryItemCreateUpdate(Item, UUID.Zero, callbackId); | ||
2086 | } | ||
2087 | |||
2088 | /// <see>IClientAPI.SendInventoryItemCreateUpdate(InventoryItemBase)</see> | ||
2089 | public void SendInventoryItemCreateUpdate(InventoryItemBase Item, UUID transactionID, uint callbackId) | ||
2090 | { | ||
2069 | const uint FULL_MASK_PERMISSIONS = (uint)PermissionMask.All; | 2091 | const uint FULL_MASK_PERMISSIONS = (uint)PermissionMask.All; |
2070 | 2092 | ||
2071 | UpdateCreateInventoryItemPacket InventoryReply | 2093 | UpdateCreateInventoryItemPacket InventoryReply |
@@ -2075,6 +2097,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2075 | // TODO: don't create new blocks if recycling an old packet | 2097 | // TODO: don't create new blocks if recycling an old packet |
2076 | InventoryReply.AgentData.AgentID = AgentId; | 2098 | InventoryReply.AgentData.AgentID = AgentId; |
2077 | InventoryReply.AgentData.SimApproved = true; | 2099 | InventoryReply.AgentData.SimApproved = true; |
2100 | InventoryReply.AgentData.TransactionID = transactionID; | ||
2078 | InventoryReply.InventoryData = new UpdateCreateInventoryItemPacket.InventoryDataBlock[1]; | 2101 | InventoryReply.InventoryData = new UpdateCreateInventoryItemPacket.InventoryDataBlock[1]; |
2079 | InventoryReply.InventoryData[0] = new UpdateCreateInventoryItemPacket.InventoryDataBlock(); | 2102 | InventoryReply.InventoryData[0] = new UpdateCreateInventoryItemPacket.InventoryDataBlock(); |
2080 | InventoryReply.InventoryData[0].ItemID = Item.ID; | 2103 | InventoryReply.InventoryData[0].ItemID = Item.ID; |
@@ -2144,16 +2167,20 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2144 | replytask.InventoryData.TaskID = taskID; | 2167 | replytask.InventoryData.TaskID = taskID; |
2145 | replytask.InventoryData.Serial = serial; | 2168 | replytask.InventoryData.Serial = serial; |
2146 | replytask.InventoryData.Filename = fileName; | 2169 | replytask.InventoryData.Filename = fileName; |
2147 | OutPacket(replytask, ThrottleOutPacketType.Asset); | 2170 | OutPacket(replytask, ThrottleOutPacketType.Task); |
2148 | } | 2171 | } |
2149 | 2172 | ||
2150 | public void SendXferPacket(ulong xferID, uint packet, byte[] data) | 2173 | public void SendXferPacket(ulong xferID, uint packet, byte[] data, bool isTaskInventory) |
2151 | { | 2174 | { |
2175 | ThrottleOutPacketType type = ThrottleOutPacketType.Asset; | ||
2176 | if (isTaskInventory) | ||
2177 | type = ThrottleOutPacketType.Task; | ||
2178 | |||
2152 | SendXferPacketPacket sendXfer = (SendXferPacketPacket)PacketPool.Instance.GetPacket(PacketType.SendXferPacket); | 2179 | SendXferPacketPacket sendXfer = (SendXferPacketPacket)PacketPool.Instance.GetPacket(PacketType.SendXferPacket); |
2153 | sendXfer.XferID.ID = xferID; | 2180 | sendXfer.XferID.ID = xferID; |
2154 | sendXfer.XferID.Packet = packet; | 2181 | sendXfer.XferID.Packet = packet; |
2155 | sendXfer.DataPacket.Data = data; | 2182 | sendXfer.DataPacket.Data = data; |
2156 | OutPacket(sendXfer, ThrottleOutPacketType.Asset); | 2183 | OutPacket(sendXfer, type); |
2157 | } | 2184 | } |
2158 | 2185 | ||
2159 | public void SendAbortXferPacket(ulong xferID) | 2186 | public void SendAbortXferPacket(ulong xferID) |
@@ -2335,6 +2362,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2335 | OutPacket(sound, ThrottleOutPacketType.Task); | 2362 | OutPacket(sound, ThrottleOutPacketType.Task); |
2336 | } | 2363 | } |
2337 | 2364 | ||
2365 | public void SendTransferAbort(TransferRequestPacket transferRequest) | ||
2366 | { | ||
2367 | TransferAbortPacket abort = (TransferAbortPacket)PacketPool.Instance.GetPacket(PacketType.TransferAbort); | ||
2368 | abort.TransferInfo.TransferID = transferRequest.TransferInfo.TransferID; | ||
2369 | abort.TransferInfo.ChannelType = transferRequest.TransferInfo.ChannelType; | ||
2370 | m_log.Debug("[Assets] Aborting transfer; asset request failed"); | ||
2371 | OutPacket(abort, ThrottleOutPacketType.Task); | ||
2372 | } | ||
2373 | |||
2338 | public void SendTriggeredSound(UUID soundID, UUID ownerID, UUID objectID, UUID parentID, ulong handle, Vector3 position, float gain) | 2374 | public void SendTriggeredSound(UUID soundID, UUID ownerID, UUID objectID, UUID parentID, ulong handle, Vector3 position, float gain) |
2339 | { | 2375 | { |
2340 | SoundTriggerPacket sound = (SoundTriggerPacket)PacketPool.Instance.GetPacket(PacketType.SoundTrigger); | 2376 | SoundTriggerPacket sound = (SoundTriggerPacket)PacketPool.Instance.GetPacket(PacketType.SoundTrigger); |
@@ -2627,6 +2663,35 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2627 | } | 2663 | } |
2628 | } | 2664 | } |
2629 | 2665 | ||
2666 | public void SendPartPhysicsProprieties(ISceneEntity entity) | ||
2667 | { | ||
2668 | SceneObjectPart part = (SceneObjectPart)entity; | ||
2669 | if (part != null && AgentId != UUID.Zero) | ||
2670 | { | ||
2671 | try | ||
2672 | { | ||
2673 | IEventQueue eq = Scene.RequestModuleInterface<IEventQueue>(); | ||
2674 | if (eq != null) | ||
2675 | { | ||
2676 | uint localid = part.LocalId; | ||
2677 | byte physshapetype = part.PhysicsShapeType; | ||
2678 | float density = part.Density; | ||
2679 | float friction = part.Friction; | ||
2680 | float bounce = part.Bounciness; | ||
2681 | float gravmod = part.GravityModifier; | ||
2682 | |||
2683 | eq.partPhysicsProperties(localid, physshapetype, density, friction, bounce, gravmod,AgentId); | ||
2684 | } | ||
2685 | } | ||
2686 | catch (Exception ex) | ||
2687 | { | ||
2688 | m_log.Error("Unable to send part Physics Proprieties - exception: " + ex.ToString()); | ||
2689 | } | ||
2690 | part.UpdatePhysRequired = false; | ||
2691 | } | ||
2692 | } | ||
2693 | |||
2694 | |||
2630 | 2695 | ||
2631 | public void SendGroupNameReply(UUID groupLLUID, string GroupName) | 2696 | public void SendGroupNameReply(UUID groupLLUID, string GroupName) |
2632 | { | 2697 | { |
@@ -2724,7 +2789,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2724 | else | 2789 | else |
2725 | { | 2790 | { |
2726 | int processedLength = 0; | 2791 | int processedLength = 0; |
2727 | int maxChunkSize = Settings.MAX_PACKET_SIZE - 100; | 2792 | // int maxChunkSize = Settings.MAX_PACKET_SIZE - 100; |
2793 | |||
2794 | int maxChunkSize = (int) MaxTransferBytesPerPacket; | ||
2728 | int packetNumber = 0; | 2795 | int packetNumber = 0; |
2729 | 2796 | ||
2730 | while (processedLength < req.AssetInf.Data.Length) | 2797 | while (processedLength < req.AssetInf.Data.Length) |
@@ -2795,7 +2862,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
2795 | reply.Data.ParcelID = parcelID; | 2862 | reply.Data.ParcelID = parcelID; |
2796 | reply.Data.OwnerID = land.OwnerID; | 2863 | reply.Data.OwnerID = land.OwnerID; |
2797 | reply.Data.Name = Utils.StringToBytes(land.Name); | 2864 | reply.Data.Name = Utils.StringToBytes(land.Name); |
2798 | reply.Data.Desc = Utils.StringToBytes(land.Description); | 2865 | if (land != null && land.Description != null && land.Description != String.Empty) |
2866 | reply.Data.Desc = Utils.StringToBytes(land.Description.Substring(0, land.Description.Length > 254 ? 254: land.Description.Length)); | ||
2867 | else | ||
2868 | reply.Data.Desc = new Byte[0]; | ||
2799 | reply.Data.ActualArea = land.Area; | 2869 | reply.Data.ActualArea = land.Area; |
2800 | reply.Data.BillableArea = land.Area; // TODO: what is this? | 2870 | reply.Data.BillableArea = land.Area; // TODO: what is this? |
2801 | 2871 | ||
@@ -3530,7 +3600,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
3530 | 3600 | ||
3531 | AvatarAppearancePacket avp = (AvatarAppearancePacket)PacketPool.Instance.GetPacket(PacketType.AvatarAppearance); | 3601 | AvatarAppearancePacket avp = (AvatarAppearancePacket)PacketPool.Instance.GetPacket(PacketType.AvatarAppearance); |
3532 | // TODO: don't create new blocks if recycling an old packet | 3602 | // TODO: don't create new blocks if recycling an old packet |
3533 | avp.VisualParam = new AvatarAppearancePacket.VisualParamBlock[218]; | 3603 | avp.VisualParam = new AvatarAppearancePacket.VisualParamBlock[visualParams.Length]; |
3534 | avp.ObjectData.TextureEntry = textureEntry; | 3604 | avp.ObjectData.TextureEntry = textureEntry; |
3535 | 3605 | ||
3536 | AvatarAppearancePacket.VisualParamBlock avblock = null; | 3606 | AvatarAppearancePacket.VisualParamBlock avblock = null; |
@@ -3660,7 +3730,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
3660 | /// </summary> | 3730 | /// </summary> |
3661 | public void SendEntityUpdate(ISceneEntity entity, PrimUpdateFlags updateFlags) | 3731 | public void SendEntityUpdate(ISceneEntity entity, PrimUpdateFlags updateFlags) |
3662 | { | 3732 | { |
3663 | //double priority = m_prioritizer.GetUpdatePriority(this, entity); | 3733 | if (entity is SceneObjectPart) |
3734 | { | ||
3735 | SceneObjectPart e = (SceneObjectPart)entity; | ||
3736 | SceneObjectGroup g = e.ParentGroup; | ||
3737 | if (g.RootPart.Shape.State > 30) // HUD | ||
3738 | if (g.OwnerID != AgentId) | ||
3739 | return; // Don't send updates for other people's HUDs | ||
3740 | } | ||
3741 | |||
3664 | uint priority = m_prioritizer.GetUpdatePriority(this, entity); | 3742 | uint priority = m_prioritizer.GetUpdatePriority(this, entity); |
3665 | 3743 | ||
3666 | lock (m_entityUpdates.SyncRoot) | 3744 | lock (m_entityUpdates.SyncRoot) |
@@ -3727,27 +3805,74 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
3727 | 3805 | ||
3728 | // We must lock for both manipulating the kill record and sending the packet, in order to avoid a race | 3806 | // We must lock for both manipulating the kill record and sending the packet, in order to avoid a race |
3729 | // condition where a kill can be processed before an out-of-date update for the same object. | 3807 | // condition where a kill can be processed before an out-of-date update for the same object. |
3730 | lock (m_killRecord) | 3808 | float avgTimeDilation = 1.0f; |
3809 | IEntityUpdate iupdate; | ||
3810 | Int32 timeinqueue; // this is just debugging code & can be dropped later | ||
3811 | |||
3812 | while (updatesThisCall < maxUpdates) | ||
3731 | { | 3813 | { |
3732 | float avgTimeDilation = 1.0f; | 3814 | lock (m_entityUpdates.SyncRoot) |
3733 | IEntityUpdate iupdate; | 3815 | if (!m_entityUpdates.TryDequeue(out iupdate, out timeinqueue)) |
3734 | Int32 timeinqueue; // this is just debugging code & can be dropped later | 3816 | break; |
3735 | 3817 | ||
3736 | while (updatesThisCall < maxUpdates) | 3818 | EntityUpdate update = (EntityUpdate)iupdate; |
3819 | |||
3820 | avgTimeDilation += update.TimeDilation; | ||
3821 | avgTimeDilation *= 0.5f; | ||
3822 | |||
3823 | if (update.Entity is SceneObjectPart) | ||
3737 | { | 3824 | { |
3738 | lock (m_entityUpdates.SyncRoot) | 3825 | SceneObjectPart part = (SceneObjectPart)update.Entity; |
3739 | if (!m_entityUpdates.TryDequeue(out iupdate, out timeinqueue)) | ||
3740 | break; | ||
3741 | 3826 | ||
3742 | EntityUpdate update = (EntityUpdate)iupdate; | 3827 | if (part.ParentGroup.IsDeleted) |
3743 | 3828 | continue; | |
3744 | avgTimeDilation += update.TimeDilation; | ||
3745 | avgTimeDilation *= 0.5f; | ||
3746 | 3829 | ||
3747 | if (update.Entity is SceneObjectPart) | 3830 | if (part.ParentGroup.IsAttachment) |
3831 | { // Someone else's HUD, why are we getting these? | ||
3832 | if (part.ParentGroup.OwnerID != AgentId && | ||
3833 | part.ParentGroup.RootPart.Shape.State > 30) | ||
3834 | continue; | ||
3835 | ScenePresence sp; | ||
3836 | // Owner is not in the sim, don't update it to | ||
3837 | // anyone | ||
3838 | if (!m_scene.TryGetScenePresence(part.OwnerID, out sp)) | ||
3839 | continue; | ||
3840 | |||
3841 | List<SceneObjectGroup> atts = sp.GetAttachments(); | ||
3842 | bool found = false; | ||
3843 | foreach (SceneObjectGroup att in atts) | ||
3844 | { | ||
3845 | if (att == part.ParentGroup) | ||
3846 | { | ||
3847 | found = true; | ||
3848 | break; | ||
3849 | } | ||
3850 | } | ||
3851 | |||
3852 | // It's an attachment of a valid avatar, but | ||
3853 | // doesn't seem to be attached, skip | ||
3854 | if (!found) | ||
3855 | continue; | ||
3856 | |||
3857 | // On vehicle crossing, the attachments are received | ||
3858 | // while the avatar is still a child. Don't send | ||
3859 | // updates here because the LocalId has not yet | ||
3860 | // been updated and the viewer will derender the | ||
3861 | // attachments until the avatar becomes root. | ||
3862 | if (sp.IsChildAgent) | ||
3863 | continue; | ||
3864 | |||
3865 | // If the object is an attachment we don't want it to be in the kill | ||
3866 | // record. Else attaching from inworld and subsequently dropping | ||
3867 | // it will no longer work. | ||
3868 | // lock (m_killRecord) | ||
3869 | // { | ||
3870 | // m_killRecord.Remove(part.LocalId); | ||
3871 | // m_killRecord.Remove(part.ParentGroup.RootPart.LocalId); | ||
3872 | // } | ||
3873 | } | ||
3874 | else | ||
3748 | { | 3875 | { |
3749 | SceneObjectPart part = (SceneObjectPart)update.Entity; | ||
3750 | |||
3751 | // Please do not remove this unless you can demonstrate on the OpenSim mailing list that a client | 3876 | // Please do not remove this unless you can demonstrate on the OpenSim mailing list that a client |
3752 | // will never receive an update after a prim kill. Even then, keeping the kill record may be a good | 3877 | // will never receive an update after a prim kill. Even then, keeping the kill record may be a good |
3753 | // safety measure. | 3878 | // safety measure. |
@@ -3758,241 +3883,177 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
3758 | // | 3883 | // |
3759 | // This doesn't appear to apply to child prims - a client will happily ignore these updates | 3884 | // This doesn't appear to apply to child prims - a client will happily ignore these updates |
3760 | // after the root prim has been deleted. | 3885 | // after the root prim has been deleted. |
3761 | if (m_killRecord.Contains(part.LocalId)) | 3886 | // |
3762 | { | 3887 | // We ignore this for attachments because attaching something from inworld breaks unless we do. |
3763 | // m_log.WarnFormat( | 3888 | // lock (m_killRecord) |
3764 | // "[CLIENT]: Preventing update for prim with local id {0} after client for user {1} told it was deleted", | 3889 | // { |
3765 | // part.LocalId, Name); | 3890 | // if (m_killRecord.Contains(part.LocalId)) |
3766 | continue; | 3891 | // continue; |
3767 | } | 3892 | // if (m_killRecord.Contains(part.ParentGroup.RootPart.LocalId)) |
3768 | 3893 | // continue; | |
3769 | if (part.ParentGroup.IsAttachment && m_disableFacelights) | 3894 | // } |
3895 | } | ||
3896 | |||
3897 | if (part.ParentGroup.IsAttachment && m_disableFacelights) | ||
3898 | { | ||
3899 | if (part.ParentGroup.RootPart.Shape.State != (byte)AttachmentPoint.LeftHand && | ||
3900 | part.ParentGroup.RootPart.Shape.State != (byte)AttachmentPoint.RightHand) | ||
3770 | { | 3901 | { |
3771 | if (part.ParentGroup.RootPart.Shape.State != (byte)AttachmentPoint.LeftHand && | 3902 | part.Shape.LightEntry = false; |
3772 | part.ParentGroup.RootPart.Shape.State != (byte)AttachmentPoint.RightHand) | ||
3773 | { | ||
3774 | part.Shape.LightEntry = false; | ||
3775 | } | ||
3776 | } | 3903 | } |
3777 | } | 3904 | } |
3778 | 3905 | } | |
3779 | #region UpdateFlags to packet type conversion | 3906 | |
3780 | 3907 | ++updatesThisCall; | |
3781 | PrimUpdateFlags updateFlags = (PrimUpdateFlags)update.Flags; | 3908 | |
3782 | 3909 | #region UpdateFlags to packet type conversion | |
3783 | bool canUseCompressed = true; | 3910 | |
3784 | bool canUseImproved = true; | 3911 | PrimUpdateFlags updateFlags = (PrimUpdateFlags)update.Flags; |
3785 | 3912 | ||
3786 | // Compressed object updates only make sense for LL primitives | 3913 | bool canUseCompressed = true; |
3787 | if (!(update.Entity is SceneObjectPart)) | 3914 | bool canUseImproved = true; |
3915 | |||
3916 | // Compressed object updates only make sense for LL primitives | ||
3917 | if (!(update.Entity is SceneObjectPart)) | ||
3918 | { | ||
3919 | canUseCompressed = false; | ||
3920 | } | ||
3921 | |||
3922 | if (updateFlags.HasFlag(PrimUpdateFlags.FullUpdate)) | ||
3923 | { | ||
3924 | canUseCompressed = false; | ||
3925 | canUseImproved = false; | ||
3926 | } | ||
3927 | else | ||
3928 | { | ||
3929 | if (updateFlags.HasFlag(PrimUpdateFlags.Velocity) || | ||
3930 | updateFlags.HasFlag(PrimUpdateFlags.Acceleration) || | ||
3931 | updateFlags.HasFlag(PrimUpdateFlags.CollisionPlane) || | ||
3932 | updateFlags.HasFlag(PrimUpdateFlags.Joint)) | ||
3788 | { | 3933 | { |
3789 | canUseCompressed = false; | 3934 | canUseCompressed = false; |
3790 | } | 3935 | } |
3791 | 3936 | ||
3792 | if (updateFlags.HasFlag(PrimUpdateFlags.FullUpdate)) | 3937 | if (updateFlags.HasFlag(PrimUpdateFlags.PrimFlags) || |
3938 | updateFlags.HasFlag(PrimUpdateFlags.ParentID) || | ||
3939 | updateFlags.HasFlag(PrimUpdateFlags.Scale) || | ||
3940 | updateFlags.HasFlag(PrimUpdateFlags.PrimData) || | ||
3941 | updateFlags.HasFlag(PrimUpdateFlags.Text) || | ||
3942 | updateFlags.HasFlag(PrimUpdateFlags.NameValue) || | ||
3943 | updateFlags.HasFlag(PrimUpdateFlags.ExtraData) || | ||
3944 | updateFlags.HasFlag(PrimUpdateFlags.TextureAnim) || | ||
3945 | updateFlags.HasFlag(PrimUpdateFlags.Sound) || | ||
3946 | updateFlags.HasFlag(PrimUpdateFlags.Particles) || | ||
3947 | updateFlags.HasFlag(PrimUpdateFlags.Material) || | ||
3948 | updateFlags.HasFlag(PrimUpdateFlags.ClickAction) || | ||
3949 | updateFlags.HasFlag(PrimUpdateFlags.MediaURL) || | ||
3950 | updateFlags.HasFlag(PrimUpdateFlags.Joint)) | ||
3793 | { | 3951 | { |
3794 | canUseCompressed = false; | ||
3795 | canUseImproved = false; | 3952 | canUseImproved = false; |
3796 | } | 3953 | } |
3797 | else | 3954 | } |
3798 | { | ||
3799 | if (updateFlags.HasFlag(PrimUpdateFlags.Velocity) || | ||
3800 | updateFlags.HasFlag(PrimUpdateFlags.Acceleration) || | ||
3801 | updateFlags.HasFlag(PrimUpdateFlags.CollisionPlane) || | ||
3802 | updateFlags.HasFlag(PrimUpdateFlags.Joint)) | ||
3803 | { | ||
3804 | canUseCompressed = false; | ||
3805 | } | ||
3806 | |||
3807 | if (updateFlags.HasFlag(PrimUpdateFlags.PrimFlags) || | ||
3808 | updateFlags.HasFlag(PrimUpdateFlags.ParentID) || | ||
3809 | updateFlags.HasFlag(PrimUpdateFlags.Scale) || | ||
3810 | updateFlags.HasFlag(PrimUpdateFlags.PrimData) || | ||
3811 | updateFlags.HasFlag(PrimUpdateFlags.Text) || | ||
3812 | updateFlags.HasFlag(PrimUpdateFlags.NameValue) || | ||
3813 | updateFlags.HasFlag(PrimUpdateFlags.ExtraData) || | ||
3814 | updateFlags.HasFlag(PrimUpdateFlags.TextureAnim) || | ||
3815 | updateFlags.HasFlag(PrimUpdateFlags.Sound) || | ||
3816 | updateFlags.HasFlag(PrimUpdateFlags.Particles) || | ||
3817 | updateFlags.HasFlag(PrimUpdateFlags.Material) || | ||
3818 | updateFlags.HasFlag(PrimUpdateFlags.ClickAction) || | ||
3819 | updateFlags.HasFlag(PrimUpdateFlags.MediaURL) || | ||
3820 | updateFlags.HasFlag(PrimUpdateFlags.Joint)) | ||
3821 | { | ||
3822 | canUseImproved = false; | ||
3823 | } | ||
3824 | } | ||
3825 | |||
3826 | #endregion UpdateFlags to packet type conversion | ||
3827 | |||
3828 | #region Block Construction | ||
3829 | |||
3830 | // TODO: Remove this once we can build compressed updates | ||
3831 | canUseCompressed = false; | ||
3832 | 3955 | ||
3833 | if (!canUseImproved && !canUseCompressed) | 3956 | #endregion UpdateFlags to packet type conversion |
3834 | { | ||
3835 | ObjectUpdatePacket.ObjectDataBlock updateBlock; | ||
3836 | 3957 | ||
3837 | if (update.Entity is ScenePresence) | 3958 | #region Block Construction |
3838 | { | ||
3839 | updateBlock = CreateAvatarUpdateBlock((ScenePresence)update.Entity); | ||
3840 | } | ||
3841 | else | ||
3842 | { | ||
3843 | SceneObjectPart part = (SceneObjectPart)update.Entity; | ||
3844 | updateBlock = CreatePrimUpdateBlock(part, AgentId); | ||
3845 | |||
3846 | // If the part has become a private hud since the update was scheduled then we do not | ||
3847 | // want to send it to other avatars. | ||
3848 | if (part.ParentGroup.IsAttachment | ||
3849 | && part.ParentGroup.HasPrivateAttachmentPoint | ||
3850 | && part.ParentGroup.AttachedAvatar != AgentId) | ||
3851 | continue; | ||
3852 | |||
3853 | // If the part has since been deleted, then drop the update. In the case of attachments, | ||
3854 | // this is to avoid spurious updates to other viewers since post-processing of attachments | ||
3855 | // has to change the IsAttachment flag for various reasons (which will end up in a pass | ||
3856 | // of the test above). | ||
3857 | // | ||
3858 | // Actual deletions (kills) happen in another method. | ||
3859 | if (part.ParentGroup.IsDeleted) | ||
3860 | continue; | ||
3861 | } | ||
3862 | 3959 | ||
3863 | objectUpdateBlocks.Value.Add(updateBlock); | 3960 | // TODO: Remove this once we can build compressed updates |
3864 | objectUpdates.Value.Add(update); | 3961 | canUseCompressed = false; |
3865 | } | ||
3866 | else if (!canUseImproved) | ||
3867 | { | ||
3868 | SceneObjectPart part = (SceneObjectPart)update.Entity; | ||
3869 | ObjectUpdateCompressedPacket.ObjectDataBlock compressedBlock | ||
3870 | = CreateCompressedUpdateBlock(part, updateFlags); | ||
3871 | |||
3872 | // If the part has since been deleted, then drop the update. In the case of attachments, | ||
3873 | // this is to avoid spurious updates to other viewers since post-processing of attachments | ||
3874 | // has to change the IsAttachment flag for various reasons (which will end up in a pass | ||
3875 | // of the test above). | ||
3876 | // | ||
3877 | // Actual deletions (kills) happen in another method. | ||
3878 | if (part.ParentGroup.IsDeleted) | ||
3879 | continue; | ||
3880 | 3962 | ||
3881 | compressedUpdateBlocks.Value.Add(compressedBlock); | 3963 | if (!canUseImproved && !canUseCompressed) |
3882 | compressedUpdates.Value.Add(update); | 3964 | { |
3965 | if (update.Entity is ScenePresence) | ||
3966 | { | ||
3967 | objectUpdateBlocks.Value.Add(CreateAvatarUpdateBlock((ScenePresence)update.Entity)); | ||
3883 | } | 3968 | } |
3884 | else | 3969 | else |
3885 | { | 3970 | { |
3886 | if (update.Entity is ScenePresence && ((ScenePresence)update.Entity).UUID == AgentId) | 3971 | objectUpdateBlocks.Value.Add(CreatePrimUpdateBlock((SceneObjectPart)update.Entity, this.m_agentId)); |
3887 | { | ||
3888 | // Self updates go into a special list | ||
3889 | terseAgentUpdateBlocks.Value.Add(CreateImprovedTerseBlock(update.Entity, updateFlags.HasFlag(PrimUpdateFlags.Textures))); | ||
3890 | terseAgentUpdates.Value.Add(update); | ||
3891 | } | ||
3892 | else | ||
3893 | { | ||
3894 | ImprovedTerseObjectUpdatePacket.ObjectDataBlock terseUpdateBlock | ||
3895 | = CreateImprovedTerseBlock(update.Entity, updateFlags.HasFlag(PrimUpdateFlags.Textures)); | ||
3896 | |||
3897 | // Everything else goes here | ||
3898 | if (update.Entity is SceneObjectPart) | ||
3899 | { | ||
3900 | SceneObjectPart part = (SceneObjectPart)update.Entity; | ||
3901 | |||
3902 | // If the part has become a private hud since the update was scheduled then we do not | ||
3903 | // want to send it to other avatars. | ||
3904 | if (part.ParentGroup.IsAttachment | ||
3905 | && part.ParentGroup.HasPrivateAttachmentPoint | ||
3906 | && part.ParentGroup.AttachedAvatar != AgentId) | ||
3907 | continue; | ||
3908 | |||
3909 | // If the part has since been deleted, then drop the update. In the case of attachments, | ||
3910 | // this is to avoid spurious updates to other viewers since post-processing of attachments | ||
3911 | // has to change the IsAttachment flag for various reasons (which will end up in a pass | ||
3912 | // of the test above). | ||
3913 | // | ||
3914 | // Actual deletions (kills) happen in another method. | ||
3915 | if (part.ParentGroup.IsDeleted) | ||
3916 | continue; | ||
3917 | } | ||
3918 | |||
3919 | terseUpdateBlocks.Value.Add(terseUpdateBlock); | ||
3920 | terseUpdates.Value.Add(update); | ||
3921 | } | ||
3922 | } | 3972 | } |
3923 | |||
3924 | ++updatesThisCall; | ||
3925 | |||
3926 | #endregion Block Construction | ||
3927 | } | 3973 | } |
3928 | 3974 | else if (!canUseImproved) | |
3929 | #region Packet Sending | ||
3930 | ushort timeDilation = Utils.FloatToUInt16(avgTimeDilation, 0.0f, 1.0f); | ||
3931 | |||
3932 | if (terseAgentUpdateBlocks.IsValueCreated) | ||
3933 | { | 3975 | { |
3934 | List<ImprovedTerseObjectUpdatePacket.ObjectDataBlock> blocks = terseAgentUpdateBlocks.Value; | 3976 | compressedUpdateBlocks.Value.Add(CreateCompressedUpdateBlock((SceneObjectPart)update.Entity, updateFlags)); |
3977 | } | ||
3978 | else | ||
3979 | { | ||
3980 | if (update.Entity is ScenePresence && ((ScenePresence)update.Entity).UUID == AgentId) | ||
3981 | // Self updates go into a special list | ||
3982 | terseAgentUpdateBlocks.Value.Add(CreateImprovedTerseBlock(update.Entity, updateFlags.HasFlag(PrimUpdateFlags.Textures))); | ||
3983 | else | ||
3984 | // Everything else goes here | ||
3985 | terseUpdateBlocks.Value.Add(CreateImprovedTerseBlock(update.Entity, updateFlags.HasFlag(PrimUpdateFlags.Textures))); | ||
3986 | } | ||
3935 | 3987 | ||
3936 | ImprovedTerseObjectUpdatePacket packet | 3988 | #endregion Block Construction |
3937 | = (ImprovedTerseObjectUpdatePacket)PacketPool.Instance.GetPacket(PacketType.ImprovedTerseObjectUpdate); | 3989 | } |
3938 | 3990 | ||
3939 | packet.RegionData.RegionHandle = m_scene.RegionInfo.RegionHandle; | 3991 | #region Packet Sending |
3940 | packet.RegionData.TimeDilation = timeDilation; | 3992 | |
3941 | packet.ObjectData = new ImprovedTerseObjectUpdatePacket.ObjectDataBlock[blocks.Count]; | 3993 | const float TIME_DILATION = 1.0f; |
3994 | ushort timeDilation = Utils.FloatToUInt16(avgTimeDilation, 0.0f, 1.0f); | ||
3995 | |||
3996 | if (terseAgentUpdateBlocks.IsValueCreated) | ||
3997 | { | ||
3998 | List<ImprovedTerseObjectUpdatePacket.ObjectDataBlock> blocks = terseAgentUpdateBlocks.Value; | ||
3942 | 3999 | ||
3943 | for (int i = 0; i < blocks.Count; i++) | 4000 | ImprovedTerseObjectUpdatePacket packet |
3944 | packet.ObjectData[i] = blocks[i]; | 4001 | = (ImprovedTerseObjectUpdatePacket)PacketPool.Instance.GetPacket(PacketType.ImprovedTerseObjectUpdate); |
3945 | // If any of the packets created from this call go unacknowledged, all of the updates will be resent | 4002 | packet.RegionData.RegionHandle = m_scene.RegionInfo.RegionHandle; |
3946 | OutPacket(packet, ThrottleOutPacketType.Unknown, true, delegate(OutgoingPacket oPacket) { ResendPrimUpdates(terseAgentUpdates.Value, oPacket); }); | 4003 | packet.RegionData.TimeDilation = timeDilation; |
3947 | } | 4004 | packet.ObjectData = new ImprovedTerseObjectUpdatePacket.ObjectDataBlock[blocks.Count]; |
3948 | 4005 | ||
3949 | if (objectUpdateBlocks.IsValueCreated) | 4006 | for (int i = 0; i < blocks.Count; i++) |
3950 | { | 4007 | packet.ObjectData[i] = blocks[i]; |
3951 | List<ObjectUpdatePacket.ObjectDataBlock> blocks = objectUpdateBlocks.Value; | ||
3952 | |||
3953 | ObjectUpdatePacket packet = (ObjectUpdatePacket)PacketPool.Instance.GetPacket(PacketType.ObjectUpdate); | ||
3954 | packet.RegionData.RegionHandle = m_scene.RegionInfo.RegionHandle; | ||
3955 | packet.RegionData.TimeDilation = timeDilation; | ||
3956 | packet.ObjectData = new ObjectUpdatePacket.ObjectDataBlock[blocks.Count]; | ||
3957 | |||
3958 | for (int i = 0; i < blocks.Count; i++) | ||
3959 | packet.ObjectData[i] = blocks[i]; | ||
3960 | // If any of the packets created from this call go unacknowledged, all of the updates will be resent | ||
3961 | OutPacket(packet, ThrottleOutPacketType.Task, true, delegate(OutgoingPacket oPacket) { ResendPrimUpdates(objectUpdates.Value, oPacket); }); | ||
3962 | } | ||
3963 | |||
3964 | if (compressedUpdateBlocks.IsValueCreated) | ||
3965 | { | ||
3966 | List<ObjectUpdateCompressedPacket.ObjectDataBlock> blocks = compressedUpdateBlocks.Value; | ||
3967 | |||
3968 | ObjectUpdateCompressedPacket packet = (ObjectUpdateCompressedPacket)PacketPool.Instance.GetPacket(PacketType.ObjectUpdateCompressed); | ||
3969 | packet.RegionData.RegionHandle = m_scene.RegionInfo.RegionHandle; | ||
3970 | packet.RegionData.TimeDilation = timeDilation; | ||
3971 | packet.ObjectData = new ObjectUpdateCompressedPacket.ObjectDataBlock[blocks.Count]; | ||
3972 | |||
3973 | for (int i = 0; i < blocks.Count; i++) | ||
3974 | packet.ObjectData[i] = blocks[i]; | ||
3975 | // If any of the packets created from this call go unacknowledged, all of the updates will be resent | ||
3976 | OutPacket(packet, ThrottleOutPacketType.Task, true, delegate(OutgoingPacket oPacket) { ResendPrimUpdates(compressedUpdates.Value, oPacket); }); | ||
3977 | } | ||
3978 | 4008 | ||
3979 | if (terseUpdateBlocks.IsValueCreated) | 4009 | OutPacket(packet, ThrottleOutPacketType.Unknown, true); |
3980 | { | 4010 | } |
3981 | List<ImprovedTerseObjectUpdatePacket.ObjectDataBlock> blocks = terseUpdateBlocks.Value; | ||
3982 | |||
3983 | ImprovedTerseObjectUpdatePacket packet | ||
3984 | = (ImprovedTerseObjectUpdatePacket)PacketPool.Instance.GetPacket( | ||
3985 | PacketType.ImprovedTerseObjectUpdate); | ||
3986 | 4011 | ||
3987 | packet.RegionData.RegionHandle = m_scene.RegionInfo.RegionHandle; | 4012 | if (objectUpdateBlocks.IsValueCreated) |
3988 | packet.RegionData.TimeDilation = timeDilation; | 4013 | { |
3989 | packet.ObjectData = new ImprovedTerseObjectUpdatePacket.ObjectDataBlock[blocks.Count]; | 4014 | List<ObjectUpdatePacket.ObjectDataBlock> blocks = objectUpdateBlocks.Value; |
3990 | 4015 | ||
3991 | for (int i = 0; i < blocks.Count; i++) | 4016 | ObjectUpdatePacket packet = (ObjectUpdatePacket)PacketPool.Instance.GetPacket(PacketType.ObjectUpdate); |
3992 | packet.ObjectData[i] = blocks[i]; | 4017 | packet.RegionData.RegionHandle = m_scene.RegionInfo.RegionHandle; |
3993 | // If any of the packets created from this call go unacknowledged, all of the updates will be resent | 4018 | packet.RegionData.TimeDilation = timeDilation; |
3994 | OutPacket(packet, ThrottleOutPacketType.Task, true, delegate(OutgoingPacket oPacket) { ResendPrimUpdates(terseUpdates.Value, oPacket); }); | 4019 | packet.ObjectData = new ObjectUpdatePacket.ObjectDataBlock[blocks.Count]; |
3995 | } | 4020 | |
4021 | for (int i = 0; i < blocks.Count; i++) | ||
4022 | packet.ObjectData[i] = blocks[i]; | ||
4023 | |||
4024 | OutPacket(packet, ThrottleOutPacketType.Task, true); | ||
4025 | } | ||
4026 | |||
4027 | if (compressedUpdateBlocks.IsValueCreated) | ||
4028 | { | ||
4029 | List<ObjectUpdateCompressedPacket.ObjectDataBlock> blocks = compressedUpdateBlocks.Value; | ||
4030 | |||
4031 | ObjectUpdateCompressedPacket packet = (ObjectUpdateCompressedPacket)PacketPool.Instance.GetPacket(PacketType.ObjectUpdateCompressed); | ||
4032 | packet.RegionData.RegionHandle = m_scene.RegionInfo.RegionHandle; | ||
4033 | packet.RegionData.TimeDilation = timeDilation; | ||
4034 | packet.ObjectData = new ObjectUpdateCompressedPacket.ObjectDataBlock[blocks.Count]; | ||
4035 | |||
4036 | for (int i = 0; i < blocks.Count; i++) | ||
4037 | packet.ObjectData[i] = blocks[i]; | ||
4038 | |||
4039 | OutPacket(packet, ThrottleOutPacketType.Task, true); | ||
4040 | } | ||
4041 | |||
4042 | if (terseUpdateBlocks.IsValueCreated) | ||
4043 | { | ||
4044 | List<ImprovedTerseObjectUpdatePacket.ObjectDataBlock> blocks = terseUpdateBlocks.Value; | ||
4045 | |||
4046 | ImprovedTerseObjectUpdatePacket packet | ||
4047 | = (ImprovedTerseObjectUpdatePacket)PacketPool.Instance.GetPacket( | ||
4048 | PacketType.ImprovedTerseObjectUpdate); | ||
4049 | packet.RegionData.RegionHandle = m_scene.RegionInfo.RegionHandle; | ||
4050 | packet.RegionData.TimeDilation = timeDilation; | ||
4051 | packet.ObjectData = new ImprovedTerseObjectUpdatePacket.ObjectDataBlock[blocks.Count]; | ||
4052 | |||
4053 | for (int i = 0; i < blocks.Count; i++) | ||
4054 | packet.ObjectData[i] = blocks[i]; | ||
4055 | |||
4056 | OutPacket(packet, ThrottleOutPacketType.Task, true, delegate(OutgoingPacket oPacket) { ResendPrimUpdates(terseUpdates.Value, oPacket); }); | ||
3996 | } | 4057 | } |
3997 | 4058 | ||
3998 | #endregion Packet Sending | 4059 | #endregion Packet Sending |
@@ -4285,11 +4346,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4285 | 4346 | ||
4286 | // Pass in the delegate so that if this packet needs to be resent, we send the current properties | 4347 | // Pass in the delegate so that if this packet needs to be resent, we send the current properties |
4287 | // of the object rather than the properties when the packet was created | 4348 | // of the object rather than the properties when the packet was created |
4288 | OutPacket(packet, ThrottleOutPacketType.Task, true, | 4349 | // HACK : Remove intelligent resending until it's fixed in core |
4289 | delegate(OutgoingPacket oPacket) | 4350 | //OutPacket(packet, ThrottleOutPacketType.Task, true, |
4290 | { | 4351 | // delegate(OutgoingPacket oPacket) |
4291 | ResendPropertyUpdates(updates, oPacket); | 4352 | // { |
4292 | }); | 4353 | // ResendPropertyUpdates(updates, oPacket); |
4354 | // }); | ||
4355 | OutPacket(packet, ThrottleOutPacketType.Task, true); | ||
4293 | 4356 | ||
4294 | // pbcnt += blocks.Count; | 4357 | // pbcnt += blocks.Count; |
4295 | // ppcnt++; | 4358 | // ppcnt++; |
@@ -4315,11 +4378,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4315 | // of the object rather than the properties when the packet was created | 4378 | // of the object rather than the properties when the packet was created |
4316 | List<ObjectPropertyUpdate> updates = new List<ObjectPropertyUpdate>(); | 4379 | List<ObjectPropertyUpdate> updates = new List<ObjectPropertyUpdate>(); |
4317 | updates.Add(familyUpdates.Value[i]); | 4380 | updates.Add(familyUpdates.Value[i]); |
4318 | OutPacket(packet, ThrottleOutPacketType.Task, true, | 4381 | // HACK : Remove intelligent resending until it's fixed in core |
4319 | delegate(OutgoingPacket oPacket) | 4382 | //OutPacket(packet, ThrottleOutPacketType.Task, true, |
4320 | { | 4383 | // delegate(OutgoingPacket oPacket) |
4321 | ResendPropertyUpdates(updates, oPacket); | 4384 | // { |
4322 | }); | 4385 | // ResendPropertyUpdates(updates, oPacket); |
4386 | // }); | ||
4387 | OutPacket(packet, ThrottleOutPacketType.Task, true); | ||
4323 | 4388 | ||
4324 | // fpcnt++; | 4389 | // fpcnt++; |
4325 | // fbcnt++; | 4390 | // fbcnt++; |
@@ -4691,7 +4756,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4691 | 4756 | ||
4692 | if (landData.SimwideArea > 0) | 4757 | if (landData.SimwideArea > 0) |
4693 | { | 4758 | { |
4694 | int simulatorCapacity = (int)(((float)landData.SimwideArea / 65536.0f) * (float)m_scene.RegionInfo.ObjectCapacity * (float)m_scene.RegionInfo.RegionSettings.ObjectBonus); | 4759 | int simulatorCapacity = (int)((long)landData.SimwideArea * (long)m_scene.RegionInfo.ObjectCapacity * (long)m_scene.RegionInfo.RegionSettings.ObjectBonus / 65536L); |
4760 | // Never report more than sim total capacity | ||
4761 | if (simulatorCapacity > m_scene.RegionInfo.ObjectCapacity) | ||
4762 | simulatorCapacity = m_scene.RegionInfo.ObjectCapacity; | ||
4695 | updateMessage.SimWideMaxPrims = simulatorCapacity; | 4763 | updateMessage.SimWideMaxPrims = simulatorCapacity; |
4696 | } | 4764 | } |
4697 | else | 4765 | else |
@@ -4820,14 +4888,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4820 | 4888 | ||
4821 | if (notifyCount > 0) | 4889 | if (notifyCount > 0) |
4822 | { | 4890 | { |
4823 | if (notifyCount > 32) | 4891 | // if (notifyCount > 32) |
4824 | { | 4892 | // { |
4825 | m_log.InfoFormat( | 4893 | // m_log.InfoFormat( |
4826 | "[LAND]: More than {0} avatars own prims on this parcel. Only sending back details of first {0}" | 4894 | // "[LAND]: More than {0} avatars own prims on this parcel. Only sending back details of first {0}" |
4827 | + " - a developer might want to investigate whether this is a hard limit", 32); | 4895 | // + " - a developer might want to investigate whether this is a hard limit", 32); |
4828 | 4896 | // | |
4829 | notifyCount = 32; | 4897 | // notifyCount = 32; |
4830 | } | 4898 | // } |
4831 | 4899 | ||
4832 | ParcelObjectOwnersReplyPacket.DataBlock[] dataBlock | 4900 | ParcelObjectOwnersReplyPacket.DataBlock[] dataBlock |
4833 | = new ParcelObjectOwnersReplyPacket.DataBlock[notifyCount]; | 4901 | = new ParcelObjectOwnersReplyPacket.DataBlock[notifyCount]; |
@@ -4882,9 +4950,21 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4882 | { | 4950 | { |
4883 | ScenePresence presence = (ScenePresence)entity; | 4951 | ScenePresence presence = (ScenePresence)entity; |
4884 | 4952 | ||
4953 | position = presence.OffsetPosition; | ||
4954 | rotation = presence.Rotation; | ||
4955 | |||
4956 | if (presence.ParentID != 0) | ||
4957 | { | ||
4958 | SceneObjectPart part = m_scene.GetSceneObjectPart(presence.ParentID); | ||
4959 | if (part != null && part != part.ParentGroup.RootPart) | ||
4960 | { | ||
4961 | position = part.OffsetPosition + presence.OffsetPosition * part.RotationOffset; | ||
4962 | rotation = part.RotationOffset * presence.Rotation; | ||
4963 | } | ||
4964 | } | ||
4965 | |||
4885 | attachPoint = 0; | 4966 | attachPoint = 0; |
4886 | collisionPlane = presence.CollisionPlane; | 4967 | collisionPlane = presence.CollisionPlane; |
4887 | position = presence.OffsetPosition; | ||
4888 | velocity = presence.Velocity; | 4968 | velocity = presence.Velocity; |
4889 | acceleration = Vector3.Zero; | 4969 | acceleration = Vector3.Zero; |
4890 | 4970 | ||
@@ -4892,9 +4972,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
4892 | // in that direction, even though we don't model this on the server. Implementing this in the future | 4972 | // in that direction, even though we don't model this on the server. Implementing this in the future |
4893 | // may improve movement smoothness. | 4973 | // may improve movement smoothness. |
4894 | // acceleration = new Vector3(1, 0, 0); | 4974 | // acceleration = new Vector3(1, 0, 0); |
4895 | 4975 | ||
4896 | angularVelocity = Vector3.Zero; | 4976 | angularVelocity = Vector3.Zero; |
4897 | rotation = presence.Rotation; | ||
4898 | 4977 | ||
4899 | if (sendTexture) | 4978 | if (sendTexture) |
4900 | textureEntry = presence.Appearance.Texture.GetBytes(); | 4979 | textureEntry = presence.Appearance.Texture.GetBytes(); |
@@ -5001,13 +5080,28 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5001 | 5080 | ||
5002 | protected ObjectUpdatePacket.ObjectDataBlock CreateAvatarUpdateBlock(ScenePresence data) | 5081 | protected ObjectUpdatePacket.ObjectDataBlock CreateAvatarUpdateBlock(ScenePresence data) |
5003 | { | 5082 | { |
5083 | Vector3 offsetPosition = data.OffsetPosition; | ||
5084 | Quaternion rotation = data.Rotation; | ||
5085 | uint parentID = data.ParentID; | ||
5086 | |||
5087 | if (parentID != 0) | ||
5088 | { | ||
5089 | SceneObjectPart part = m_scene.GetSceneObjectPart(parentID); | ||
5090 | if (part != null && part != part.ParentGroup.RootPart) | ||
5091 | { | ||
5092 | offsetPosition = part.OffsetPosition + data.OffsetPosition * part.RotationOffset; | ||
5093 | rotation = part.RotationOffset * data.Rotation; | ||
5094 | parentID = part.ParentGroup.RootPart.LocalId; | ||
5095 | } | ||
5096 | } | ||
5097 | |||
5004 | byte[] objectData = new byte[76]; | 5098 | byte[] objectData = new byte[76]; |
5005 | 5099 | ||
5006 | data.CollisionPlane.ToBytes(objectData, 0); | 5100 | data.CollisionPlane.ToBytes(objectData, 0); |
5007 | data.OffsetPosition.ToBytes(objectData, 16); | 5101 | offsetPosition.ToBytes(objectData, 16); |
5008 | // data.Velocity.ToBytes(objectData, 28); | 5102 | // data.Velocity.ToBytes(objectData, 28); |
5009 | // data.Acceleration.ToBytes(objectData, 40); | 5103 | // data.Acceleration.ToBytes(objectData, 40); |
5010 | data.Rotation.ToBytes(objectData, 52); | 5104 | rotation.ToBytes(objectData, 52); |
5011 | //data.AngularVelocity.ToBytes(objectData, 64); | 5105 | //data.AngularVelocity.ToBytes(objectData, 64); |
5012 | 5106 | ||
5013 | ObjectUpdatePacket.ObjectDataBlock update = new ObjectUpdatePacket.ObjectDataBlock(); | 5107 | ObjectUpdatePacket.ObjectDataBlock update = new ObjectUpdatePacket.ObjectDataBlock(); |
@@ -5021,14 +5115,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5021 | update.NameValue = Utils.StringToBytes("FirstName STRING RW SV " + data.Firstname + "\nLastName STRING RW SV " + | 5115 | update.NameValue = Utils.StringToBytes("FirstName STRING RW SV " + data.Firstname + "\nLastName STRING RW SV " + |
5022 | data.Lastname + "\nTitle STRING RW SV " + data.Grouptitle); | 5116 | data.Lastname + "\nTitle STRING RW SV " + data.Grouptitle); |
5023 | update.ObjectData = objectData; | 5117 | update.ObjectData = objectData; |
5024 | update.ParentID = data.ParentID; | 5118 | update.ParentID = parentID; |
5025 | update.PathCurve = 16; | 5119 | update.PathCurve = 16; |
5026 | update.PathScaleX = 100; | 5120 | update.PathScaleX = 100; |
5027 | update.PathScaleY = 100; | 5121 | update.PathScaleY = 100; |
5028 | update.PCode = (byte)PCode.Avatar; | 5122 | update.PCode = (byte)PCode.Avatar; |
5029 | update.ProfileCurve = 1; | 5123 | update.ProfileCurve = 1; |
5030 | update.PSBlock = Utils.EmptyBytes; | 5124 | update.PSBlock = Utils.EmptyBytes; |
5031 | update.Scale = new Vector3(0.45f, 0.6f, 1.9f); | 5125 | update.Scale = data.Appearance.AvatarSize; |
5126 | // update.Scale.Z -= 0.2f; | ||
5127 | |||
5032 | update.Text = Utils.EmptyBytes; | 5128 | update.Text = Utils.EmptyBytes; |
5033 | update.TextColor = new byte[4]; | 5129 | update.TextColor = new byte[4]; |
5034 | 5130 | ||
@@ -5039,10 +5135,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5039 | update.TextureEntry = Utils.EmptyBytes; | 5135 | update.TextureEntry = Utils.EmptyBytes; |
5040 | // update.TextureEntry = (data.Appearance.Texture != null) ? data.Appearance.Texture.GetBytes() : Utils.EmptyBytes; | 5136 | // update.TextureEntry = (data.Appearance.Texture != null) ? data.Appearance.Texture.GetBytes() : Utils.EmptyBytes; |
5041 | 5137 | ||
5138 | /* all this flags seem related to prims and not avatars. This allow for wrong viewer side move of a avatar in prim edition mode (anv mantis 854) | ||
5042 | update.UpdateFlags = (uint)( | 5139 | update.UpdateFlags = (uint)( |
5043 | PrimFlags.Physics | PrimFlags.ObjectModify | PrimFlags.ObjectCopy | PrimFlags.ObjectAnyOwner | | 5140 | PrimFlags.Physics | PrimFlags.ObjectModify | PrimFlags.ObjectCopy | PrimFlags.ObjectAnyOwner | |
5044 | PrimFlags.ObjectYouOwner | PrimFlags.ObjectMove | PrimFlags.InventoryEmpty | PrimFlags.ObjectTransfer | | 5141 | PrimFlags.ObjectYouOwner | PrimFlags.ObjectMove | PrimFlags.InventoryEmpty | PrimFlags.ObjectTransfer | |
5045 | PrimFlags.ObjectOwnerModify); | 5142 | PrimFlags.ObjectOwnerModify); |
5143 | */ | ||
5144 | update.UpdateFlags = 0; | ||
5046 | 5145 | ||
5047 | return update; | 5146 | return update; |
5048 | } | 5147 | } |
@@ -5213,8 +5312,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5213 | // If AgentUpdate is ever handled asynchronously, then we will also need to construct a new AgentUpdateArgs | 5312 | // If AgentUpdate is ever handled asynchronously, then we will also need to construct a new AgentUpdateArgs |
5214 | // for each AgentUpdate packet. | 5313 | // for each AgentUpdate packet. |
5215 | AddLocalPacketHandler(PacketType.AgentUpdate, HandleAgentUpdate, false); | 5314 | AddLocalPacketHandler(PacketType.AgentUpdate, HandleAgentUpdate, false); |
5216 | 5315 | ||
5217 | AddLocalPacketHandler(PacketType.ViewerEffect, HandleViewerEffect, false); | 5316 | AddLocalPacketHandler(PacketType.ViewerEffect, HandleViewerEffect, false); |
5317 | AddLocalPacketHandler(PacketType.VelocityInterpolateOff, HandleVelocityInterpolateOff, false); | ||
5318 | AddLocalPacketHandler(PacketType.VelocityInterpolateOn, HandleVelocityInterpolateOn, false); | ||
5218 | AddLocalPacketHandler(PacketType.AgentCachedTexture, HandleAgentTextureCached, false); | 5319 | AddLocalPacketHandler(PacketType.AgentCachedTexture, HandleAgentTextureCached, false); |
5219 | AddLocalPacketHandler(PacketType.MultipleObjectUpdate, HandleMultipleObjUpdate, false); | 5320 | AddLocalPacketHandler(PacketType.MultipleObjectUpdate, HandleMultipleObjUpdate, false); |
5220 | AddLocalPacketHandler(PacketType.MoneyTransferRequest, HandleMoneyTransferRequest, false); | 5321 | AddLocalPacketHandler(PacketType.MoneyTransferRequest, HandleMoneyTransferRequest, false); |
@@ -5366,6 +5467,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5366 | AddLocalPacketHandler(PacketType.TransferAbort, HandleTransferAbort, false); | 5467 | AddLocalPacketHandler(PacketType.TransferAbort, HandleTransferAbort, false); |
5367 | AddLocalPacketHandler(PacketType.MuteListRequest, HandleMuteListRequest, false); | 5468 | AddLocalPacketHandler(PacketType.MuteListRequest, HandleMuteListRequest, false); |
5368 | AddLocalPacketHandler(PacketType.UseCircuitCode, HandleUseCircuitCode); | 5469 | AddLocalPacketHandler(PacketType.UseCircuitCode, HandleUseCircuitCode); |
5470 | AddLocalPacketHandler(PacketType.CreateNewOutfitAttachments, HandleCreateNewOutfitAttachments); | ||
5369 | AddLocalPacketHandler(PacketType.AgentHeightWidth, HandleAgentHeightWidth, false); | 5471 | AddLocalPacketHandler(PacketType.AgentHeightWidth, HandleAgentHeightWidth, false); |
5370 | AddLocalPacketHandler(PacketType.InventoryDescendents, HandleInventoryDescendents); | 5472 | AddLocalPacketHandler(PacketType.InventoryDescendents, HandleInventoryDescendents); |
5371 | AddLocalPacketHandler(PacketType.DirPlacesQuery, HandleDirPlacesQuery); | 5473 | AddLocalPacketHandler(PacketType.DirPlacesQuery, HandleDirPlacesQuery); |
@@ -5432,6 +5534,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5432 | AddLocalPacketHandler(PacketType.GroupVoteHistoryRequest, HandleGroupVoteHistoryRequest); | 5534 | AddLocalPacketHandler(PacketType.GroupVoteHistoryRequest, HandleGroupVoteHistoryRequest); |
5433 | AddLocalPacketHandler(PacketType.SimWideDeletes, HandleSimWideDeletes); | 5535 | AddLocalPacketHandler(PacketType.SimWideDeletes, HandleSimWideDeletes); |
5434 | AddLocalPacketHandler(PacketType.SendPostcard, HandleSendPostcard); | 5536 | AddLocalPacketHandler(PacketType.SendPostcard, HandleSendPostcard); |
5537 | AddLocalPacketHandler(PacketType.ChangeInventoryItemFlags, HandleChangeInventoryItemFlags); | ||
5435 | 5538 | ||
5436 | AddGenericPacketHandler("autopilot", HandleAutopilot); | 5539 | AddGenericPacketHandler("autopilot", HandleAutopilot); |
5437 | } | 5540 | } |
@@ -5470,6 +5573,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5470 | (x.CameraLeftAxis != m_lastAgentUpdateArgs.CameraLeftAxis) || | 5573 | (x.CameraLeftAxis != m_lastAgentUpdateArgs.CameraLeftAxis) || |
5471 | (x.CameraUpAxis != m_lastAgentUpdateArgs.CameraUpAxis) || | 5574 | (x.CameraUpAxis != m_lastAgentUpdateArgs.CameraUpAxis) || |
5472 | (x.ControlFlags != m_lastAgentUpdateArgs.ControlFlags) || | 5575 | (x.ControlFlags != m_lastAgentUpdateArgs.ControlFlags) || |
5576 | (x.ControlFlags != 0) || | ||
5473 | (x.Far != m_lastAgentUpdateArgs.Far) || | 5577 | (x.Far != m_lastAgentUpdateArgs.Far) || |
5474 | (x.Flags != m_lastAgentUpdateArgs.Flags) || | 5578 | (x.Flags != m_lastAgentUpdateArgs.Flags) || |
5475 | (x.State != m_lastAgentUpdateArgs.State) || | 5579 | (x.State != m_lastAgentUpdateArgs.State) || |
@@ -5729,6 +5833,29 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5729 | return true; | 5833 | return true; |
5730 | } | 5834 | } |
5731 | 5835 | ||
5836 | private bool HandleVelocityInterpolateOff(IClientAPI sender, Packet Pack) | ||
5837 | { | ||
5838 | VelocityInterpolateOffPacket p = (VelocityInterpolateOffPacket)Pack; | ||
5839 | if (p.AgentData.SessionID != SessionId || | ||
5840 | p.AgentData.AgentID != AgentId) | ||
5841 | return true; | ||
5842 | |||
5843 | m_VelocityInterpolate = false; | ||
5844 | return true; | ||
5845 | } | ||
5846 | |||
5847 | private bool HandleVelocityInterpolateOn(IClientAPI sender, Packet Pack) | ||
5848 | { | ||
5849 | VelocityInterpolateOnPacket p = (VelocityInterpolateOnPacket)Pack; | ||
5850 | if (p.AgentData.SessionID != SessionId || | ||
5851 | p.AgentData.AgentID != AgentId) | ||
5852 | return true; | ||
5853 | |||
5854 | m_VelocityInterpolate = true; | ||
5855 | return true; | ||
5856 | } | ||
5857 | |||
5858 | |||
5732 | private bool HandleAvatarPropertiesRequest(IClientAPI sender, Packet Pack) | 5859 | private bool HandleAvatarPropertiesRequest(IClientAPI sender, Packet Pack) |
5733 | { | 5860 | { |
5734 | AvatarPropertiesRequestPacket avatarProperties = (AvatarPropertiesRequestPacket)Pack; | 5861 | AvatarPropertiesRequestPacket avatarProperties = (AvatarPropertiesRequestPacket)Pack; |
@@ -6149,6 +6276,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
6149 | // Temporarily protect ourselves from the mantis #951 failure. | 6276 | // Temporarily protect ourselves from the mantis #951 failure. |
6150 | // However, we could do this for several other handlers where a failure isn't terminal | 6277 | // However, we could do this for several other handlers where a failure isn't terminal |
6151 | // for the client session anyway, in order to protect ourselves against bad code in plugins | 6278 | // for the client session anyway, in order to protect ourselves against bad code in plugins |
6279 | Vector3 avSize = appear.AgentData.Size; | ||
6152 | try | 6280 | try |
6153 | { | 6281 | { |
6154 | byte[] visualparams = new byte[appear.VisualParam.Length]; | 6282 | byte[] visualparams = new byte[appear.VisualParam.Length]; |
@@ -6159,7 +6287,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
6159 | if (appear.ObjectData.TextureEntry.Length > 1) | 6287 | if (appear.ObjectData.TextureEntry.Length > 1) |
6160 | te = new Primitive.TextureEntry(appear.ObjectData.TextureEntry, 0, appear.ObjectData.TextureEntry.Length); | 6288 | te = new Primitive.TextureEntry(appear.ObjectData.TextureEntry, 0, appear.ObjectData.TextureEntry.Length); |
6161 | 6289 | ||
6162 | handlerSetAppearance(sender, te, visualparams); | 6290 | handlerSetAppearance(sender, te, visualparams,avSize); |
6163 | } | 6291 | } |
6164 | catch (Exception e) | 6292 | catch (Exception e) |
6165 | { | 6293 | { |
@@ -6368,6 +6496,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
6368 | { | 6496 | { |
6369 | handlerCompleteMovementToRegion(sender, true); | 6497 | handlerCompleteMovementToRegion(sender, true); |
6370 | } | 6498 | } |
6499 | else | ||
6500 | m_log.Debug("HandleCompleteAgentMovement NULL handler"); | ||
6501 | |||
6371 | handlerCompleteMovementToRegion = null; | 6502 | handlerCompleteMovementToRegion = null; |
6372 | 6503 | ||
6373 | return true; | 6504 | return true; |
@@ -6385,7 +6516,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
6385 | return true; | 6516 | return true; |
6386 | } | 6517 | } |
6387 | #endregion | 6518 | #endregion |
6388 | 6519 | /* | |
6389 | StartAnim handlerStartAnim = null; | 6520 | StartAnim handlerStartAnim = null; |
6390 | StopAnim handlerStopAnim = null; | 6521 | StopAnim handlerStopAnim = null; |
6391 | 6522 | ||
@@ -6409,6 +6540,25 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
6409 | } | 6540 | } |
6410 | } | 6541 | } |
6411 | return true; | 6542 | return true; |
6543 | */ | ||
6544 | ChangeAnim handlerChangeAnim = null; | ||
6545 | |||
6546 | for (int i = 0; i < AgentAni.AnimationList.Length; i++) | ||
6547 | { | ||
6548 | handlerChangeAnim = OnChangeAnim; | ||
6549 | if (handlerChangeAnim != null) | ||
6550 | { | ||
6551 | handlerChangeAnim(AgentAni.AnimationList[i].AnimID, AgentAni.AnimationList[i].StartAnim, false); | ||
6552 | } | ||
6553 | } | ||
6554 | |||
6555 | handlerChangeAnim = OnChangeAnim; | ||
6556 | if (handlerChangeAnim != null) | ||
6557 | { | ||
6558 | handlerChangeAnim(UUID.Zero, false, true); | ||
6559 | } | ||
6560 | |||
6561 | return true; | ||
6412 | } | 6562 | } |
6413 | 6563 | ||
6414 | private bool HandleAgentRequestSit(IClientAPI sender, Packet Pack) | 6564 | private bool HandleAgentRequestSit(IClientAPI sender, Packet Pack) |
@@ -6633,6 +6783,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
6633 | #endregion | 6783 | #endregion |
6634 | 6784 | ||
6635 | m_udpClient.SetThrottles(atpack.Throttle.Throttles); | 6785 | m_udpClient.SetThrottles(atpack.Throttle.Throttles); |
6786 | GenericCall2 handler = OnUpdateThrottles; | ||
6787 | if (handler != null) | ||
6788 | { | ||
6789 | handler(); | ||
6790 | } | ||
6636 | return true; | 6791 | return true; |
6637 | } | 6792 | } |
6638 | 6793 | ||
@@ -7034,10 +7189,33 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
7034 | // 46,47,48 are special positions within the packet | 7189 | // 46,47,48 are special positions within the packet |
7035 | // This may change so perhaps we need a better way | 7190 | // This may change so perhaps we need a better way |
7036 | // of storing this (OMV.FlagUpdatePacket.UsePhysics,etc?) | 7191 | // of storing this (OMV.FlagUpdatePacket.UsePhysics,etc?) |
7037 | bool UsePhysics = (data[46] != 0) ? true : false; | 7192 | /* |
7038 | bool IsTemporary = (data[47] != 0) ? true : false; | 7193 | bool UsePhysics = (data[46] != 0) ? true : false; |
7039 | bool IsPhantom = (data[48] != 0) ? true : false; | 7194 | bool IsTemporary = (data[47] != 0) ? true : false; |
7040 | handlerUpdatePrimFlags(flags.AgentData.ObjectLocalID, UsePhysics, IsTemporary, IsPhantom, this); | 7195 | bool IsPhantom = (data[48] != 0) ? true : false; |
7196 | handlerUpdatePrimFlags(flags.AgentData.ObjectLocalID, UsePhysics, IsTemporary, IsPhantom, this); | ||
7197 | */ | ||
7198 | bool UsePhysics = flags.AgentData.UsePhysics; | ||
7199 | bool IsPhantom = flags.AgentData.IsPhantom; | ||
7200 | bool IsTemporary = flags.AgentData.IsTemporary; | ||
7201 | ObjectFlagUpdatePacket.ExtraPhysicsBlock[] blocks = flags.ExtraPhysics; | ||
7202 | ExtraPhysicsData physdata = new ExtraPhysicsData(); | ||
7203 | |||
7204 | if (blocks == null || blocks.Length == 0) | ||
7205 | { | ||
7206 | physdata.PhysShapeType = PhysShapeType.invalid; | ||
7207 | } | ||
7208 | else | ||
7209 | { | ||
7210 | ObjectFlagUpdatePacket.ExtraPhysicsBlock phsblock = blocks[0]; | ||
7211 | physdata.PhysShapeType = (PhysShapeType)phsblock.PhysicsShapeType; | ||
7212 | physdata.Bounce = phsblock.Restitution; | ||
7213 | physdata.Density = phsblock.Density; | ||
7214 | physdata.Friction = phsblock.Friction; | ||
7215 | physdata.GravitationModifier = phsblock.GravityMultiplier; | ||
7216 | } | ||
7217 | |||
7218 | handlerUpdatePrimFlags(flags.AgentData.ObjectLocalID, UsePhysics, IsTemporary, IsPhantom, physdata, this); | ||
7041 | } | 7219 | } |
7042 | return true; | 7220 | return true; |
7043 | } | 7221 | } |
@@ -8638,16 +8816,61 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
8638 | 8816 | ||
8639 | #region Parcel related packets | 8817 | #region Parcel related packets |
8640 | 8818 | ||
8819 | // acumulate several HandleRegionHandleRequest consecutive overlaping requests | ||
8820 | // to be done with minimal resources as possible | ||
8821 | // variables temporary here while in test | ||
8822 | |||
8823 | Queue<UUID> RegionHandleRequests = new Queue<UUID>(); | ||
8824 | bool RegionHandleRequestsInService = false; | ||
8825 | |||
8641 | private bool HandleRegionHandleRequest(IClientAPI sender, Packet Pack) | 8826 | private bool HandleRegionHandleRequest(IClientAPI sender, Packet Pack) |
8642 | { | 8827 | { |
8643 | RegionHandleRequestPacket rhrPack = (RegionHandleRequestPacket)Pack; | 8828 | UUID currentUUID; |
8644 | 8829 | ||
8645 | RegionHandleRequest handlerRegionHandleRequest = OnRegionHandleRequest; | 8830 | RegionHandleRequest handlerRegionHandleRequest = OnRegionHandleRequest; |
8646 | if (handlerRegionHandleRequest != null) | 8831 | |
8832 | if (handlerRegionHandleRequest == null) | ||
8833 | return true; | ||
8834 | |||
8835 | RegionHandleRequestPacket rhrPack = (RegionHandleRequestPacket)Pack; | ||
8836 | |||
8837 | lock (RegionHandleRequests) | ||
8647 | { | 8838 | { |
8648 | handlerRegionHandleRequest(this, rhrPack.RequestBlock.RegionID); | 8839 | if (RegionHandleRequestsInService) |
8840 | { | ||
8841 | // we are already busy doing a previus request | ||
8842 | // so enqueue it | ||
8843 | RegionHandleRequests.Enqueue(rhrPack.RequestBlock.RegionID); | ||
8844 | return true; | ||
8845 | } | ||
8846 | |||
8847 | // else do it | ||
8848 | currentUUID = rhrPack.RequestBlock.RegionID; | ||
8849 | RegionHandleRequestsInService = true; | ||
8649 | } | 8850 | } |
8650 | return true; | 8851 | |
8852 | while (true) | ||
8853 | { | ||
8854 | handlerRegionHandleRequest(this, currentUUID); | ||
8855 | |||
8856 | lock (RegionHandleRequests) | ||
8857 | { | ||
8858 | // exit condition, nothing to do or closed | ||
8859 | // current code seems to assume we may loose the handler at anytime, | ||
8860 | // so keep checking it | ||
8861 | handlerRegionHandleRequest = OnRegionHandleRequest; | ||
8862 | |||
8863 | if (RegionHandleRequests.Count == 0 || !IsActive || handlerRegionHandleRequest == null) | ||
8864 | { | ||
8865 | RegionHandleRequests.Clear(); | ||
8866 | RegionHandleRequestsInService = false; | ||
8867 | return true; | ||
8868 | } | ||
8869 | currentUUID = RegionHandleRequests.Dequeue(); | ||
8870 | } | ||
8871 | } | ||
8872 | |||
8873 | return true; // actually unreached | ||
8651 | } | 8874 | } |
8652 | 8875 | ||
8653 | private bool HandleParcelInfoRequest(IClientAPI sender, Packet Pack) | 8876 | private bool HandleParcelInfoRequest(IClientAPI sender, Packet Pack) |
@@ -9903,7 +10126,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
9903 | handlerUpdateMuteListEntry(this, UpdateMuteListEntry.MuteData.MuteID, | 10126 | handlerUpdateMuteListEntry(this, UpdateMuteListEntry.MuteData.MuteID, |
9904 | Utils.BytesToString(UpdateMuteListEntry.MuteData.MuteName), | 10127 | Utils.BytesToString(UpdateMuteListEntry.MuteData.MuteName), |
9905 | UpdateMuteListEntry.MuteData.MuteType, | 10128 | UpdateMuteListEntry.MuteData.MuteType, |
9906 | UpdateMuteListEntry.AgentData.AgentID); | 10129 | UpdateMuteListEntry.MuteData.MuteFlags); |
9907 | return true; | 10130 | return true; |
9908 | } | 10131 | } |
9909 | return false; | 10132 | return false; |
@@ -9918,8 +10141,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
9918 | { | 10141 | { |
9919 | handlerRemoveMuteListEntry(this, | 10142 | handlerRemoveMuteListEntry(this, |
9920 | RemoveMuteListEntry.MuteData.MuteID, | 10143 | RemoveMuteListEntry.MuteData.MuteID, |
9921 | Utils.BytesToString(RemoveMuteListEntry.MuteData.MuteName), | 10144 | Utils.BytesToString(RemoveMuteListEntry.MuteData.MuteName)); |
9922 | RemoveMuteListEntry.AgentData.AgentID); | ||
9923 | return true; | 10145 | return true; |
9924 | } | 10146 | } |
9925 | return false; | 10147 | return false; |
@@ -9963,10 +10185,55 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
9963 | return false; | 10185 | return false; |
9964 | } | 10186 | } |
9965 | 10187 | ||
10188 | private bool HandleChangeInventoryItemFlags(IClientAPI client, Packet packet) | ||
10189 | { | ||
10190 | ChangeInventoryItemFlagsPacket ChangeInventoryItemFlags = | ||
10191 | (ChangeInventoryItemFlagsPacket)packet; | ||
10192 | ChangeInventoryItemFlags handlerChangeInventoryItemFlags = OnChangeInventoryItemFlags; | ||
10193 | if (handlerChangeInventoryItemFlags != null) | ||
10194 | { | ||
10195 | foreach(ChangeInventoryItemFlagsPacket.InventoryDataBlock b in ChangeInventoryItemFlags.InventoryData) | ||
10196 | handlerChangeInventoryItemFlags(this, b.ItemID, b.Flags); | ||
10197 | return true; | ||
10198 | } | ||
10199 | return false; | ||
10200 | } | ||
10201 | |||
9966 | private bool HandleUseCircuitCode(IClientAPI sender, Packet Pack) | 10202 | private bool HandleUseCircuitCode(IClientAPI sender, Packet Pack) |
9967 | { | 10203 | { |
9968 | return true; | 10204 | return true; |
9969 | } | 10205 | } |
10206 | |||
10207 | private bool HandleCreateNewOutfitAttachments(IClientAPI sender, Packet Pack) | ||
10208 | { | ||
10209 | CreateNewOutfitAttachmentsPacket packet = (CreateNewOutfitAttachmentsPacket)Pack; | ||
10210 | |||
10211 | #region Packet Session and User Check | ||
10212 | if (m_checkPackets) | ||
10213 | { | ||
10214 | if (packet.AgentData.SessionID != SessionId || | ||
10215 | packet.AgentData.AgentID != AgentId) | ||
10216 | return true; | ||
10217 | } | ||
10218 | #endregion | ||
10219 | MoveItemsAndLeaveCopy handlerMoveItemsAndLeaveCopy = null; | ||
10220 | List<InventoryItemBase> items = new List<InventoryItemBase>(); | ||
10221 | foreach (CreateNewOutfitAttachmentsPacket.ObjectDataBlock n in packet.ObjectData) | ||
10222 | { | ||
10223 | InventoryItemBase b = new InventoryItemBase(); | ||
10224 | b.ID = n.OldItemID; | ||
10225 | b.Folder = n.OldFolderID; | ||
10226 | items.Add(b); | ||
10227 | } | ||
10228 | |||
10229 | handlerMoveItemsAndLeaveCopy = OnMoveItemsAndLeaveCopy; | ||
10230 | if (handlerMoveItemsAndLeaveCopy != null) | ||
10231 | { | ||
10232 | handlerMoveItemsAndLeaveCopy(this, items, packet.HeaderData.NewFolderID); | ||
10233 | } | ||
10234 | |||
10235 | return true; | ||
10236 | } | ||
9970 | 10237 | ||
9971 | private bool HandleAgentHeightWidth(IClientAPI sender, Packet Pack) | 10238 | private bool HandleAgentHeightWidth(IClientAPI sender, Packet Pack) |
9972 | { | 10239 | { |
@@ -10393,6 +10660,20 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
10393 | groupProfileReply.GroupData.MaturePublish = d.MaturePublish; | 10660 | groupProfileReply.GroupData.MaturePublish = d.MaturePublish; |
10394 | groupProfileReply.GroupData.OwnerRole = d.OwnerRole; | 10661 | groupProfileReply.GroupData.OwnerRole = d.OwnerRole; |
10395 | 10662 | ||
10663 | Scene scene = (Scene)m_scene; | ||
10664 | if (scene.Permissions.IsGod(sender.AgentId) && (!sender.IsGroupMember(groupProfileRequest.GroupData.GroupID))) | ||
10665 | { | ||
10666 | ScenePresence p; | ||
10667 | if (scene.TryGetScenePresence(sender.AgentId, out p)) | ||
10668 | { | ||
10669 | if (p.GodLevel >= 200) | ||
10670 | { | ||
10671 | groupProfileReply.GroupData.OpenEnrollment = true; | ||
10672 | groupProfileReply.GroupData.MembershipFee = 0; | ||
10673 | } | ||
10674 | } | ||
10675 | } | ||
10676 | |||
10396 | OutPacket(groupProfileReply, ThrottleOutPacketType.Task); | 10677 | OutPacket(groupProfileReply, ThrottleOutPacketType.Task); |
10397 | } | 10678 | } |
10398 | return true; | 10679 | return true; |
@@ -10966,11 +11247,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
10966 | 11247 | ||
10967 | StartLure handlerStartLure = OnStartLure; | 11248 | StartLure handlerStartLure = OnStartLure; |
10968 | if (handlerStartLure != null) | 11249 | if (handlerStartLure != null) |
10969 | handlerStartLure(startLureRequest.Info.LureType, | 11250 | { |
10970 | Utils.BytesToString( | 11251 | for (int i = 0 ; i < startLureRequest.TargetData.Length ; i++) |
10971 | startLureRequest.Info.Message), | 11252 | { |
10972 | startLureRequest.TargetData[0].TargetID, | 11253 | handlerStartLure(startLureRequest.Info.LureType, |
10973 | this); | 11254 | Utils.BytesToString( |
11255 | startLureRequest.Info.Message), | ||
11256 | startLureRequest.TargetData[i].TargetID, | ||
11257 | this); | ||
11258 | } | ||
11259 | } | ||
10974 | return true; | 11260 | return true; |
10975 | } | 11261 | } |
10976 | private bool HandleTeleportLureRequest(IClientAPI sender, Packet Pack) | 11262 | private bool HandleTeleportLureRequest(IClientAPI sender, Packet Pack) |
@@ -11084,10 +11370,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11084 | } | 11370 | } |
11085 | #endregion | 11371 | #endregion |
11086 | 11372 | ||
11087 | ClassifiedDelete handlerClassifiedGodDelete = OnClassifiedGodDelete; | 11373 | ClassifiedGodDelete handlerClassifiedGodDelete = OnClassifiedGodDelete; |
11088 | if (handlerClassifiedGodDelete != null) | 11374 | if (handlerClassifiedGodDelete != null) |
11089 | handlerClassifiedGodDelete( | 11375 | handlerClassifiedGodDelete( |
11090 | classifiedGodDelete.Data.ClassifiedID, | 11376 | classifiedGodDelete.Data.ClassifiedID, |
11377 | classifiedGodDelete.Data.QueryID, | ||
11091 | this); | 11378 | this); |
11092 | return true; | 11379 | return true; |
11093 | } | 11380 | } |
@@ -11409,14 +11696,30 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11409 | cachedresp.WearableData = | 11696 | cachedresp.WearableData = |
11410 | new AgentCachedTextureResponsePacket.WearableDataBlock[cachedtex.WearableData.Length]; | 11697 | new AgentCachedTextureResponsePacket.WearableDataBlock[cachedtex.WearableData.Length]; |
11411 | 11698 | ||
11412 | for (int i = 0; i < cachedtex.WearableData.Length; i++) | 11699 | IImprovedAssetCache cache = m_scene.RequestModuleInterface<IImprovedAssetCache>(); |
11700 | if (cache == null) | ||
11413 | { | 11701 | { |
11414 | cachedresp.WearableData[i] = new AgentCachedTextureResponsePacket.WearableDataBlock(); | 11702 | for (int i = 0; i < cachedtex.WearableData.Length; i++) |
11415 | cachedresp.WearableData[i].TextureIndex = cachedtex.WearableData[i].TextureIndex; | 11703 | { |
11416 | cachedresp.WearableData[i].TextureID = UUID.Zero; | 11704 | cachedresp.WearableData[i] = new AgentCachedTextureResponsePacket.WearableDataBlock(); |
11417 | cachedresp.WearableData[i].HostName = new byte[0]; | 11705 | cachedresp.WearableData[i].TextureIndex = cachedtex.WearableData[i].TextureIndex; |
11706 | cachedresp.WearableData[i].TextureID = UUID.Zero; | ||
11707 | cachedresp.WearableData[i].HostName = new byte[0]; | ||
11708 | } | ||
11709 | } | ||
11710 | else | ||
11711 | { | ||
11712 | for (int i = 0; i < cachedtex.WearableData.Length; i++) | ||
11713 | { | ||
11714 | cachedresp.WearableData[i] = new AgentCachedTextureResponsePacket.WearableDataBlock(); | ||
11715 | cachedresp.WearableData[i].TextureIndex = cachedtex.WearableData[i].TextureIndex; | ||
11716 | if(cache.Check(cachedtex.WearableData[i].ID.ToString())) | ||
11717 | cachedresp.WearableData[i].TextureID = UUID.Zero; | ||
11718 | else | ||
11719 | cachedresp.WearableData[i].TextureID = UUID.Zero; | ||
11720 | cachedresp.WearableData[i].HostName = new byte[0]; | ||
11721 | } | ||
11418 | } | 11722 | } |
11419 | |||
11420 | cachedresp.Header.Zerocoded = true; | 11723 | cachedresp.Header.Zerocoded = true; |
11421 | OutPacket(cachedresp, ThrottleOutPacketType.Task); | 11724 | OutPacket(cachedresp, ThrottleOutPacketType.Task); |
11422 | 11725 | ||
@@ -11453,209 +11756,147 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11453 | } | 11756 | } |
11454 | else | 11757 | else |
11455 | { | 11758 | { |
11456 | // m_log.DebugFormat( | 11759 | ClientChangeObject updatehandler = onClientChangeObject; |
11457 | // "[CLIENT]: Processing block {0} type {1} for {2} {3}", | ||
11458 | // i, block.Type, part.Name, part.LocalId); | ||
11459 | 11760 | ||
11460 | // // Do this once since fetch parts creates a new array. | 11761 | if (updatehandler != null) |
11461 | // SceneObjectPart[] parts = part.ParentGroup.Parts; | 11762 | { |
11462 | // for (int j = 0; j < parts.Length; j++) | 11763 | ObjectChangeData udata = new ObjectChangeData(); |
11463 | // { | ||
11464 | // part.StoreUndoState(); | ||
11465 | // parts[j].IgnoreUndoUpdate = true; | ||
11466 | // } | ||
11467 | 11764 | ||
11468 | UpdatePrimGroupRotation handlerUpdatePrimGroupRotation; | 11765 | /*ubit from ll JIRA: |
11766 | * 0x01 position | ||
11767 | * 0x02 rotation | ||
11768 | * 0x04 scale | ||
11769 | |||
11770 | * 0x08 LINK_SET | ||
11771 | * 0x10 UNIFORM for scale | ||
11772 | */ | ||
11469 | 11773 | ||
11470 | switch (block.Type) | 11774 | // translate to internal changes |
11471 | { | 11775 | // not all cases .. just the ones older code did |
11472 | case 1: | ||
11473 | Vector3 pos1 = new Vector3(block.Data, 0); | ||
11474 | 11776 | ||
11475 | UpdateVector handlerUpdatePrimSinglePosition = OnUpdatePrimSinglePosition; | 11777 | switch (block.Type) |
11476 | if (handlerUpdatePrimSinglePosition != null) | 11778 | { |
11477 | { | 11779 | case 1: //change position sp |
11478 | // m_log.Debug("new movement position is " + pos.X + " , " + pos.Y + " , " + pos.Z); | 11780 | udata.position = new Vector3(block.Data, 0); |
11479 | handlerUpdatePrimSinglePosition(localId, pos1, this); | ||
11480 | } | ||
11481 | break; | ||
11482 | 11781 | ||
11483 | case 2: | 11782 | udata.change = ObjectChangeType.primP; |
11484 | Quaternion rot1 = new Quaternion(block.Data, 0, true); | 11783 | updatehandler(localId, udata, this); |
11784 | break; | ||
11485 | 11785 | ||
11486 | UpdatePrimSingleRotation handlerUpdatePrimSingleRotation = OnUpdatePrimSingleRotation; | 11786 | case 2: // rotation sp |
11487 | if (handlerUpdatePrimSingleRotation != null) | 11787 | udata.rotation = new Quaternion(block.Data, 0, true); |
11488 | { | ||
11489 | // m_log.Info("new tab rotation is " + rot1.X + " , " + rot1.Y + " , " + rot1.Z + " , " + rot1.W); | ||
11490 | handlerUpdatePrimSingleRotation(localId, rot1, this); | ||
11491 | } | ||
11492 | break; | ||
11493 | 11788 | ||
11494 | case 3: | 11789 | udata.change = ObjectChangeType.primR; |
11495 | Vector3 rotPos = new Vector3(block.Data, 0); | 11790 | updatehandler(localId, udata, this); |
11496 | Quaternion rot2 = new Quaternion(block.Data, 12, true); | 11791 | break; |
11497 | 11792 | ||
11498 | UpdatePrimSingleRotationPosition handlerUpdatePrimSingleRotationPosition = OnUpdatePrimSingleRotationPosition; | 11793 | case 3: // position plus rotation |
11499 | if (handlerUpdatePrimSingleRotationPosition != null) | 11794 | udata.position = new Vector3(block.Data, 0); |
11500 | { | 11795 | udata.rotation = new Quaternion(block.Data, 12, true); |
11501 | // m_log.Debug("new mouse rotation position is " + rotPos.X + " , " + rotPos.Y + " , " + rotPos.Z); | ||
11502 | // m_log.Info("new mouse rotation is " + rot2.X + " , " + rot2.Y + " , " + rot2.Z + " , " + rot2.W); | ||
11503 | handlerUpdatePrimSingleRotationPosition(localId, rot2, rotPos, this); | ||
11504 | } | ||
11505 | break; | ||
11506 | 11796 | ||
11507 | case 4: | 11797 | udata.change = ObjectChangeType.primPR; |
11508 | case 20: | 11798 | updatehandler(localId, udata, this); |
11509 | Vector3 scale4 = new Vector3(block.Data, 0); | 11799 | break; |
11510 | 11800 | ||
11511 | UpdateVector handlerUpdatePrimScale = OnUpdatePrimScale; | 11801 | case 4: // scale sp |
11512 | if (handlerUpdatePrimScale != null) | 11802 | udata.scale = new Vector3(block.Data, 0); |
11513 | { | 11803 | udata.change = ObjectChangeType.primS; |
11514 | // m_log.Debug("new scale is " + scale4.X + " , " + scale4.Y + " , " + scale4.Z); | ||
11515 | handlerUpdatePrimScale(localId, scale4, this); | ||
11516 | } | ||
11517 | break; | ||
11518 | 11804 | ||
11519 | case 5: | 11805 | updatehandler(localId, udata, this); |
11520 | Vector3 scale1 = new Vector3(block.Data, 12); | 11806 | break; |
11521 | Vector3 pos11 = new Vector3(block.Data, 0); | ||
11522 | 11807 | ||
11523 | handlerUpdatePrimScale = OnUpdatePrimScale; | 11808 | case 0x14: // uniform scale sp |
11524 | if (handlerUpdatePrimScale != null) | 11809 | udata.scale = new Vector3(block.Data, 0); |
11525 | { | ||
11526 | // m_log.Debug("new scale is " + scale.X + " , " + scale.Y + " , " + scale.Z); | ||
11527 | handlerUpdatePrimScale(localId, scale1, this); | ||
11528 | 11810 | ||
11529 | handlerUpdatePrimSinglePosition = OnUpdatePrimSinglePosition; | 11811 | udata.change = ObjectChangeType.primUS; |
11530 | if (handlerUpdatePrimSinglePosition != null) | 11812 | updatehandler(localId, udata, this); |
11531 | { | 11813 | break; |
11532 | handlerUpdatePrimSinglePosition(localId, pos11, this); | ||
11533 | } | ||
11534 | } | ||
11535 | break; | ||
11536 | 11814 | ||
11537 | case 9: | 11815 | case 5: // scale and position sp |
11538 | Vector3 pos2 = new Vector3(block.Data, 0); | 11816 | udata.position = new Vector3(block.Data, 0); |
11817 | udata.scale = new Vector3(block.Data, 12); | ||
11539 | 11818 | ||
11540 | UpdateVector handlerUpdateVector = OnUpdatePrimGroupPosition; | 11819 | udata.change = ObjectChangeType.primPS; |
11820 | updatehandler(localId, udata, this); | ||
11821 | break; | ||
11541 | 11822 | ||
11542 | if (handlerUpdateVector != null) | 11823 | case 0x15: //uniform scale and position |
11543 | { | 11824 | udata.position = new Vector3(block.Data, 0); |
11544 | handlerUpdateVector(localId, pos2, this); | 11825 | udata.scale = new Vector3(block.Data, 12); |
11545 | } | ||
11546 | break; | ||
11547 | 11826 | ||
11548 | case 10: | 11827 | udata.change = ObjectChangeType.primPUS; |
11549 | Quaternion rot3 = new Quaternion(block.Data, 0, true); | 11828 | updatehandler(localId, udata, this); |
11829 | break; | ||
11550 | 11830 | ||
11551 | UpdatePrimRotation handlerUpdatePrimRotation = OnUpdatePrimGroupRotation; | 11831 | // now group related (bit 4) |
11552 | if (handlerUpdatePrimRotation != null) | 11832 | case 9: //( 8 + 1 )group position |
11553 | { | 11833 | udata.position = new Vector3(block.Data, 0); |
11554 | // Console.WriteLine("new rotation is " + rot3.X + " , " + rot3.Y + " , " + rot3.Z + " , " + rot3.W); | ||
11555 | handlerUpdatePrimRotation(localId, rot3, this); | ||
11556 | } | ||
11557 | break; | ||
11558 | 11834 | ||
11559 | case 11: | 11835 | udata.change = ObjectChangeType.groupP; |
11560 | Vector3 pos3 = new Vector3(block.Data, 0); | 11836 | updatehandler(localId, udata, this); |
11561 | Quaternion rot4 = new Quaternion(block.Data, 12, true); | 11837 | break; |
11562 | 11838 | ||
11563 | handlerUpdatePrimGroupRotation = OnUpdatePrimGroupMouseRotation; | 11839 | case 0x0A: // (8 + 2) group rotation |
11564 | if (handlerUpdatePrimGroupRotation != null) | 11840 | udata.rotation = new Quaternion(block.Data, 0, true); |
11565 | { | ||
11566 | // m_log.Debug("new rotation position is " + pos.X + " , " + pos.Y + " , " + pos.Z); | ||
11567 | // m_log.Debug("new group mouse rotation is " + rot4.X + " , " + rot4.Y + " , " + rot4.Z + " , " + rot4.W); | ||
11568 | handlerUpdatePrimGroupRotation(localId, pos3, rot4, this); | ||
11569 | } | ||
11570 | break; | ||
11571 | case 12: | ||
11572 | case 28: | ||
11573 | Vector3 scale7 = new Vector3(block.Data, 0); | ||
11574 | 11841 | ||
11575 | UpdateVector handlerUpdatePrimGroupScale = OnUpdatePrimGroupScale; | 11842 | udata.change = ObjectChangeType.groupR; |
11576 | if (handlerUpdatePrimGroupScale != null) | 11843 | updatehandler(localId, udata, this); |
11577 | { | 11844 | break; |
11578 | // m_log.Debug("new scale is " + scale7.X + " , " + scale7.Y + " , " + scale7.Z); | ||
11579 | handlerUpdatePrimGroupScale(localId, scale7, this); | ||
11580 | } | ||
11581 | break; | ||
11582 | 11845 | ||
11583 | case 13: | 11846 | case 0x0B: //( 8 + 2 + 1) group rotation and position |
11584 | Vector3 scale2 = new Vector3(block.Data, 12); | 11847 | udata.position = new Vector3(block.Data, 0); |
11585 | Vector3 pos4 = new Vector3(block.Data, 0); | 11848 | udata.rotation = new Quaternion(block.Data, 12, true); |
11586 | 11849 | ||
11587 | handlerUpdatePrimScale = OnUpdatePrimScale; | 11850 | udata.change = ObjectChangeType.groupPR; |
11588 | if (handlerUpdatePrimScale != null) | 11851 | updatehandler(localId, udata, this); |
11589 | { | 11852 | break; |
11590 | //m_log.Debug("new scale is " + scale.X + " , " + scale.Y + " , " + scale.Z); | ||
11591 | handlerUpdatePrimScale(localId, scale2, this); | ||
11592 | 11853 | ||
11593 | // Change the position based on scale (for bug number 246) | 11854 | case 0x0C: // (8 + 4) group scale |
11594 | handlerUpdatePrimSinglePosition = OnUpdatePrimSinglePosition; | 11855 | // only afects root prim and only sent by viewer editor object tab scaling |
11595 | // m_log.Debug("new movement position is " + pos.X + " , " + pos.Y + " , " + pos.Z); | 11856 | // mouse edition only allows uniform scaling |
11596 | if (handlerUpdatePrimSinglePosition != null) | 11857 | // SL MAY CHANGE THIS in viewers |
11597 | { | ||
11598 | handlerUpdatePrimSinglePosition(localId, pos4, this); | ||
11599 | } | ||
11600 | } | ||
11601 | break; | ||
11602 | 11858 | ||
11603 | case 29: | 11859 | udata.scale = new Vector3(block.Data, 0); |
11604 | Vector3 scale5 = new Vector3(block.Data, 12); | ||
11605 | Vector3 pos5 = new Vector3(block.Data, 0); | ||
11606 | 11860 | ||
11607 | handlerUpdatePrimGroupScale = OnUpdatePrimGroupScale; | 11861 | udata.change = ObjectChangeType.groupS; |
11608 | if (handlerUpdatePrimGroupScale != null) | 11862 | updatehandler(localId, udata, this); |
11609 | { | ||
11610 | // m_log.Debug("new scale is " + scale.X + " , " + scale.Y + " , " + scale.Z); | ||
11611 | part.StoreUndoState(true); | ||
11612 | part.IgnoreUndoUpdate = true; | ||
11613 | handlerUpdatePrimGroupScale(localId, scale5, this); | ||
11614 | handlerUpdateVector = OnUpdatePrimGroupPosition; | ||
11615 | 11863 | ||
11616 | if (handlerUpdateVector != null) | 11864 | break; |
11617 | { | ||
11618 | handlerUpdateVector(localId, pos5, this); | ||
11619 | } | ||
11620 | 11865 | ||
11621 | part.IgnoreUndoUpdate = false; | 11866 | case 0x0D: //(8 + 4 + 1) group scale and position |
11622 | } | 11867 | // exception as above |
11623 | 11868 | ||
11624 | break; | 11869 | udata.position = new Vector3(block.Data, 0); |
11870 | udata.scale = new Vector3(block.Data, 12); | ||
11625 | 11871 | ||
11626 | case 21: | 11872 | udata.change = ObjectChangeType.groupPS; |
11627 | Vector3 scale6 = new Vector3(block.Data, 12); | 11873 | updatehandler(localId, udata, this); |
11628 | Vector3 pos6 = new Vector3(block.Data, 0); | 11874 | break; |
11629 | 11875 | ||
11630 | handlerUpdatePrimScale = OnUpdatePrimScale; | 11876 | case 0x1C: // (0x10 + 8 + 4 ) group scale UNIFORM |
11631 | if (handlerUpdatePrimScale != null) | 11877 | udata.scale = new Vector3(block.Data, 0); |
11632 | { | ||
11633 | part.StoreUndoState(false); | ||
11634 | part.IgnoreUndoUpdate = true; | ||
11635 | 11878 | ||
11636 | // m_log.Debug("new scale is " + scale.X + " , " + scale.Y + " , " + scale.Z); | 11879 | udata.change = ObjectChangeType.groupUS; |
11637 | handlerUpdatePrimScale(localId, scale6, this); | 11880 | updatehandler(localId, udata, this); |
11638 | handlerUpdatePrimSinglePosition = OnUpdatePrimSinglePosition; | 11881 | break; |
11639 | if (handlerUpdatePrimSinglePosition != null) | ||
11640 | { | ||
11641 | handlerUpdatePrimSinglePosition(localId, pos6, this); | ||
11642 | } | ||
11643 | 11882 | ||
11644 | part.IgnoreUndoUpdate = false; | 11883 | case 0x1D: // (UNIFORM + GROUP + SCALE + POS) |
11645 | } | 11884 | udata.position = new Vector3(block.Data, 0); |
11646 | break; | 11885 | udata.scale = new Vector3(block.Data, 12); |
11647 | 11886 | ||
11648 | default: | 11887 | udata.change = ObjectChangeType.groupPUS; |
11649 | m_log.Debug("[CLIENT]: MultipleObjUpdate recieved an unknown packet type: " + (block.Type)); | 11888 | updatehandler(localId, udata, this); |
11650 | break; | 11889 | break; |
11890 | |||
11891 | default: | ||
11892 | m_log.Debug("[CLIENT]: MultipleObjUpdate recieved an unknown packet type: " + (block.Type)); | ||
11893 | break; | ||
11894 | } | ||
11651 | } | 11895 | } |
11652 | 11896 | ||
11653 | // for (int j = 0; j < parts.Length; j++) | ||
11654 | // parts[j].IgnoreUndoUpdate = false; | ||
11655 | } | 11897 | } |
11656 | } | 11898 | } |
11657 | } | 11899 | } |
11658 | |||
11659 | return true; | 11900 | return true; |
11660 | } | 11901 | } |
11661 | 11902 | ||
@@ -11716,9 +11957,26 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11716 | public void SetChildAgentThrottle(byte[] throttles) | 11957 | public void SetChildAgentThrottle(byte[] throttles) |
11717 | { | 11958 | { |
11718 | m_udpClient.SetThrottles(throttles); | 11959 | m_udpClient.SetThrottles(throttles); |
11960 | GenericCall2 handler = OnUpdateThrottles; | ||
11961 | if (handler != null) | ||
11962 | { | ||
11963 | handler(); | ||
11964 | } | ||
11719 | } | 11965 | } |
11720 | 11966 | ||
11721 | /// <summary> | 11967 | /// <summary> |
11968 | /// Sets the throttles from values supplied by the client | ||
11969 | /// </summary> | ||
11970 | /// <param name="throttles"></param> | ||
11971 | public void SetAgentThrottleSilent(int throttle, int setting) | ||
11972 | { | ||
11973 | m_udpClient.ForceThrottleSetting(throttle,setting); | ||
11974 | //m_udpClient.SetThrottles(throttles); | ||
11975 | |||
11976 | } | ||
11977 | |||
11978 | |||
11979 | /// <summary> | ||
11722 | /// Get the current throttles for this client as a packed byte array | 11980 | /// Get the current throttles for this client as a packed byte array |
11723 | /// </summary> | 11981 | /// </summary> |
11724 | /// <param name="multiplier">Unused</param> | 11982 | /// <param name="multiplier">Unused</param> |
@@ -12105,7 +12363,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
12105 | // "[LLCLIENTVIEW]: Received transfer request for {0} in {1} type {2} by {3}", | 12363 | // "[LLCLIENTVIEW]: Received transfer request for {0} in {1} type {2} by {3}", |
12106 | // requestID, taskID, (SourceType)sourceType, Name); | 12364 | // requestID, taskID, (SourceType)sourceType, Name); |
12107 | 12365 | ||
12366 | |||
12367 | //Note, the bool returned from the below function is useless since it is always false. | ||
12108 | m_assetService.Get(requestID.ToString(), transferRequest, AssetReceived); | 12368 | m_assetService.Get(requestID.ToString(), transferRequest, AssetReceived); |
12369 | |||
12109 | } | 12370 | } |
12110 | 12371 | ||
12111 | /// <summary> | 12372 | /// <summary> |
@@ -12171,7 +12432,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
12171 | /// <returns></returns> | 12432 | /// <returns></returns> |
12172 | private static int CalculateNumPackets(byte[] data) | 12433 | private static int CalculateNumPackets(byte[] data) |
12173 | { | 12434 | { |
12174 | const uint m_maxPacketSize = 600; | 12435 | // const uint m_maxPacketSize = 600; |
12436 | uint m_maxPacketSize = MaxTransferBytesPerPacket; | ||
12175 | int numPackets = 1; | 12437 | int numPackets = 1; |
12176 | 12438 | ||
12177 | if (data == null) | 12439 | if (data == null) |
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs index 8963756..f675377 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs | |||
@@ -158,6 +158,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
158 | 158 | ||
159 | private int m_defaultRTO = 1000; // 1sec is the recommendation in the RFC | 159 | private int m_defaultRTO = 1000; // 1sec is the recommendation in the RFC |
160 | private int m_maxRTO = 60000; | 160 | private int m_maxRTO = 60000; |
161 | public bool m_deliverPackets = true; | ||
161 | 162 | ||
162 | /// <summary> | 163 | /// <summary> |
163 | /// Default constructor | 164 | /// Default constructor |
@@ -440,6 +441,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
440 | if (category >= 0 && category < m_packetOutboxes.Length) | 441 | if (category >= 0 && category < m_packetOutboxes.Length) |
441 | { | 442 | { |
442 | OpenSim.Framework.LocklessQueue<OutgoingPacket> queue = m_packetOutboxes[category]; | 443 | OpenSim.Framework.LocklessQueue<OutgoingPacket> queue = m_packetOutboxes[category]; |
444 | |||
445 | if (m_deliverPackets == false) | ||
446 | { | ||
447 | queue.Enqueue(packet); | ||
448 | return true; | ||
449 | } | ||
450 | |||
443 | TokenBucket bucket = m_throttleCategories[category]; | 451 | TokenBucket bucket = m_throttleCategories[category]; |
444 | 452 | ||
445 | // Don't send this packet if there is already a packet waiting in the queue | 453 | // Don't send this packet if there is already a packet waiting in the queue |
@@ -489,7 +497,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
489 | /// <returns>True if any packets were sent, otherwise false</returns> | 497 | /// <returns>True if any packets were sent, otherwise false</returns> |
490 | public bool DequeueOutgoing() | 498 | public bool DequeueOutgoing() |
491 | { | 499 | { |
492 | OutgoingPacket packet; | 500 | if (m_deliverPackets == false) return false; |
501 | |||
502 | OutgoingPacket packet = null; | ||
493 | OpenSim.Framework.LocklessQueue<OutgoingPacket> queue; | 503 | OpenSim.Framework.LocklessQueue<OutgoingPacket> queue; |
494 | TokenBucket bucket; | 504 | TokenBucket bucket; |
495 | bool packetSent = false; | 505 | bool packetSent = false; |
@@ -521,32 +531,49 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
521 | // No dequeued packet waiting to be sent, try to pull one off | 531 | // No dequeued packet waiting to be sent, try to pull one off |
522 | // this queue | 532 | // this queue |
523 | queue = m_packetOutboxes[i]; | 533 | queue = m_packetOutboxes[i]; |
524 | if (queue.Dequeue(out packet)) | 534 | if (queue != null) |
525 | { | 535 | { |
526 | // A packet was pulled off the queue. See if we have | 536 | bool success = false; |
527 | // enough tokens in the bucket to send it out | 537 | try |
528 | if (bucket.RemoveTokens(packet.Buffer.DataLength)) | ||
529 | { | 538 | { |
530 | // Send the packet | 539 | success = queue.Dequeue(out packet); |
531 | m_udpServer.SendPacketFinal(packet); | ||
532 | packetSent = true; | ||
533 | } | 540 | } |
534 | else | 541 | catch |
535 | { | 542 | { |
536 | // Save the dequeued packet for the next iteration | 543 | m_packetOutboxes[i] = new OpenSim.Framework.LocklessQueue<OutgoingPacket>(); |
537 | m_nextPackets[i] = packet; | ||
538 | } | 544 | } |
539 | 545 | if (success) | |
540 | // If the queue is empty after this dequeue, fire the queue | 546 | { |
541 | // empty callback now so it has a chance to fill before we | 547 | // A packet was pulled off the queue. See if we have |
542 | // get back here | 548 | // enough tokens in the bucket to send it out |
543 | if (queue.Count == 0) | 549 | if (bucket.RemoveTokens(packet.Buffer.DataLength)) |
550 | { | ||
551 | // Send the packet | ||
552 | m_udpServer.SendPacketFinal(packet); | ||
553 | packetSent = true; | ||
554 | } | ||
555 | else | ||
556 | { | ||
557 | // Save the dequeued packet for the next iteration | ||
558 | m_nextPackets[i] = packet; | ||
559 | } | ||
560 | |||
561 | // If the queue is empty after this dequeue, fire the queue | ||
562 | // empty callback now so it has a chance to fill before we | ||
563 | // get back here | ||
564 | if (queue.Count == 0) | ||
565 | emptyCategories |= CategoryToFlag(i); | ||
566 | } | ||
567 | else | ||
568 | { | ||
569 | // No packets in this queue. Fire the queue empty callback | ||
570 | // if it has not been called recently | ||
544 | emptyCategories |= CategoryToFlag(i); | 571 | emptyCategories |= CategoryToFlag(i); |
572 | } | ||
545 | } | 573 | } |
546 | else | 574 | else |
547 | { | 575 | { |
548 | // No packets in this queue. Fire the queue empty callback | 576 | m_packetOutboxes[i] = new OpenSim.Framework.LocklessQueue<OutgoingPacket>(); |
549 | // if it has not been called recently | ||
550 | emptyCategories |= CategoryToFlag(i); | 577 | emptyCategories |= CategoryToFlag(i); |
551 | } | 578 | } |
552 | } | 579 | } |
@@ -655,6 +682,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
655 | if (m_nextOnQueueEmpty == 0) | 682 | if (m_nextOnQueueEmpty == 0) |
656 | m_nextOnQueueEmpty = 1; | 683 | m_nextOnQueueEmpty = 1; |
657 | } | 684 | } |
685 | internal void ForceThrottleSetting(int throttle, int setting) | ||
686 | { | ||
687 | m_throttleCategories[throttle].RequestedDripRate = Math.Max(setting, LLUDPServer.MTU); ; | ||
688 | } | ||
658 | 689 | ||
659 | /// <summary> | 690 | /// <summary> |
660 | /// Converts a <seealso cref="ThrottleOutPacketType"/> integer to a | 691 | /// Converts a <seealso cref="ThrottleOutPacketType"/> integer to a |
@@ -704,4 +735,4 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
704 | } | 735 | } |
705 | } | 736 | } |
706 | } | 737 | } |
707 | } \ No newline at end of file | 738 | } |
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs index a7628d2..9a4abd4 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |||
@@ -126,7 +126,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
126 | /// <summary>Handlers for incoming packets</summary> | 126 | /// <summary>Handlers for incoming packets</summary> |
127 | //PacketEventDictionary packetEvents = new PacketEventDictionary(); | 127 | //PacketEventDictionary packetEvents = new PacketEventDictionary(); |
128 | /// <summary>Incoming packets that are awaiting handling</summary> | 128 | /// <summary>Incoming packets that are awaiting handling</summary> |
129 | private OpenMetaverse.BlockingQueue<IncomingPacket> packetInbox = new OpenMetaverse.BlockingQueue<IncomingPacket>(); | 129 | //private OpenMetaverse.BlockingQueue<IncomingPacket> packetInbox = new OpenMetaverse.BlockingQueue<IncomingPacket>(); |
130 | |||
131 | private DoubleQueue<IncomingPacket> packetInbox = new DoubleQueue<IncomingPacket>(); | ||
130 | 132 | ||
131 | /// <summary></summary> | 133 | /// <summary></summary> |
132 | //private UDPClientCollection m_clients = new UDPClientCollection(); | 134 | //private UDPClientCollection m_clients = new UDPClientCollection(); |
@@ -181,6 +183,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
181 | /// <summary>Flag to signal when clients should send pings</summary> | 183 | /// <summary>Flag to signal when clients should send pings</summary> |
182 | protected bool m_sendPing; | 184 | protected bool m_sendPing; |
183 | 185 | ||
186 | private ExpiringCache<IPEndPoint, Queue<UDPPacketBuffer>> m_pendingCache = new ExpiringCache<IPEndPoint, Queue<UDPPacketBuffer>>(); | ||
184 | private Pool<IncomingPacket> m_incomingPacketPool; | 187 | private Pool<IncomingPacket> m_incomingPacketPool; |
185 | 188 | ||
186 | /// <summary> | 189 | /// <summary> |
@@ -1093,21 +1096,46 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1093 | 1096 | ||
1094 | #region Packet to Client Mapping | 1097 | #region Packet to Client Mapping |
1095 | 1098 | ||
1096 | // UseCircuitCode handling | 1099 | // If there is already a client for this endpoint, don't process UseCircuitCode |
1097 | if (packet.Type == PacketType.UseCircuitCode) | 1100 | IClientAPI client = null; |
1101 | if (!m_scene.TryGetClient(endPoint, out client) || !(client is LLClientView)) | ||
1098 | { | 1102 | { |
1099 | // We need to copy the endpoint so that it doesn't get changed when another thread reuses the | 1103 | // UseCircuitCode handling |
1100 | // buffer. | 1104 | if (packet.Type == PacketType.UseCircuitCode) |
1101 | object[] array = new object[] { new IPEndPoint(endPoint.Address, endPoint.Port), packet }; | 1105 | { |
1106 | // And if there is a UseCircuitCode pending, also drop it | ||
1107 | lock (m_pendingCache) | ||
1108 | { | ||
1109 | if (m_pendingCache.Contains(endPoint)) | ||
1110 | return; | ||
1102 | 1111 | ||
1103 | Util.FireAndForget(HandleUseCircuitCode, array); | 1112 | m_pendingCache.AddOrUpdate(endPoint, new Queue<UDPPacketBuffer>(), 60); |
1113 | } | ||
1104 | 1114 | ||
1105 | return; | 1115 | // We need to copy the endpoint so that it doesn't get changed when another thread reuses the |
1116 | // buffer. | ||
1117 | object[] array = new object[] { new IPEndPoint(endPoint.Address, endPoint.Port), packet }; | ||
1118 | |||
1119 | Util.FireAndForget(HandleUseCircuitCode, array); | ||
1120 | |||
1121 | return; | ||
1122 | } | ||
1123 | } | ||
1124 | |||
1125 | // If this is a pending connection, enqueue, don't process yet | ||
1126 | lock (m_pendingCache) | ||
1127 | { | ||
1128 | Queue<UDPPacketBuffer> queue; | ||
1129 | if (m_pendingCache.TryGetValue(endPoint, out queue)) | ||
1130 | { | ||
1131 | //m_log.DebugFormat("[LLUDPSERVER]: Enqueued a {0} packet into the pending queue", packet.Type); | ||
1132 | queue.Enqueue(buffer); | ||
1133 | return; | ||
1134 | } | ||
1106 | } | 1135 | } |
1107 | 1136 | ||
1108 | // Determine which agent this packet came from | 1137 | // Determine which agent this packet came from |
1109 | IClientAPI client; | 1138 | if (client == null || !(client is LLClientView)) |
1110 | if (!m_scene.TryGetClient(endPoint, out client) || !(client is LLClientView)) | ||
1111 | { | 1139 | { |
1112 | //m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); | 1140 | //m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); |
1113 | return; | 1141 | return; |
@@ -1116,7 +1144,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1116 | udpClient = ((LLClientView)client).UDPClient; | 1144 | udpClient = ((LLClientView)client).UDPClient; |
1117 | 1145 | ||
1118 | if (!udpClient.IsConnected) | 1146 | if (!udpClient.IsConnected) |
1147 | { | ||
1148 | // m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + m_scene.RegionInfo.RegionName); | ||
1119 | return; | 1149 | return; |
1150 | } | ||
1120 | 1151 | ||
1121 | #endregion Packet to Client Mapping | 1152 | #endregion Packet to Client Mapping |
1122 | 1153 | ||
@@ -1246,7 +1277,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1246 | incomingPacket = new IncomingPacket((LLClientView)client, packet); | 1277 | incomingPacket = new IncomingPacket((LLClientView)client, packet); |
1247 | } | 1278 | } |
1248 | 1279 | ||
1249 | packetInbox.Enqueue(incomingPacket); | 1280 | if (incomingPacket.Packet.Type == PacketType.AgentUpdate || |
1281 | incomingPacket.Packet.Type == PacketType.ChatFromViewer) | ||
1282 | packetInbox.EnqueueHigh(incomingPacket); | ||
1283 | else | ||
1284 | packetInbox.EnqueueLow(incomingPacket); | ||
1250 | } | 1285 | } |
1251 | 1286 | ||
1252 | #region BinaryStats | 1287 | #region BinaryStats |
@@ -1366,6 +1401,32 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1366 | // We only want to send initial data to new clients, not ones which are being converted from child to root. | 1401 | // We only want to send initial data to new clients, not ones which are being converted from child to root. |
1367 | if (client != null) | 1402 | if (client != null) |
1368 | client.SceneAgent.SendInitialDataToMe(); | 1403 | client.SceneAgent.SendInitialDataToMe(); |
1404 | |||
1405 | // Now we know we can handle more data | ||
1406 | Thread.Sleep(200); | ||
1407 | |||
1408 | // Obtain the queue and remove it from the cache | ||
1409 | Queue<UDPPacketBuffer> queue = null; | ||
1410 | |||
1411 | lock (m_pendingCache) | ||
1412 | { | ||
1413 | if (!m_pendingCache.TryGetValue(endPoint, out queue)) | ||
1414 | { | ||
1415 | m_log.DebugFormat("[LLUDPSERVER]: Client created but no pending queue present"); | ||
1416 | return; | ||
1417 | } | ||
1418 | m_pendingCache.Remove(endPoint); | ||
1419 | } | ||
1420 | |||
1421 | m_log.DebugFormat("[LLUDPSERVER]: Client created, processing pending queue, {0} entries", queue.Count); | ||
1422 | |||
1423 | // Reinject queued packets | ||
1424 | while(queue.Count > 0) | ||
1425 | { | ||
1426 | UDPPacketBuffer buf = queue.Dequeue(); | ||
1427 | PacketReceived(buf); | ||
1428 | } | ||
1429 | queue = null; | ||
1369 | } | 1430 | } |
1370 | else | 1431 | else |
1371 | { | 1432 | { |
@@ -1373,6 +1434,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1373 | m_log.WarnFormat( | 1434 | m_log.WarnFormat( |
1374 | "[LLUDPSERVER]: Ignoring connection request for {0} to {1} with unknown circuit code {2} from IP {3}", | 1435 | "[LLUDPSERVER]: Ignoring connection request for {0} to {1} with unknown circuit code {2} from IP {3}", |
1375 | uccp.CircuitCode.ID, m_scene.RegionInfo.RegionName, uccp.CircuitCode.Code, endPoint); | 1436 | uccp.CircuitCode.ID, m_scene.RegionInfo.RegionName, uccp.CircuitCode.Code, endPoint); |
1437 | lock (m_pendingCache) | ||
1438 | m_pendingCache.Remove(endPoint); | ||
1376 | } | 1439 | } |
1377 | 1440 | ||
1378 | // m_log.DebugFormat( | 1441 | // m_log.DebugFormat( |
@@ -1491,7 +1554,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1491 | if (!client.SceneAgent.IsChildAgent) | 1554 | if (!client.SceneAgent.IsChildAgent) |
1492 | client.Kick("Simulator logged you out due to connection timeout"); | 1555 | client.Kick("Simulator logged you out due to connection timeout"); |
1493 | 1556 | ||
1494 | client.CloseWithoutChecks(); | 1557 | client.CloseWithoutChecks(true); |
1495 | } | 1558 | } |
1496 | } | 1559 | } |
1497 | 1560 | ||
@@ -1503,6 +1566,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1503 | 1566 | ||
1504 | while (IsRunningInbound) | 1567 | while (IsRunningInbound) |
1505 | { | 1568 | { |
1569 | m_scene.ThreadAlive(1); | ||
1506 | try | 1570 | try |
1507 | { | 1571 | { |
1508 | IncomingPacket incomingPacket = null; | 1572 | IncomingPacket incomingPacket = null; |
@@ -1550,6 +1614,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1550 | 1614 | ||
1551 | while (base.IsRunningOutbound) | 1615 | while (base.IsRunningOutbound) |
1552 | { | 1616 | { |
1617 | m_scene.ThreadAlive(2); | ||
1553 | try | 1618 | try |
1554 | { | 1619 | { |
1555 | m_packetSent = false; | 1620 | m_packetSent = false; |
@@ -1780,8 +1845,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1780 | Packet packet = incomingPacket.Packet; | 1845 | Packet packet = incomingPacket.Packet; |
1781 | LLClientView client = incomingPacket.Client; | 1846 | LLClientView client = incomingPacket.Client; |
1782 | 1847 | ||
1783 | if (client.IsActive) | 1848 | // if (client.IsActive) |
1784 | { | 1849 | // { |
1785 | m_currentIncomingClient = client; | 1850 | m_currentIncomingClient = client; |
1786 | 1851 | ||
1787 | try | 1852 | try |
@@ -1808,13 +1873,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1808 | { | 1873 | { |
1809 | m_currentIncomingClient = null; | 1874 | m_currentIncomingClient = null; |
1810 | } | 1875 | } |
1811 | } | 1876 | // } |
1812 | else | 1877 | // else |
1813 | { | 1878 | // { |
1814 | m_log.DebugFormat( | 1879 | // m_log.DebugFormat( |
1815 | "[LLUDPSERVER]: Dropped incoming {0} for dead client {1} in {2}", | 1880 | // "[LLUDPSERVER]: Dropped incoming {0} for dead client {1} in {2}", |
1816 | packet.Type, client.Name, m_scene.RegionInfo.RegionName); | 1881 | // packet.Type, client.Name, m_scene.RegionInfo.RegionName); |
1817 | } | 1882 | // } |
1818 | 1883 | ||
1819 | IncomingPacketsProcessed++; | 1884 | IncomingPacketsProcessed++; |
1820 | } | 1885 | } |
@@ -1826,8 +1891,116 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1826 | if (!client.IsLoggingOut) | 1891 | if (!client.IsLoggingOut) |
1827 | { | 1892 | { |
1828 | client.IsLoggingOut = true; | 1893 | client.IsLoggingOut = true; |
1829 | client.Close(); | 1894 | client.Close(false, false); |
1895 | } | ||
1896 | } | ||
1897 | } | ||
1898 | |||
1899 | internal class DoubleQueue<T> where T:class | ||
1900 | { | ||
1901 | private Queue<T> m_lowQueue = new Queue<T>(); | ||
1902 | private Queue<T> m_highQueue = new Queue<T>(); | ||
1903 | |||
1904 | private object m_syncRoot = new object(); | ||
1905 | private Semaphore m_s = new Semaphore(0, 1); | ||
1906 | |||
1907 | public DoubleQueue() | ||
1908 | { | ||
1909 | } | ||
1910 | |||
1911 | public virtual int Count | ||
1912 | { | ||
1913 | get { return m_highQueue.Count + m_lowQueue.Count; } | ||
1914 | } | ||
1915 | |||
1916 | public virtual void Enqueue(T data) | ||
1917 | { | ||
1918 | Enqueue(m_lowQueue, data); | ||
1919 | } | ||
1920 | |||
1921 | public virtual void EnqueueLow(T data) | ||
1922 | { | ||
1923 | Enqueue(m_lowQueue, data); | ||
1924 | } | ||
1925 | |||
1926 | public virtual void EnqueueHigh(T data) | ||
1927 | { | ||
1928 | Enqueue(m_highQueue, data); | ||
1929 | } | ||
1930 | |||
1931 | private void Enqueue(Queue<T> q, T data) | ||
1932 | { | ||
1933 | lock (m_syncRoot) | ||
1934 | { | ||
1935 | m_lowQueue.Enqueue(data); | ||
1936 | m_s.WaitOne(0); | ||
1937 | m_s.Release(); | ||
1938 | } | ||
1939 | } | ||
1940 | |||
1941 | public virtual T Dequeue() | ||
1942 | { | ||
1943 | return Dequeue(Timeout.Infinite); | ||
1944 | } | ||
1945 | |||
1946 | public virtual T Dequeue(int tmo) | ||
1947 | { | ||
1948 | return Dequeue(TimeSpan.FromMilliseconds(tmo)); | ||
1949 | } | ||
1950 | |||
1951 | public virtual T Dequeue(TimeSpan wait) | ||
1952 | { | ||
1953 | T res = null; | ||
1954 | |||
1955 | if (!Dequeue(wait, ref res)) | ||
1956 | return null; | ||
1957 | |||
1958 | return res; | ||
1959 | } | ||
1960 | |||
1961 | public bool Dequeue(int timeout, ref T res) | ||
1962 | { | ||
1963 | return Dequeue(TimeSpan.FromMilliseconds(timeout), ref res); | ||
1964 | } | ||
1965 | |||
1966 | public bool Dequeue(TimeSpan wait, ref T res) | ||
1967 | { | ||
1968 | if (!m_s.WaitOne(wait)) | ||
1969 | return false; | ||
1970 | |||
1971 | lock (m_syncRoot) | ||
1972 | { | ||
1973 | if (m_highQueue.Count > 0) | ||
1974 | res = m_highQueue.Dequeue(); | ||
1975 | else | ||
1976 | res = m_lowQueue.Dequeue(); | ||
1977 | |||
1978 | if (m_highQueue.Count == 0 && m_lowQueue.Count == 0) | ||
1979 | return true; | ||
1980 | |||
1981 | try | ||
1982 | { | ||
1983 | m_s.Release(); | ||
1984 | } | ||
1985 | catch | ||
1986 | { | ||
1987 | } | ||
1988 | |||
1989 | return true; | ||
1990 | } | ||
1991 | } | ||
1992 | |||
1993 | public virtual void Clear() | ||
1994 | { | ||
1995 | |||
1996 | lock (m_syncRoot) | ||
1997 | { | ||
1998 | // Make sure sem count is 0 | ||
1999 | m_s.WaitOne(0); | ||
2000 | |||
2001 | m_lowQueue.Clear(); | ||
2002 | m_highQueue.Clear(); | ||
1830 | } | 2003 | } |
1831 | } | 2004 | } |
1832 | } | 2005 | } |
1833 | } \ No newline at end of file | 2006 | } |
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/OpenSimUDPBase.cs b/OpenSim/Region/ClientStack/Linden/UDP/OpenSimUDPBase.cs index f143c32..7035e38 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/OpenSimUDPBase.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/OpenSimUDPBase.cs | |||
@@ -114,10 +114,6 @@ namespace OpenMetaverse | |||
114 | const int SIO_UDP_CONNRESET = -1744830452; | 114 | const int SIO_UDP_CONNRESET = -1744830452; |
115 | 115 | ||
116 | IPEndPoint ipep = new IPEndPoint(m_localBindAddress, m_udpPort); | 116 | IPEndPoint ipep = new IPEndPoint(m_localBindAddress, m_udpPort); |
117 | |||
118 | m_log.DebugFormat( | ||
119 | "[UDPBASE]: Binding UDP listener using internal IP address config {0}:{1}", | ||
120 | ipep.Address, ipep.Port); | ||
121 | 117 | ||
122 | m_udpSocket = new Socket( | 118 | m_udpSocket = new Socket( |
123 | AddressFamily.InterNetwork, | 119 | AddressFamily.InterNetwork, |