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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llnotecard.cpp
  3.  * @brief LLNotecard class definition
  4.  *
  5.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2006-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 "linden_common.h"
  33. #include "llnotecard.h"
  34. #include "llstreamtools.h"
  35. LLNotecard::LLNotecard(S32 max_text)
  36. : mMaxText(max_text),
  37.   mVersion(0),
  38.   mEmbeddedVersion(0)
  39. {
  40. }
  41. LLNotecard::~LLNotecard()
  42. {
  43. }
  44. bool LLNotecard::importEmbeddedItemsStream(std::istream& str)
  45. {
  46. // Version 1 format:
  47. // LLEmbeddedItems version 1
  48. // {
  49. // count <number of entries being used and not deleted>
  50. // {
  51. // ext char index <index>
  52. // <InventoryItem chunk>
  53. // }
  54. // }
  55. S32 i;
  56. S32 count = 0;
  57. str >> std::ws >> "LLEmbeddedItems version" >> mEmbeddedVersion >> "n";
  58. if (str.fail())
  59. {
  60. llwarns << "Invalid Linden text file header" << llendl;
  61. goto import_file_failed;
  62. }
  63. if( 1 != mEmbeddedVersion )
  64. {
  65. llwarns << "Invalid LLEmbeddedItems version: " << mEmbeddedVersion << llendl;
  66. goto import_file_failed;
  67. }
  68. str >> std::ws >> "{n";
  69. if(str.fail())
  70. {
  71. llwarns << "Invalid Linden text file format: missing {" << llendl;
  72. goto import_file_failed;
  73. }
  74. str >> std::ws >> "count " >> count >> "n";
  75. if(str.fail())
  76. {
  77. llwarns << "Invalid LLEmbeddedItems count" << llendl;
  78. goto import_file_failed;
  79. }
  80. if((count < 0))
  81. {
  82. llwarns << "Invalid LLEmbeddedItems count value: " << count << llendl;
  83. goto import_file_failed;
  84. }
  85. for(i = 0; i < count; i++)
  86. {
  87. str >> std::ws >> "{n";
  88. if(str.fail())
  89. {
  90. llwarns << "Invalid LLEmbeddedItems file format: missing {" << llendl;
  91. goto import_file_failed;
  92. }
  93. U32 index = 0;
  94. str >> std::ws >> "ext char index " >> index >> "n";
  95. if(str.fail())
  96. {
  97. llwarns << "Invalid LLEmbeddedItems file format: missing ext char index" << llendl;
  98. goto import_file_failed;
  99. }
  100. str >> std::ws >> "inv_itemt0n";
  101. if(str.fail())
  102. {
  103. llwarns << "Invalid LLEmbeddedItems file format: missing inv_item" << llendl;
  104. goto import_file_failed;
  105. }
  106. LLPointer<LLInventoryItem> item = new LLInventoryItem;
  107. if (!item->importLegacyStream(str))
  108. {
  109. llinfos << "notecard import failed" << llendl;
  110. goto import_file_failed;
  111. }
  112. mItems.push_back(item);
  113. str >> std::ws >> "}n";
  114. if(str.fail())
  115. {
  116. llwarns << "Invalid LLEmbeddedItems file format: missing }" << llendl;
  117. goto import_file_failed;
  118. }
  119. }
  120. str >> std::ws >> "}n";
  121. if(str.fail())
  122. {
  123. llwarns << "Invalid LLEmbeddedItems file format: missing }" << llendl;
  124. goto import_file_failed;
  125. }
  126. return true;
  127. import_file_failed:
  128. return false;
  129. }
  130. bool LLNotecard::importStream(std::istream& str)
  131. {
  132. // Version 1 format:
  133. // Linden text version 1
  134. // {
  135. // <EmbeddedItemList chunk>
  136. // Text length
  137. // <ASCII text; 0x80 | index = embedded item>
  138. // }
  139. // Version 2 format: (NOTE: Imports identically to version 1)
  140. // Linden text version 2
  141. // {
  142. // <EmbeddedItemList chunk>
  143. // Text length
  144. // <UTF8 text; FIRST_EMBEDDED_CHAR + index = embedded item>
  145. // }
  146. str >> std::ws >> "Linden text version " >> mVersion >> "n";
  147. if(str.fail())
  148. {
  149. llwarns << "Invalid Linden text file header " << llendl;
  150. return FALSE;
  151. }
  152. if( 1 != mVersion && 2 != mVersion)
  153. {
  154. llwarns << "Invalid Linden text file version: " << mVersion << llendl;
  155. return FALSE;
  156. }
  157. str >> std::ws >> "{n";
  158. if(str.fail())
  159. {
  160. llwarns << "Invalid Linden text file format" << llendl;
  161. return FALSE;
  162. }
  163. if(!importEmbeddedItemsStream(str))
  164. {
  165. return FALSE;
  166. }
  167. char line_buf[STD_STRING_BUF_SIZE]; /* Flawfinder: ignore */
  168. str.getline(line_buf, STD_STRING_BUF_SIZE);
  169. if(str.fail())
  170. {
  171. llwarns << "Invalid Linden text length field" << llendl;
  172. return FALSE;
  173. }
  174. line_buf[STD_STRING_STR_LEN] = '';
  175. S32 text_len = 0;
  176. if( 1 != sscanf(line_buf, "Text length %d", &text_len) )
  177. {
  178. llwarns << "Invalid Linden text length field" << llendl;
  179. return FALSE;
  180. }
  181. if(text_len > mMaxText)
  182. {
  183. llwarns << "Invalid Linden text length: " << text_len << llendl;
  184. return FALSE;
  185. }
  186. BOOL success = TRUE;
  187. char* text = new char[text_len + 1];
  188. fullread(str, text, text_len);
  189. if(str.fail())
  190. {
  191. llwarns << "Invalid Linden text: text shorter than text length: " << text_len << llendl;
  192. success = FALSE;
  193. }
  194. text[text_len] = '';
  195. if(success)
  196. {
  197. // Actually set the text
  198. mText = std::string(text);
  199. }
  200. delete[] text;
  201. return success;
  202. }
  203. ////////////////////////////////////////////////////////////////////////////
  204. bool LLNotecard::exportEmbeddedItemsStream( std::ostream& out_stream )
  205. {
  206. out_stream << "LLEmbeddedItems version 1n";
  207. out_stream << "{n";
  208. out_stream << llformat("count %dn", mItems.size() );
  209. S32 idx = 0;
  210. for (std::vector<LLPointer<LLInventoryItem> >::iterator iter = mItems.begin();
  211.  iter != mItems.end(); ++iter)
  212. {
  213. LLInventoryItem* item = *iter;
  214. if (item)
  215. {
  216. out_stream << "{n";
  217. out_stream << llformat("ext char index %dn", idx  );
  218. if( !item->exportLegacyStream( out_stream ) )
  219. {
  220. return FALSE;
  221. }
  222. out_stream << "}n";
  223. }
  224. ++idx;
  225. }
  226. out_stream << "}n";
  227. return TRUE;
  228. }
  229. bool LLNotecard::exportStream( std::ostream& out_stream )
  230. {
  231. out_stream << "Linden text version 2n";
  232. out_stream << "{n";
  233. if( !exportEmbeddedItemsStream( out_stream ) )
  234. {
  235. return FALSE;
  236. }
  237. out_stream << llformat("Text length %dn", mText.length() );
  238. out_stream << mText;
  239. out_stream << "}n";
  240. return TRUE;
  241. }
  242. ////////////////////////////////////////////////////////////////////////////
  243. void LLNotecard::setItems(const std::vector<LLPointer<LLInventoryItem> >& items)
  244. {
  245. mItems = items;
  246. }
  247. void LLNotecard::setText(const std::string& text)
  248. {
  249. mText = text;
  250. }