add a version tag to wind and cloud data updates to iclient
parent
984cb38583
commit
a6df626868
|
@ -1142,8 +1142,8 @@ namespace OpenSim.Framework
|
|||
void SendLayerData(float[] map);
|
||||
void SendLayerData(int px, int py, float[] map);
|
||||
|
||||
void SendWindData(Vector2[] windSpeeds);
|
||||
void SendCloudData(float[] cloudCover);
|
||||
void SendWindData(int version, Vector2[] windSpeeds);
|
||||
void SendCloudData(int version, float[] cloudCover);
|
||||
|
||||
/// <summary>
|
||||
/// Sent when an agent completes its movement into a region.
|
||||
|
|
|
@ -1379,16 +1379,18 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
/// Send the wind matrix to the client
|
||||
/// </summary>
|
||||
/// <param name="windSpeeds">16x16 array of wind speeds</param>
|
||||
/*
|
||||
public virtual void SendWindData(Vector2[] windSpeeds)
|
||||
{
|
||||
Util.FireAndForget(DoSendWindData, windSpeeds, "LLClientView.SendWindData");
|
||||
DoSendWindData(windSpeeds);
|
||||
}
|
||||
|
||||
*/
|
||||
/// <summary>
|
||||
/// Send the cloud matrix to the client
|
||||
/// </summary>
|
||||
/// <param name="windSpeeds">16x16 array of cloud densities</param>
|
||||
public virtual void SendCloudData(float[] cloudDensity)
|
||||
public virtual void SendCloudData(int version, float[] cloudDensity)
|
||||
{
|
||||
Util.FireAndForget(DoSendCloudData, cloudDensity, "LLClientView.SendCloudData");
|
||||
}
|
||||
|
@ -1397,9 +1399,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
|||
/// Send wind layer information to the client.
|
||||
/// </summary>
|
||||
/// <param name="o"></param>
|
||||
private void DoSendWindData(object o)
|
||||
// private void DoSendWindData(object o)
|
||||
public virtual void SendWindData(int version, Vector2[] windSpeeds)
|
||||
{
|
||||
Vector2[] windSpeeds = (Vector2[])o;
|
||||
// Vector2[] windSpeeds = (Vector2[])o;
|
||||
TerrainPatch[] patches = new TerrainPatch[2];
|
||||
patches[0] = new TerrainPatch { Data = new float[16 * 16] };
|
||||
patches[1] = new TerrainPatch { Data = new float[16 * 16] };
|
||||
|
|
|
@ -203,7 +203,7 @@ namespace OpenSim.Region.CoreModules.World
|
|||
{
|
||||
if (m_ready)
|
||||
{
|
||||
client.SendCloudData(cloudCover);
|
||||
client.SendCloudData(0, cloudCover);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -430,7 +430,7 @@ namespace OpenSim.Region.CoreModules
|
|||
|
||||
m_scene.ForEachRootClient(delegate(IClientAPI client)
|
||||
{
|
||||
client.SendWindData(windSpeeds);
|
||||
client.SendWindData(0, windSpeeds);
|
||||
});
|
||||
|
||||
}
|
||||
|
|
|
@ -1023,12 +1023,12 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
|
|||
|
||||
}
|
||||
|
||||
public void SendWindData(Vector2[] windSpeeds)
|
||||
public void SendWindData(int version, Vector2[] windSpeeds)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void SendCloudData(float[] cloudCover)
|
||||
public void SendCloudData(int version, float[] cloudCover)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -724,9 +724,9 @@ namespace OpenSim.Region.OptionalModules.World.NPC
|
|||
{
|
||||
}
|
||||
|
||||
public virtual void SendWindData(Vector2[] windSpeeds) { }
|
||||
public virtual void SendWindData(int version, Vector2[] windSpeeds) { }
|
||||
|
||||
public virtual void SendCloudData(float[] cloudCover) { }
|
||||
public virtual void SendCloudData(int version, float[] cloudCover) { }
|
||||
|
||||
public virtual void MoveAgentIntoRegion(RegionInfo regInfo, Vector3 pos, Vector3 look)
|
||||
{
|
||||
|
|
|
@ -659,9 +659,9 @@ namespace OpenSim.Tests.Common
|
|||
{
|
||||
}
|
||||
|
||||
public virtual void SendWindData(Vector2[] windSpeeds) { }
|
||||
public virtual void SendWindData(int version, Vector2[] windSpeeds) { }
|
||||
|
||||
public virtual void SendCloudData(float[] cloudCover) { }
|
||||
public virtual void SendCloudData(int version, float[] cloudCover) { }
|
||||
|
||||
public virtual void MoveAgentIntoRegion(RegionInfo regInfo, Vector3 pos, Vector3 look)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue