llslurl.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:5k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llslurl.cpp
  3.  * @brief SLURL manipulation
  4.  *
  5.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2009-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "llviewerprecompiledheaders.h"
  33. #include "llslurl.h"
  34. #include "llweb.h"
  35. const std::string LLSLURL::PREFIX_SL_HELP = "secondlife://app.";
  36. const std::string LLSLURL::PREFIX_SL = "sl://";
  37. const std::string LLSLURL::PREFIX_SECONDLIFE = "secondlife://";
  38. const std::string LLSLURL::PREFIX_SLURL_OLD = "http://slurl.com/secondlife/";
  39. // For DnD - even though www.slurl.com redirects to slurl.com in a browser, you can copy and drag
  40. // text with www.slurl.com or a link explicitly pointing at www.slurl.com so testing for this
  41. // version is required also.
  42. const std::string LLSLURL::PREFIX_SLURL_WWW = "http://www.slurl.com/secondlife/";
  43. const std::string LLSLURL::PREFIX_SLURL = "http://maps.secondlife.com/secondlife/";
  44. const std::string LLSLURL::APP_TOKEN = "app/";
  45. // static
  46. std::string LLSLURL::stripProtocol(const std::string& url)
  47. {
  48. std::string stripped = url;
  49. if (matchPrefix(stripped, PREFIX_SL_HELP))
  50. {
  51. stripped.erase(0, PREFIX_SL_HELP.length());
  52. }
  53. else if (matchPrefix(stripped, PREFIX_SL))
  54. {
  55. stripped.erase(0, PREFIX_SL.length());
  56. }
  57. else if (matchPrefix(stripped, PREFIX_SECONDLIFE))
  58. {
  59. stripped.erase(0, PREFIX_SECONDLIFE.length());
  60. }
  61. else if (matchPrefix(stripped, PREFIX_SLURL))
  62. {
  63. stripped.erase(0, PREFIX_SLURL.length());
  64. }
  65. else if (matchPrefix(stripped, PREFIX_SLURL_OLD))
  66. {
  67. stripped.erase(0, PREFIX_SLURL_OLD.length());
  68. }
  69. else if (matchPrefix(stripped, PREFIX_SLURL_WWW))
  70. {
  71. stripped.erase(0, PREFIX_SLURL_WWW.length());
  72. }
  73. return stripped;
  74. }
  75. // static
  76. bool LLSLURL::isSLURL(const std::string& url)
  77. {
  78. if (matchPrefix(url, PREFIX_SL_HELP)) return true;
  79. if (matchPrefix(url, PREFIX_SL)) return true;
  80. if (matchPrefix(url, PREFIX_SECONDLIFE)) return true;
  81. if (matchPrefix(url, PREFIX_SLURL)) return true;
  82. if (matchPrefix(url, PREFIX_SLURL_OLD)) return true;
  83. if (matchPrefix(url, PREFIX_SLURL_WWW)) return true;
  84. return false;
  85. }
  86. // static
  87. bool LLSLURL::isSLURLCommand(const std::string& url)
  88. if (matchPrefix(url, PREFIX_SL + APP_TOKEN) ||
  89. matchPrefix(url, PREFIX_SECONDLIFE + "/" + APP_TOKEN) ||
  90. matchPrefix(url, PREFIX_SLURL + APP_TOKEN) ||
  91. matchPrefix(url, PREFIX_SLURL_WWW + APP_TOKEN) ||
  92. matchPrefix(url, PREFIX_SLURL_OLD + APP_TOKEN) )
  93. {
  94. return true;
  95. }
  96. return false;
  97. }
  98. // static
  99. bool LLSLURL::isSLURLHelp(const std::string& url)
  100. {
  101. return matchPrefix(url, PREFIX_SL_HELP);
  102. }
  103. // static
  104. std::string LLSLURL::buildSLURL(const std::string& regionname, S32 x, S32 y, S32 z)
  105. {
  106. std::string slurl = PREFIX_SLURL + regionname + llformat("/%d/%d/%d",x,y,z); 
  107. slurl = LLWeb::escapeURL( slurl );
  108. return slurl;
  109. }
  110. // static
  111. std::string LLSLURL::buildCommand(const char* noun, const LLUUID& id, const char* verb)
  112. {
  113. std::string slurl = llformat("secondlife:///app/%s/%s/%s",
  114. noun, id.asString().c_str(), verb);
  115. return slurl;
  116. }
  117. // static
  118. std::string LLSLURL::buildUnescapedSLURL(const std::string& regionname, S32 x, S32 y, S32 z)
  119. {
  120. std::string unescapedslurl = PREFIX_SLURL + regionname + llformat("/%d/%d/%d",x,y,z);
  121. return unescapedslurl;
  122. }
  123. // static
  124. std::string LLSLURL::buildSLURLfromPosGlobal(const std::string& regionname,
  125.  const LLVector3d& global_pos,
  126.  bool escaped /*= true*/)
  127. {
  128. S32 x, y, z;
  129. globalPosToXYZ(global_pos, x, y, z);
  130. if(escaped)
  131. {
  132. return buildSLURL(regionname, x, y, z);
  133. }
  134. else
  135. {
  136. return buildUnescapedSLURL(regionname, x, y, z);
  137. }
  138. }
  139. // static
  140. bool LLSLURL::matchPrefix(const std::string& url, const std::string& prefix)
  141. {
  142. std::string test_prefix = url.substr(0, prefix.length());
  143. LLStringUtil::toLower(test_prefix);
  144. return test_prefix == prefix;
  145. }
  146. void LLSLURL::globalPosToXYZ(const LLVector3d& pos, S32& x, S32& y, S32& z)
  147. {
  148. x = llround((F32)fmod(pos.mdV[VX], (F64)REGION_WIDTH_METERS));
  149. y = llround((F32)fmod(pos.mdV[VY], (F64)REGION_WIDTH_METERS));
  150. z = llround((F32)pos.mdV[VZ]);
  151. }