| 15 |
{ |
{ |
| 16 |
public delegate void RexAppearanceDelegate(RexClientView sender); |
public delegate void RexAppearanceDelegate(RexClientView sender); |
| 17 |
|
|
| 18 |
public delegate void RexFaceExpressionDelegate(RexClientView sender, List<string> vParams); |
public delegate void RexFaceExpressionDelegate(RexClientView sender, List<string> parameters); |
| 19 |
|
|
| 20 |
public delegate void RexAvatarProperties(RexClientView sender, List<string> parameters); |
public delegate void RexAvatarProperties(RexClientView sender, List<string> parameters); |
| 21 |
|
|
| 22 |
|
public delegate void ReceiveRexStartUp(RexClientView remoteClient, UUID agentID, string status); |
| 23 |
|
|
| 24 |
|
public delegate void ReceiveRexClientScriptCmd(RexClientView remoteClient, UUID agentID, List<string> parameters); |
| 25 |
|
|
| 26 |
|
/// <summary> |
| 27 |
|
/// Inherits from LLClientView the majority of functionality |
| 28 |
|
/// Overrides and extends for Rex-specific functionality. |
| 29 |
|
/// |
| 30 |
|
/// In the case whereby functionality uses the same packets but differs |
| 31 |
|
/// between Rex and LL, you can use a override on those specific functions |
| 32 |
|
/// to overload the request. |
| 33 |
|
/// </summary> |
| 34 |
public class RexClientView : LLClientView, IClientRexFaceExpression, IClientRexAppearance |
public class RexClientView : LLClientView, IClientRexFaceExpression, IClientRexAppearance |
| 35 |
{ |
{ |
| 36 |
private static readonly ILog m_log = |
private static readonly ILog m_log = |
| 37 |
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
| 38 |
|
|
| 39 |
|
private string m_rexAccountID; |
| 40 |
private string m_rexAvatarURL; |
private string m_rexAvatarURL; |
| 41 |
private string m_rexAuthURL; |
private string m_rexAuthURL; |
| 42 |
private string m_rexSkypeURL; |
private string m_rexSkypeURL; |
| 43 |
|
public string AvatarStorageOverride; |
| 44 |
|
|
| 45 |
|
public float RexCharacterSpeedMod = 1.0f; |
| 46 |
|
public float RexMovementSpeedMod = 1.0f; |
| 47 |
|
public float RexVertMovementSpeedMod = 1.0f; |
| 48 |
|
public bool RexWalkDisabled = false; |
| 49 |
|
public bool RexFlyDisabled = false; |
| 50 |
|
public bool RexSitDisabled = false; |
| 51 |
|
|
| 52 |
public event RexAppearanceDelegate OnRexAppearance; |
public event RexAppearanceDelegate OnRexAppearance; |
| 53 |
public event RexFaceExpressionDelegate OnRexFaceExpression; |
public event RexFaceExpressionDelegate OnRexFaceExpression; |
| 54 |
public event RexAvatarProperties OnRexAvatarProperties; |
public event RexAvatarProperties OnRexAvatarProperties; |
| 55 |
|
public event ReceiveRexStartUp OnReceiveRexStartUp; |
| 56 |
|
public event ReceiveRexClientScriptCmd OnReceiveRexClientScriptCmd; |
| 57 |
|
|
| 58 |
public RexClientView(EndPoint remoteEP, IScene scene, AssetCache assetCache, |
public RexClientView(EndPoint remoteEP, IScene scene, AssetCache assetCache, |
| 59 |
LLPacketServer packServer, AuthenticateResponse authenSessions, UUID agentId, |
LLPacketServer packServer, AuthenticateResponse authenSessions, UUID agentId, |
| 61 |
: base(remoteEP, scene, assetCache, packServer, authenSessions, agentId, |
: base(remoteEP, scene, assetCache, packServer, authenSessions, agentId, |
| 62 |
sessionId, circuitCode, proxyEP, userSettings) |
sessionId, circuitCode, proxyEP, userSettings) |
| 63 |
{ |
{ |
| 64 |
|
// Rex communication now occurs via GenericMessage |
| 65 |
|
// We have a special handler here below. |
| 66 |
OnGenericMessage += RealXtendClientView_OnGenericMessage; |
OnGenericMessage += RealXtendClientView_OnGenericMessage; |
| 67 |
} |
} |
| 68 |
|
|
| 72 |
: base(remoteEP, scene, assetCache, packServer, authenSessions, agentId, |
: base(remoteEP, scene, assetCache, packServer, authenSessions, agentId, |
| 73 |
sessionId, circuitCode, proxyEP, userSettings) |
sessionId, circuitCode, proxyEP, userSettings) |
| 74 |
{ |
{ |
| 75 |
|
// Rex communication now occurs via GenericMessage |
| 76 |
|
// We have a special handler here below. |
| 77 |
OnGenericMessage += RealXtendClientView_OnGenericMessage; |
OnGenericMessage += RealXtendClientView_OnGenericMessage; |
| 78 |
|
|
| 79 |
RexAvatarURL = rexAvatarURL; |
RexAvatarURL = rexAvatarURL; |
| 80 |
RexAuthURL = rexAuthURL; |
RexAuthURL = rexAuthURL; |
| 81 |
} |
} |
| 82 |
|
|
| 83 |
|
/// <summary> |
| 84 |
|
/// Registers interfaces for IClientCore, |
| 85 |
|
/// every time you make a new Rex-specific |
| 86 |
|
/// Interface. Make sure to register it here. |
| 87 |
|
/// </summary> |
| 88 |
protected override void RegisterInterfaces() |
protected override void RegisterInterfaces() |
| 89 |
{ |
{ |
| 90 |
RegisterInterface<IClientRexAppearance>(this); |
RegisterInterface<IClientRexAppearance>(this); |
| 94 |
base.RegisterInterfaces(); |
base.RegisterInterfaces(); |
| 95 |
} |
} |
| 96 |
|
|
| 97 |
|
/// <summary> |
| 98 |
|
/// The avatar URL for this avatar |
| 99 |
|
/// Eg: http://avatar.com:10000/uuid/ |
| 100 |
|
/// </summary> |
| 101 |
public string RexAvatarURL |
public string RexAvatarURL |
| 102 |
{ |
{ |
| 103 |
get { return m_rexAvatarURL; } |
get { return m_rexAvatarURL; } |
| 112 |
} |
} |
| 113 |
} |
} |
| 114 |
|
|
| 115 |
|
/// <summary> |
| 116 |
|
/// Skype username of the avatar |
| 117 |
|
/// eg: Skypeuser |
| 118 |
|
/// </summary> |
| 119 |
public string RexSkypeURL |
public string RexSkypeURL |
| 120 |
{ |
{ |
| 121 |
get { return m_rexSkypeURL; } |
get { return m_rexSkypeURL; } |
| 122 |
set { m_rexSkypeURL = value; } |
set { m_rexSkypeURL = value; } |
| 123 |
} |
} |
| 124 |
|
|
| 125 |
|
/// <summary> |
| 126 |
|
/// The full Rex Username of this account |
| 127 |
|
/// Eg: user@hostname.com:10001 |
| 128 |
|
/// |
| 129 |
|
/// Note: This is not filled immedietely on |
| 130 |
|
/// creation. This property is filled in |
| 131 |
|
/// via Login and may not be availible |
| 132 |
|
/// immedietely upon connect. |
| 133 |
|
/// |
| 134 |
|
/// The above glitch is scheduled to be |
| 135 |
|
/// fixed by a new RexCommsManager which |
| 136 |
|
/// will allow this to be set at spawn in |
| 137 |
|
/// login. |
| 138 |
|
/// </summary> |
| 139 |
|
public string RexAccount |
| 140 |
|
{ |
| 141 |
|
get { return m_rexAccountID; } |
| 142 |
|
set |
| 143 |
|
{ |
| 144 |
|
// Todo: More solid data checking here. |
| 145 |
|
m_rexAccountID = value; |
| 146 |
|
RexAuthURL = m_rexAccountID.Split('@')[1]; |
| 147 |
|
} |
| 148 |
|
} |
| 149 |
|
|
| 150 |
|
/// <summary> |
| 151 |
|
/// The URL of the Avatar's Authentication Server |
| 152 |
|
/// Eg: http://authentication.com:10001/ |
| 153 |
|
/// </summary> |
| 154 |
public string RexAuthURL |
public string RexAuthURL |
| 155 |
{ |
{ |
| 156 |
get { return m_rexAuthURL; } |
get { return m_rexAuthURL; } |
| 157 |
set |
set |
| 158 |
{ |
{ |
| 159 |
|
if (value.Contains("@")) |
| 160 |
|
{ |
| 161 |
|
m_rexAuthURL = "http://" + value.Split('@')[1]; |
| 162 |
|
} |
| 163 |
|
else |
| 164 |
|
{ |
| 165 |
m_rexAuthURL = value; |
m_rexAuthURL = value; |
| 166 |
|
} |
| 167 |
// Request Agent Properties Asynchronously |
// Request Agent Properties Asynchronously |
| 168 |
ThreadPool.QueueUserWorkItem(RequestProperties); |
ThreadPool.QueueUserWorkItem(RequestProperties); |
| 169 |
} |
} |
| 170 |
} |
} |
| 171 |
|
|
| 172 |
|
/// <summary> |
| 173 |
|
/// Special - used to convert GenericMessage packets |
| 174 |
|
/// to their appropriate Rex equivilents. |
| 175 |
|
/// |
| 176 |
|
/// Eg: GenericMessage(RexAppearance) -> |
| 177 |
|
/// OnRexAppearance(...) |
| 178 |
|
/// </summary> |
| 179 |
void RealXtendClientView_OnGenericMessage(object sender, string method, List<string> args) |
void RealXtendClientView_OnGenericMessage(object sender, string method, List<string> args) |
| 180 |
{ |
{ |
| 181 |
//TODO: Convert to Dictionary<Method, GenericMessageHandler> |
//TODO: Convert to Dictionary<Method, GenericMessageHandler> |
| 205 |
} |
} |
| 206 |
} |
} |
| 207 |
|
|
| 208 |
|
if (method == "rexscr") |
| 209 |
|
{ |
| 210 |
|
if (OnReceiveRexClientScriptCmd != null) |
| 211 |
|
{ |
| 212 |
|
OnReceiveRexClientScriptCmd(this, AgentId, args); |
| 213 |
|
} |
| 214 |
|
} |
| 215 |
|
|
| 216 |
|
if (method == "RexStartup") |
| 217 |
|
{ |
| 218 |
|
if (OnReceiveRexStartUp != null) |
| 219 |
|
{ |
| 220 |
|
OnReceiveRexStartUp(this, AgentId, args[0]); |
| 221 |
|
} |
| 222 |
|
} |
| 223 |
|
|
| 224 |
m_log.Warn("[REXCLIENTVIEW] Unhandled GenericMessage (" + method + ") {"); |
m_log.Warn("[REXCLIENTVIEW] Unhandled GenericMessage (" + method + ") {"); |
| 225 |
foreach (string s in args) |
foreach (string s in args) |
| 226 |
{ |
{ |
| 230 |
|
|
| 231 |
} |
} |
| 232 |
|
|
| 233 |
|
/// <summary> |
| 234 |
|
/// Sends a Rex Script Command to the viewer |
| 235 |
|
/// attached to this ClientView. |
| 236 |
|
/// |
| 237 |
|
/// If you are coding something, try use |
| 238 |
|
/// SendRex*** instead, as many of them |
| 239 |
|
/// will trigger this instead with type |
| 240 |
|
/// and parameter checking. |
| 241 |
|
/// </summary> |
| 242 |
public void SendRexScriptCommand(string unit, string command, string parameters) |
public void SendRexScriptCommand(string unit, string command, string parameters) |
| 243 |
{ |
{ |
| 244 |
List<string> pack = new List<string>(); |
List<string> pack = new List<string>(); |
| 314 |
|
|
| 315 |
m_log.Info("[REXCLIENT] Sending XMLRPC Request to " + RexAuthURL); |
m_log.Info("[REXCLIENT] Sending XMLRPC Request to " + RexAuthURL); |
| 316 |
XmlRpcResponse authreply = req.Send(RexAuthURL, 9000); |
XmlRpcResponse authreply = req.Send(RexAuthURL, 9000); |
| 317 |
|
if (!((Hashtable)authreply.Value).ContainsKey("error_type")) |
| 318 |
|
{ |
| 319 |
string rexAsAddress = ((Hashtable)authreply.Value)["as_address"].ToString(); |
string rexAsAddress = ((Hashtable)authreply.Value)["as_address"].ToString(); |
| 320 |
string rexSkypeURL = ((Hashtable)authreply.Value)["skype_url"].ToString(); |
string rexSkypeURL = ((Hashtable)authreply.Value)["skype_url"].ToString(); |
| 321 |
UUID userID = new UUID(((Hashtable) authreply.Value)["uuid"].ToString()); |
UUID userID = new UUID(((Hashtable) authreply.Value)["uuid"].ToString()); |
| 327 |
RexSkypeURL = rexSkypeURL; |
RexSkypeURL = rexSkypeURL; |
| 328 |
} |
} |
| 329 |
} |
} |
| 330 |
|
else |
| 331 |
|
{ |
| 332 |
|
//Error has occurred |
| 333 |
|
m_log.Warn("[REXCLIENT]: User not found"); |
| 334 |
|
} |
| 335 |
|
} |
| 336 |
|
|
| 337 |
|
/// <summary> |
| 338 |
|
/// Sends Fog parameters to client. Only works underwater. |
| 339 |
|
/// </summary> |
| 340 |
|
/// <param name="start">meters from camera where the fog starts</param> |
| 341 |
|
/// <param name="end">meters from camera where the fog ends</param> |
| 342 |
|
/// <param name="red">redness in fog</param> |
| 343 |
|
/// <param name="green">greeness in fog</param> |
| 344 |
|
/// <param name="blue">blueness in fog</param> |
| 345 |
|
public void SendRexFog(float start, float end, float red, float green, float blue) |
| 346 |
|
{ |
| 347 |
|
List<string> pack = new List<string>(); |
| 348 |
|
|
| 349 |
|
pack.Add(start.ToString()); |
| 350 |
|
pack.Add(end.ToString()); |
| 351 |
|
pack.Add(red.ToString()); |
| 352 |
|
pack.Add(green.ToString()); |
| 353 |
|
pack.Add(blue.ToString()); |
| 354 |
|
|
| 355 |
|
SendGenericMessage("RexFog", pack); |
| 356 |
|
} |
| 357 |
|
|
| 358 |
|
/// <summary> |
| 359 |
|
/// Sends water height to client. Usually used when changing water height on the fly with scripting. |
| 360 |
|
/// </summary> |
| 361 |
|
/// <param name="height">Water height in meters</param> |
| 362 |
|
public void SendRexWaterHeight(float height) |
| 363 |
|
{ |
| 364 |
|
List<string> pack = new List<string>(); |
| 365 |
|
|
| 366 |
|
pack.Add(height.ToString()); |
| 367 |
|
|
| 368 |
|
SendGenericMessage("RexWaterHeight", pack); |
| 369 |
|
} |
| 370 |
|
|
| 371 |
|
/// <summary> |
| 372 |
|
/// Sends post postprosessing effect toggle to client. |
| 373 |
|
/// </summary> |
| 374 |
|
/// <see cref="http://rexdeveloper.org/wiki/index.php?title=Content_Scripting_Python_Post-Process"/> |
| 375 |
|
/// <param name="effectId">Id of the effect. See documentation for the effect ids</param> |
| 376 |
|
/// <param name="toggle">True to set effect on. False to set effect off.</param> |
| 377 |
|
public void SendRexPostProcess(int effectId, bool toggle) |
| 378 |
|
{ |
| 379 |
|
List<string> pack = new List<string>(); |
| 380 |
|
|
| 381 |
|
pack.Add(effectId.ToString()); |
| 382 |
|
pack.Add(toggle.ToString()); |
| 383 |
|
|
| 384 |
|
SendGenericMessage("RexPostP", pack); |
| 385 |
|
} |
| 386 |
|
|
| 387 |
|
/// <summary> |
| 388 |
|
/// Creates client side rtt camera |
| 389 |
|
/// </summary> |
| 390 |
|
/// <param name="command">0 to remove existing rtt camera (by name), 1 to add new rtt camera</param> |
| 391 |
|
/// <param name="name">Unique identifier for the camera</param> |
| 392 |
|
/// <param name="assetId">UUID of the texture that gets rendered to</param> |
| 393 |
|
/// <param name="pos">Position of the camera in the world</param> |
| 394 |
|
/// <param name="lookat">Point in the world the camera will look at</param> |
| 395 |
|
/// <param name="width">Width of the texture</param> |
| 396 |
|
/// <param name="height">Height of the texture</param> |
| 397 |
|
public void SendRexRttCamera(int command, string name, UUID assetId, Vector3 pos, Vector3 lookat, int width, int height) |
| 398 |
|
{ |
| 399 |
|
List<string> pack = new List<string>(); |
| 400 |
|
|
| 401 |
|
pack.Add(command.ToString()); |
| 402 |
|
pack.Add(name); |
| 403 |
|
pack.Add(assetId.ToString()); |
| 404 |
|
pack.Add(pos.ToString()); |
| 405 |
|
pack.Add(lookat.ToString()); |
| 406 |
|
pack.Add(width.ToString()); |
| 407 |
|
pack.Add(height.ToString()); |
| 408 |
|
|
| 409 |
|
SendGenericMessage("RexRttCam", pack); |
| 410 |
|
} |
| 411 |
|
|
| 412 |
|
/// <summary> |
| 413 |
|
/// Sends a viewport to client |
| 414 |
|
/// </summary> |
| 415 |
|
/// <param name="command">0 to remove existing viewport (by name), 1 to add new viewport.</param> |
| 416 |
|
/// <param name="name">Unique identifier for the viewport</param> |
| 417 |
|
/// <param name="posX">screen relative position of the left edge of the viewport</param> |
| 418 |
|
/// <param name="posY">screen relative position of the top edge of the viewport</param> |
| 419 |
|
/// <param name="width">screen relative width of the viewport</param> |
| 420 |
|
/// <param name="height">screen relative height of the viewport</param> |
| 421 |
|
public void SendRexViewport(int command, string name, float posX, float posY, float width, float height) |
| 422 |
|
{ |
| 423 |
|
List<string> pack = new List<string>(); |
| 424 |
|
|
| 425 |
|
pack.Add(command.ToString()); |
| 426 |
|
pack.Add(name); |
| 427 |
|
pack.Add(posX.ToString()); |
| 428 |
|
pack.Add(posY.ToString()); |
| 429 |
|
pack.Add(width.ToString()); |
| 430 |
|
pack.Add(height.ToString()); |
| 431 |
|
|
| 432 |
|
SendGenericMessage("RexSetViewport", pack); |
| 433 |
|
} |
| 434 |
|
|
| 435 |
|
/// <summary> |
| 436 |
|
/// Toggles the wind sound on client |
| 437 |
|
/// </summary> |
| 438 |
|
/// <param name="toggle"></param> |
| 439 |
|
public void SendRexToggleWindSound(bool toggle) |
| 440 |
|
{ |
| 441 |
|
List<string> pack = new List<string>(); |
| 442 |
|
|
| 443 |
|
pack.Add(toggle.ToString()); |
| 444 |
|
|
| 445 |
|
SendGenericMessage("RexToggleWindSound", pack); |
| 446 |
|
} |
| 447 |
|
|
| 448 |
|
/// <summary> |
| 449 |
|
/// Sends Rex clientside camera effects, particle script attached to camera etc. |
| 450 |
|
/// </summary> |
| 451 |
|
/// <param name="enable">True to enable the effect, False to disable</param> |
| 452 |
|
/// <param name="assetId">Id of the effect</param> |
| 453 |
|
/// <param name="pos">Offset position from the camera</param> |
| 454 |
|
/// <param name="rot">Offset rotation from the camera</param> |
| 455 |
|
public void SendRexCameraClientSideEffect(bool enable, UUID assetId, Vector3 pos, Quaternion rot) |
| 456 |
|
{ |
| 457 |
|
List<string> pack = new List<string>(); |
| 458 |
|
|
| 459 |
|
pack.Add(assetId.ToString()); |
| 460 |
|
pack.Add(pos.ToString()); |
| 461 |
|
pack.Add(rot.ToString()); |
| 462 |
|
pack.Add(enable.ToString()); |
| 463 |
|
|
| 464 |
|
SendGenericMessage("RexSCSEffect", pack); |
| 465 |
|
} |
| 466 |
|
|
| 467 |
|
/// <summary> |
| 468 |
|
/// Overrides default lighting conditions and ambient light in the world. |
| 469 |
|
/// |
| 470 |
|
/// Note that this override is a hard one. The user will be unable to change the lighting |
| 471 |
|
/// conditions in any way after they are overridden. |
| 472 |
|
/// </summary> |
| 473 |
|
/// <param name="direction">Direction of the global light (sun)</param> |
| 474 |
|
/// <param name="colour">Colour of the global light</param> |
| 475 |
|
/// <param name="ambientColour">Colour of the ambient light (the light that is always present)</param> |
| 476 |
|
public void SendRexSetAmbientLight(Vector3 direction, Vector3 colour, Vector3 ambientColour) |
| 477 |
|
{ |
| 478 |
|
List<string> pack = new List<string>(); |
| 479 |
|
|
| 480 |
|
pack.Add(direction.ToString()); |
| 481 |
|
pack.Add(colour.ToString()); |
| 482 |
|
pack.Add(ambientColour.ToString()); |
| 483 |
|
|
| 484 |
|
SendGenericMessage("RexAmbientL", pack); |
| 485 |
|
} |
| 486 |
|
|
| 487 |
|
/// <summary> |
| 488 |
|
/// Lauch flash animation to play on client |
| 489 |
|
/// </summary> |
| 490 |
|
/// <param name="assetId">Id of the flash animation (swf) to play</param> |
| 491 |
|
/// <param name="left">left border of the rectangle</param> |
| 492 |
|
/// <param name="top">top border of the rectangle</param> |
| 493 |
|
/// <param name="right">right border of the rectangle</param> |
| 494 |
|
/// <param name="bottom">bottom border of the rectangle</param> |
| 495 |
|
/// <param name="timeToDeath">time in seconds from start of animation playback until the flash control is destroyed</param> |
| 496 |
|
public void SendRexPlayFlashAnimation(UUID assetId, float left, float top, float right, float bottom, float timeToDeath) |
| 497 |
|
{ |
| 498 |
|
List<string> pack = new List<string>(); |
| 499 |
|
|
| 500 |
|
pack.Add(assetId.ToString()); |
| 501 |
|
pack.Add(left.ToString()); |
| 502 |
|
pack.Add(top.ToString()); |
| 503 |
|
pack.Add(right.ToString()); |
| 504 |
|
pack.Add(bottom.ToString()); |
| 505 |
|
pack.Add(timeToDeath.ToString()); |
| 506 |
|
|
| 507 |
|
SendGenericMessage("RexFlashAnim", pack); |
| 508 |
|
} |
| 509 |
|
|
| 510 |
|
internal void SendRexPreloadAvatarAssets(List<string> vAssetsList) |
| 511 |
|
{ |
| 512 |
|
throw new System.NotImplementedException(); |
| 513 |
|
} |
| 514 |
|
|
| 515 |
|
internal void SendRexForceFOV(float fov, bool enable) |
| 516 |
|
{ |
| 517 |
|
throw new System.NotImplementedException(); |
| 518 |
|
} |
| 519 |
|
|
| 520 |
|
internal void SendRexForceCamera(int forceMode, float minZoom, float maxZoom) |
| 521 |
|
{ |
| 522 |
|
throw new System.NotImplementedException(); |
| 523 |
|
} |
| 524 |
|
|
| 525 |
|
internal void SendRexSky(int type, string images, float curvature, float tiling) |
| 526 |
|
{ |
| 527 |
|
throw new System.NotImplementedException(); |
| 528 |
|
} |
| 529 |
|
|
| 530 |
|
internal void SendRexPreloadAssets(Dictionary<UUID, uint> tempassetlist) |
| 531 |
|
{ |
| 532 |
|
throw new System.NotImplementedException(); |
| 533 |
|
} |
| 534 |
|
|
| 535 |
|
internal void SendMediaURL(UUID assetId, string mediaURL, byte vRefreshRate) |
| 536 |
|
{ |
| 537 |
|
throw new System.NotImplementedException(); |
| 538 |
|
} |
| 539 |
|
|
| 540 |
|
internal void RexIKSendLimbTarget(UUID vAgentID, int vLimbId, Vector3 vDest, float vTimeToTarget, float vStayTime, float vConstraintAngle, string vStartAnim, string vTargetAnim, string vEndAnim) |
| 541 |
|
{ |
| 542 |
|
throw new System.NotImplementedException(); |
| 543 |
|
} |
| 544 |
|
|
| 545 |
|
public void SendRexAvatarAnimation(UUID agentID, string vAnimName, float vRate, float vFadeIn, float vFadeOut, int nRepeats, bool vbStopAnim) //rex |
| 546 |
|
{ |
| 547 |
|
throw new System.NotImplementedException(); |
| 548 |
|
} |
| 549 |
|
|
| 550 |
|
internal void SendRexAvatarMorph(UUID uUID, string vMorphName, float vWeight, float vTime) |
| 551 |
|
{ |
| 552 |
|
throw new System.NotImplementedException(); |
| 553 |
|
} |
| 554 |
|
|
| 555 |
|
internal void SendRexMeshAnimation(UUID uUID, string vAnimName, float vRate, bool vbLooped, bool vbStopAnim) |
| 556 |
|
{ |
| 557 |
|
throw new System.NotImplementedException(); |
| 558 |
|
} |
| 559 |
|
|
| 560 |
|
internal void SendRexClientSideEffect(string assetId, float vTimeUntilLaunch, float vTimeUntilDeath, Vector3 pos, Quaternion rot, float vSpeed) |
| 561 |
|
{ |
| 562 |
|
throw new System.NotImplementedException(); |
| 563 |
|
} |
| 564 |
} |
} |
| 565 |
} |
} |